blob: fc3a6a9d7c2973e68b68d9b14c014899cf8b1d9f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * i2c tv tuner chip device driver
3 * controls all those simple 4-control-bytes style tuners.
Michael Krufky4adad282007-08-27 21:59:08 -03004 *
5 * This "tuner-simple" module was split apart from the original "tuner" module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7#include <linux/delay.h>
8#include <linux/i2c.h>
Hans Verkuilf894dfd2008-07-25 07:39:54 -03009#include <linux/videodev2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <media/tuner.h>
Hans Verkuilba8fc392006-06-25 15:34:39 -030011#include <media/v4l2-common.h>
Michael Krufky8218b0b2007-06-26 13:12:08 -030012#include <media/tuner-types.h>
Michael Krufky4adad282007-08-27 21:59:08 -030013#include "tuner-i2c.h"
14#include "tuner-simple.h"
15
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030016static int debug;
Michael Krufky4adad282007-08-27 21:59:08 -030017module_param(debug, int, 0644);
18MODULE_PARM_DESC(debug, "enable verbose debug messages");
19
Michael Krufky65511612008-04-22 14:46:12 -030020#define TUNER_SIMPLE_MAX 64
21static unsigned int simple_devcount;
22
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030023static int offset;
Mauro Carvalho Chehab4d988162006-08-12 21:59:19 -030024module_param(offset, int, 0664);
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030025MODULE_PARM_DESC(offset, "Allows to specify an offset for tuner");
Mauro Carvalho Chehab5c07db02006-01-09 15:25:11 -020026
Michael Krufky65511612008-04-22 14:46:12 -030027static unsigned int atv_input[TUNER_SIMPLE_MAX] = \
28 { [0 ... (TUNER_SIMPLE_MAX-1)] = 0 };
29static unsigned int dtv_input[TUNER_SIMPLE_MAX] = \
30 { [0 ... (TUNER_SIMPLE_MAX-1)] = 0 };
31module_param_array(atv_input, int, NULL, 0644);
32module_param_array(dtv_input, int, NULL, 0644);
33MODULE_PARM_DESC(atv_input, "specify atv rf input, 0 for autoselect");
34MODULE_PARM_DESC(dtv_input, "specify dtv rf input, 0 for autoselect");
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* ---------------------------------------------------------------------- */
37
38/* tv standard selection for Temic 4046 FM5
39 this value takes the low bits of control byte 2
40 from datasheet Rev.01, Feb.00
41 standard BG I L L2 D
42 picture IF 38.9 38.9 38.9 33.95 38.9
43 sound 1 33.4 32.9 32.4 40.45 32.4
44 sound 2 33.16
45 NICAM 33.05 32.348 33.05 33.05
46 */
47#define TEMIC_SET_PAL_I 0x05
48#define TEMIC_SET_PAL_DK 0x09
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030049#define TEMIC_SET_PAL_L 0x0a /* SECAM ? */
50#define TEMIC_SET_PAL_L2 0x0b /* change IF ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define TEMIC_SET_PAL_BG 0x0c
52
53/* tv tuner system standard selection for Philips FQ1216ME
54 this value takes the low bits of control byte 2
55 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
56 standard BG DK I L L`
57 picture carrier 38.90 38.90 38.90 38.90 33.95
58 colour 34.47 34.47 34.47 34.47 38.38
59 sound 1 33.40 32.40 32.90 32.40 40.45
60 sound 2 33.16 - - - -
61 NICAM 33.05 33.05 32.35 33.05 39.80
62 */
63#define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
64#define PHILIPS_SET_PAL_BGDK 0x09
65#define PHILIPS_SET_PAL_L2 0x0a
66#define PHILIPS_SET_PAL_L 0x0b
67
68/* system switching for Philips FI1216MF MK2
69 from datasheet "1996 Jul 09",
70 standard BG L L'
71 picture carrier 38.90 38.90 33.95
72 colour 34.47 34.37 38.38
73 sound 1 33.40 32.40 40.45
74 sound 2 33.16 - -
75 NICAM 33.05 33.05 39.80
76 */
Mauro Carvalho Chehabc57032d2007-05-21 11:39:21 -030077#define PHILIPS_MF_SET_STD_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
78#define PHILIPS_MF_SET_STD_L 0x03 /* Used on Secam France */
79#define PHILIPS_MF_SET_STD_LC 0x02 /* Used on SECAM L' */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070081/* Control byte */
82
83#define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
84#define TUNER_RATIO_SELECT_50 0x00
85#define TUNER_RATIO_SELECT_32 0x02
86#define TUNER_RATIO_SELECT_166 0x04
87#define TUNER_RATIO_SELECT_62 0x06
88
89#define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
90
91/* Status byte */
92
93#define TUNER_POR 0x80
94#define TUNER_FL 0x40
95#define TUNER_MODE 0x38
96#define TUNER_AFC 0x07
97#define TUNER_SIGNAL 0x07
98#define TUNER_STEREO 0x10
99
100#define TUNER_PLL_LOCKED 0x40
101#define TUNER_STEREO_MK3 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Michael Krufky62325492008-04-22 14:45:52 -0300103static DEFINE_MUTEX(tuner_simple_list_mutex);
104static LIST_HEAD(hybrid_tuner_instance_list);
105
Michael Krufky6b1dde92007-08-11 15:42:12 -0300106struct tuner_simple_priv {
Michael Krufky65511612008-04-22 14:46:12 -0300107 unsigned int nr;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300108 u16 last_div;
Michael Krufky62325492008-04-22 14:45:52 -0300109
Michael Krufkydb8a6952007-08-21 01:24:42 -0300110 struct tuner_i2c_props i2c_props;
Michael Krufky62325492008-04-22 14:45:52 -0300111 struct list_head hybrid_tuner_instance_list;
Michael Krufky4adad282007-08-27 21:59:08 -0300112
113 unsigned int type;
114 struct tunertype *tun;
115
116 u32 frequency;
Michael Krufky62325492008-04-22 14:45:52 -0300117 u32 bandwidth;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300118};
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* ---------------------------------------------------------------------- */
121
Michael Krufky735f0b92007-08-31 16:39:39 -0300122static int tuner_read_status(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Michael Krufky4adad282007-08-27 21:59:08 -0300124 struct tuner_simple_priv *priv = fe->tuner_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 unsigned char byte;
126
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300127 if (1 != tuner_i2c_xfer_recv(&priv->i2c_props, &byte, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return byte;
131}
132
Michael Krufky735f0b92007-08-31 16:39:39 -0300133static inline int tuner_signal(const int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Michael Krufky735f0b92007-08-31 16:39:39 -0300135 return (status & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Michael Krufky735f0b92007-08-31 16:39:39 -0300138static inline int tuner_stereo(const int type, const int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Michael Krufky735f0b92007-08-31 16:39:39 -0300140 switch (type) {
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300141 case TUNER_PHILIPS_FM1216ME_MK3:
142 case TUNER_PHILIPS_FM1236_MK3:
143 case TUNER_PHILIPS_FM1256_IH3:
144 case TUNER_LG_NTSC_TAPE:
Mauro Carvalho Chehab8f2b7b72008-08-05 10:11:25 -0300145 case TUNER_TCL_MF02GIP_5N:
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300146 return ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
147 default:
148 return status & TUNER_STEREO;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700149 }
Michael Krufky735f0b92007-08-31 16:39:39 -0300150}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700151
Michael Krufky735f0b92007-08-31 16:39:39 -0300152static inline int tuner_islocked(const int status)
153{
154 return (status & TUNER_FL);
155}
156
157static inline int tuner_afcstatus(const int status)
158{
159 return (status & TUNER_AFC) - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Michael Krufky4adad282007-08-27 21:59:08 -0300163static int simple_get_status(struct dvb_frontend *fe, u32 *status)
164{
165 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkya81df362008-04-22 14:45:52 -0300166 int tuner_status;
167
168 if (priv->i2c_props.adap == NULL)
169 return -EINVAL;
170
171 tuner_status = tuner_read_status(fe);
Michael Krufky4adad282007-08-27 21:59:08 -0300172
173 *status = 0;
174
Michael Krufky735f0b92007-08-31 16:39:39 -0300175 if (tuner_islocked(tuner_status))
Michael Krufky4adad282007-08-27 21:59:08 -0300176 *status = TUNER_STATUS_LOCKED;
Michael Krufky735f0b92007-08-31 16:39:39 -0300177 if (tuner_stereo(priv->type, tuner_status))
Michael Krufky4adad282007-08-27 21:59:08 -0300178 *status |= TUNER_STATUS_STEREO;
179
Michael Krufky735f0b92007-08-31 16:39:39 -0300180 tuner_dbg("AFC Status: %d\n", tuner_afcstatus(tuner_status));
181
182 return 0;
183}
184
185static int simple_get_rf_strength(struct dvb_frontend *fe, u16 *strength)
186{
187 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkya81df362008-04-22 14:45:52 -0300188 int signal;
189
190 if (priv->i2c_props.adap == NULL)
191 return -EINVAL;
192
193 signal = tuner_signal(tuner_read_status(fe));
Michael Krufky735f0b92007-08-31 16:39:39 -0300194
195 *strength = signal;
196
197 tuner_dbg("Signal strength: %d\n", signal);
Michael Krufky4adad282007-08-27 21:59:08 -0300198
199 return 0;
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* ---------------------------------------------------------------------- */
203
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300204static inline char *tuner_param_name(enum param_type type)
205{
206 char *name;
207
208 switch (type) {
209 case TUNER_PARAM_TYPE_RADIO:
210 name = "radio";
211 break;
212 case TUNER_PARAM_TYPE_PAL:
213 name = "pal";
214 break;
215 case TUNER_PARAM_TYPE_SECAM:
216 name = "secam";
217 break;
218 case TUNER_PARAM_TYPE_NTSC:
219 name = "ntsc";
220 break;
Michael Krufky62325492008-04-22 14:45:52 -0300221 case TUNER_PARAM_TYPE_DIGITAL:
222 name = "digital";
223 break;
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300224 default:
225 name = "unknown";
226 break;
227 }
228 return name;
229}
230
231static struct tuner_params *simple_tuner_params(struct dvb_frontend *fe,
232 enum param_type desired_type)
233{
234 struct tuner_simple_priv *priv = fe->tuner_priv;
235 struct tunertype *tun = priv->tun;
236 int i;
237
238 for (i = 0; i < tun->count; i++)
239 if (desired_type == tun->params[i].type)
240 break;
241
242 /* use default tuner params if desired_type not available */
243 if (i == tun->count) {
244 tuner_dbg("desired params (%s) undefined for tuner %d\n",
245 tuner_param_name(desired_type), priv->type);
246 i = 0;
247 }
248
249 tuner_dbg("using tuner params #%d (%s)\n", i,
250 tuner_param_name(tun->params[i].type));
251
252 return &tun->params[i];
253}
254
255static int simple_config_lookup(struct dvb_frontend *fe,
256 struct tuner_params *t_params,
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300257 unsigned *frequency, u8 *config, u8 *cb)
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300258{
259 struct tuner_simple_priv *priv = fe->tuner_priv;
260 int i;
261
262 for (i = 0; i < t_params->count; i++) {
263 if (*frequency > t_params->ranges[i].limit)
264 continue;
265 break;
266 }
267 if (i == t_params->count) {
268 tuner_dbg("frequency out of range (%d > %d)\n",
269 *frequency, t_params->ranges[i - 1].limit);
270 *frequency = t_params->ranges[--i].limit;
271 }
272 *config = t_params->ranges[i].config;
273 *cb = t_params->ranges[i].cb;
274
Michael Krufky7f8447d2008-04-22 14:41:49 -0300275 tuner_dbg("freq = %d.%02d (%d), range = %d, "
276 "config = 0x%02x, cb = 0x%02x\n",
277 *frequency / 16, *frequency % 16 * 100 / 16, *frequency,
278 i, *config, *cb);
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300279
280 return i;
281}
282
283/* ---------------------------------------------------------------------- */
284
Michael Krufky02f5f442008-04-22 14:45:55 -0300285static void simple_set_rf_input(struct dvb_frontend *fe,
286 u8 *config, u8 *cb, unsigned int rf)
287{
288 struct tuner_simple_priv *priv = fe->tuner_priv;
289
290 switch (priv->type) {
291 case TUNER_PHILIPS_TUV1236D:
292 switch (rf) {
293 case 1:
294 *cb |= 0x08;
295 break;
296 default:
297 *cb &= ~0x08;
298 break;
299 }
300 break;
Michael Krufkyab8b8702008-04-22 14:46:05 -0300301 case TUNER_PHILIPS_FCV1236D:
Michael Krufky02f5f442008-04-22 14:45:55 -0300302 switch (rf) {
303 case 1:
304 *cb |= 0x01;
305 break;
306 default:
307 *cb &= ~0x01;
308 break;
309 }
310 break;
311 default:
312 break;
313 }
314}
315
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300316static int simple_std_setup(struct dvb_frontend *fe,
317 struct analog_parameters *params,
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300318 u8 *config, u8 *cb)
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300319{
320 struct tuner_simple_priv *priv = fe->tuner_priv;
321 u8 tuneraddr;
322 int rc;
323
324 /* tv norm specific stuff for multi-norm tuners */
325 switch (priv->type) {
326 case TUNER_PHILIPS_SECAM: /* FI1216MF */
327 /* 0x01 -> ??? no change ??? */
328 /* 0x02 -> PAL BDGHI / SECAM L */
329 /* 0x04 -> ??? PAL others / SECAM others ??? */
330 *cb &= ~0x03;
331 if (params->std & V4L2_STD_SECAM_L)
332 /* also valid for V4L2_STD_SECAM */
333 *cb |= PHILIPS_MF_SET_STD_L;
334 else if (params->std & V4L2_STD_SECAM_LC)
335 *cb |= PHILIPS_MF_SET_STD_LC;
336 else /* V4L2_STD_B|V4L2_STD_GH */
337 *cb |= PHILIPS_MF_SET_STD_BG;
338 break;
339
340 case TUNER_TEMIC_4046FM5:
341 *cb &= ~0x0f;
342
343 if (params->std & V4L2_STD_PAL_BG) {
344 *cb |= TEMIC_SET_PAL_BG;
345
346 } else if (params->std & V4L2_STD_PAL_I) {
347 *cb |= TEMIC_SET_PAL_I;
348
349 } else if (params->std & V4L2_STD_PAL_DK) {
350 *cb |= TEMIC_SET_PAL_DK;
351
352 } else if (params->std & V4L2_STD_SECAM_L) {
353 *cb |= TEMIC_SET_PAL_L;
354
355 }
356 break;
357
358 case TUNER_PHILIPS_FQ1216ME:
359 *cb &= ~0x0f;
360
361 if (params->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
362 *cb |= PHILIPS_SET_PAL_BGDK;
363
364 } else if (params->std & V4L2_STD_PAL_I) {
365 *cb |= PHILIPS_SET_PAL_I;
366
367 } else if (params->std & V4L2_STD_SECAM_L) {
368 *cb |= PHILIPS_SET_PAL_L;
369
370 }
371 break;
372
Michael Krufkyab8b8702008-04-22 14:46:05 -0300373 case TUNER_PHILIPS_FCV1236D:
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300374 /* 0x00 -> ATSC antenna input 1 */
375 /* 0x01 -> ATSC antenna input 2 */
376 /* 0x02 -> NTSC antenna input 1 */
377 /* 0x03 -> NTSC antenna input 2 */
378 *cb &= ~0x03;
379 if (!(params->std & V4L2_STD_ATSC))
380 *cb |= 2;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300381 break;
382
383 case TUNER_MICROTUNE_4042FI5:
384 /* Set the charge pump for fast tuning */
385 *config |= TUNER_CHARGE_PUMP;
386 break;
387
388 case TUNER_PHILIPS_TUV1236D:
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300389 {
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300390 /* 0x40 -> ATSC antenna input 1 */
391 /* 0x48 -> ATSC antenna input 2 */
392 /* 0x00 -> NTSC antenna input 1 */
393 /* 0x08 -> NTSC antenna input 2 */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300394 u8 buffer[4] = { 0x14, 0x00, 0x17, 0x00};
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300395 *cb &= ~0x40;
396 if (params->std & V4L2_STD_ATSC) {
397 *cb |= 0x40;
398 buffer[1] = 0x04;
399 }
400 /* set to the correct mode (analog or digital) */
401 tuneraddr = priv->i2c_props.addr;
402 priv->i2c_props.addr = 0x0a;
403 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[0], 2);
404 if (2 != rc)
405 tuner_warn("i2c i/o error: rc == %d "
406 "(should be 2)\n", rc);
407 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[2], 2);
408 if (2 != rc)
409 tuner_warn("i2c i/o error: rc == %d "
410 "(should be 2)\n", rc);
411 priv->i2c_props.addr = tuneraddr;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300412 break;
413 }
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300414 }
Michael Krufky65511612008-04-22 14:46:12 -0300415 if (atv_input[priv->nr])
416 simple_set_rf_input(fe, config, cb, atv_input[priv->nr]);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300417
418 return 0;
419}
420
421static int simple_post_tune(struct dvb_frontend *fe, u8 *buffer,
422 u16 div, u8 config, u8 cb)
423{
424 struct tuner_simple_priv *priv = fe->tuner_priv;
425 int rc;
426
427 switch (priv->type) {
428 case TUNER_LG_TDVS_H06XF:
429 /* Set the Auxiliary Byte. */
430 buffer[0] = buffer[2];
431 buffer[0] &= ~0x20;
432 buffer[0] |= 0x18;
433 buffer[1] = 0x20;
434 tuner_dbg("tv 0x%02x 0x%02x\n", buffer[0], buffer[1]);
435
436 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 2);
437 if (2 != rc)
438 tuner_warn("i2c i/o error: rc == %d "
439 "(should be 2)\n", rc);
440 break;
441 case TUNER_MICROTUNE_4042FI5:
442 {
443 /* FIXME - this may also work for other tuners */
444 unsigned long timeout = jiffies + msecs_to_jiffies(1);
445 u8 status_byte = 0;
446
447 /* Wait until the PLL locks */
448 for (;;) {
449 if (time_after(jiffies, timeout))
450 return 0;
451 rc = tuner_i2c_xfer_recv(&priv->i2c_props,
452 &status_byte, 1);
453 if (1 != rc) {
454 tuner_warn("i2c i/o read error: rc == %d "
455 "(should be 1)\n", rc);
456 break;
457 }
458 if (status_byte & TUNER_PLL_LOCKED)
459 break;
460 udelay(10);
461 }
462
463 /* Set the charge pump for optimized phase noise figure */
464 config &= ~TUNER_CHARGE_PUMP;
465 buffer[0] = (div>>8) & 0x7f;
466 buffer[1] = div & 0xff;
467 buffer[2] = config;
468 buffer[3] = cb;
469 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
470 buffer[0], buffer[1], buffer[2], buffer[3]);
471
472 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
473 if (4 != rc)
474 tuner_warn("i2c i/o error: rc == %d "
475 "(should be 4)\n", rc);
476 break;
477 }
478 }
479
480 return 0;
481}
482
483static int simple_radio_bandswitch(struct dvb_frontend *fe, u8 *buffer)
484{
485 struct tuner_simple_priv *priv = fe->tuner_priv;
486
487 switch (priv->type) {
488 case TUNER_TENA_9533_DI:
489 case TUNER_YMEC_TVF_5533MF:
490 tuner_dbg("This tuner doesn't have FM. "
491 "Most cards have a TEA5767 for FM\n");
492 return 0;
493 case TUNER_PHILIPS_FM1216ME_MK3:
494 case TUNER_PHILIPS_FM1236_MK3:
495 case TUNER_PHILIPS_FMD1216ME_MK3:
496 case TUNER_LG_NTSC_TAPE:
497 case TUNER_PHILIPS_FM1256_IH3:
Mauro Carvalho Chehab8f2b7b72008-08-05 10:11:25 -0300498 case TUNER_TCL_MF02GIP_5N:
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300499 buffer[3] = 0x19;
500 break;
501 case TUNER_TNF_5335MF:
502 buffer[3] = 0x11;
503 break;
504 case TUNER_LG_PAL_FM:
505 buffer[3] = 0xa5;
506 break;
507 case TUNER_THOMSON_DTT761X:
508 buffer[3] = 0x39;
509 break;
510 case TUNER_MICROTUNE_4049FM5:
511 default:
512 buffer[3] = 0xa4;
513 break;
514 }
515
516 return 0;
517}
518
519/* ---------------------------------------------------------------------- */
520
Michael Krufky4adad282007-08-27 21:59:08 -0300521static int simple_set_tv_freq(struct dvb_frontend *fe,
522 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Michael Krufky4adad282007-08-27 21:59:08 -0300524 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300525 u8 config, cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 u16 div;
527 struct tunertype *tun;
Hans Verkuil27487d42006-01-15 15:04:52 -0200528 u8 buffer[4];
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300529 int rc, IFPCoff, i;
Michael Krufky476d63d2006-02-07 06:25:34 -0200530 enum param_type desired_type;
Michael Krufky4adad282007-08-27 21:59:08 -0300531 struct tuner_params *t_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Michael Krufky4adad282007-08-27 21:59:08 -0300533 tun = priv->tun;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200534
Michael Krufky5f594182006-02-07 06:25:33 -0200535 /* IFPCoff = Video Intermediate Frequency - Vif:
536 940 =16*58.75 NTSC/J (Japan)
537 732 =16*45.75 M/N STD
538 704 =16*44 ATSC (at DVB code)
539 632 =16*39.50 I U.K.
540 622.4=16*38.90 B/G D/K I, L STD
541 592 =16*37.00 D China
542 590 =16.36.875 B Australia
543 543.2=16*33.95 L' STD
544 171.2=16*10.70 FM Radio (at set_radio_freq)
545 */
546
Michael Krufky4adad282007-08-27 21:59:08 -0300547 if (params->std == V4L2_STD_NTSC_M_JP) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200548 IFPCoff = 940;
549 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300550 } else if ((params->std & V4L2_STD_MN) &&
551 !(params->std & ~V4L2_STD_MN)) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200552 IFPCoff = 732;
553 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300554 } else if (params->std == V4L2_STD_SECAM_LC) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200555 IFPCoff = 543;
556 desired_type = TUNER_PARAM_TYPE_SECAM;
Michael Krufky5f594182006-02-07 06:25:33 -0200557 } else {
Michael Krufky476d63d2006-02-07 06:25:34 -0200558 IFPCoff = 623;
559 desired_type = TUNER_PARAM_TYPE_PAL;
Michael Krufky5f594182006-02-07 06:25:33 -0200560 }
561
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300562 t_params = simple_tuner_params(fe, desired_type);
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200563
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300564 i = simple_config_lookup(fe, t_params, &params->frequency,
565 &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300567 div = params->frequency + IFPCoff + offset;
Michael Krufky5f594182006-02-07 06:25:33 -0200568
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300569 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, "
570 "Offset=%d.%02d MHz, div=%0d\n",
571 params->frequency / 16, params->frequency % 16 * 100 / 16,
572 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
573 offset / 16, offset % 16 * 100 / 16, div);
Michael Krufky5f594182006-02-07 06:25:33 -0200574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /* tv norm specific stuff for multi-norm tuners */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300576 simple_std_setup(fe, params, &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Michael Krufky4adad282007-08-27 21:59:08 -0300578 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200579 buffer[0] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200580 buffer[1] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 buffer[2] = (div>>8) & 0x7f;
582 buffer[3] = div & 0xff;
583 } else {
584 buffer[0] = (div>>8) & 0x7f;
585 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200586 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200587 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
Michael Krufky6b1dde92007-08-11 15:42:12 -0300589 priv->last_div = div;
Michael Krufky4adad282007-08-27 21:59:08 -0300590 if (t_params->has_tda9887) {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300591 struct v4l2_priv_tun_config tda9887_cfg;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300592 int tda_config = 0;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300593 int is_secam_l = (params->std & (V4L2_STD_SECAM_L |
594 V4L2_STD_SECAM_LC)) &&
595 !(params->std & ~(V4L2_STD_SECAM_L |
596 V4L2_STD_SECAM_LC));
Hans Verkuilba8fc392006-06-25 15:34:39 -0300597
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300598 tda9887_cfg.tuner = TUNER_TDA9887;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300599 tda9887_cfg.priv = &tda_config;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300600
Michael Krufky4adad282007-08-27 21:59:08 -0300601 if (params->std == V4L2_STD_SECAM_LC) {
602 if (t_params->port1_active ^ t_params->port1_invert_for_secam_lc)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300603 tda_config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300604 if (t_params->port2_active ^ t_params->port2_invert_for_secam_lc)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300605 tda_config |= TDA9887_PORT2_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300606 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300607 if (t_params->port1_active)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300608 tda_config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300609 if (t_params->port2_active)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300610 tda_config |= TDA9887_PORT2_ACTIVE;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300611 }
Michael Krufky4adad282007-08-27 21:59:08 -0300612 if (t_params->intercarrier_mode)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300613 tda_config |= TDA9887_INTERCARRIER;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300614 if (is_secam_l) {
Michael Krufky4adad282007-08-27 21:59:08 -0300615 if (i == 0 && t_params->default_top_secam_low)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300616 tda_config |= TDA9887_TOP(t_params->default_top_secam_low);
Michael Krufky4adad282007-08-27 21:59:08 -0300617 else if (i == 1 && t_params->default_top_secam_mid)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300618 tda_config |= TDA9887_TOP(t_params->default_top_secam_mid);
Michael Krufky4adad282007-08-27 21:59:08 -0300619 else if (t_params->default_top_secam_high)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300620 tda_config |= TDA9887_TOP(t_params->default_top_secam_high);
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300621 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300622 if (i == 0 && t_params->default_top_low)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300623 tda_config |= TDA9887_TOP(t_params->default_top_low);
Michael Krufky4adad282007-08-27 21:59:08 -0300624 else if (i == 1 && t_params->default_top_mid)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300625 tda_config |= TDA9887_TOP(t_params->default_top_mid);
Michael Krufky4adad282007-08-27 21:59:08 -0300626 else if (t_params->default_top_high)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300627 tda_config |= TDA9887_TOP(t_params->default_top_high);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300628 }
Michael Krufky4adad282007-08-27 21:59:08 -0300629 if (t_params->default_pll_gating_18)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300630 tda_config |= TDA9887_GATING_18;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300631 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
632 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300635 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300637 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
638 if (4 != rc)
639 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300641 simple_post_tune(fe, &buffer[0], div, config, cb);
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300642
Michael Krufky4adad282007-08-27 21:59:08 -0300643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Michael Krufky4adad282007-08-27 21:59:08 -0300646static int simple_set_radio_freq(struct dvb_frontend *fe,
647 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct tunertype *tun;
Michael Krufky4adad282007-08-27 21:59:08 -0300650 struct tuner_simple_priv *priv = fe->tuner_priv;
Hans Verkuil27487d42006-01-15 15:04:52 -0200651 u8 buffer[4];
652 u16 div;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200653 int rc, j;
Michael Krufky4adad282007-08-27 21:59:08 -0300654 struct tuner_params *t_params;
655 unsigned int freq = params->frequency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Michael Krufky4adad282007-08-27 21:59:08 -0300657 tun = priv->tun;
Michael Krufky476d63d2006-02-07 06:25:34 -0200658
Trent Piepho5e082f12007-08-03 18:32:38 -0300659 for (j = tun->count-1; j > 0; j--)
660 if (tun->params[j].type == TUNER_PARAM_TYPE_RADIO)
661 break;
Michael Krufky4adad282007-08-27 21:59:08 -0300662 /* default t_params (j=0) will be used if desired type wasn't found */
663 t_params = &tun->params[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Trent Piepho5e082f12007-08-03 18:32:38 -0300665 /* Select Radio 1st IF used */
Michael Krufky4adad282007-08-27 21:59:08 -0300666 switch (t_params->radio_if) {
Trent Piepho5e082f12007-08-03 18:32:38 -0300667 case 0: /* 10.7 MHz */
668 freq += (unsigned int)(10.7*16000);
669 break;
670 case 1: /* 33.3 MHz */
671 freq += (unsigned int)(33.3*16000);
672 break;
673 case 2: /* 41.3 MHz */
674 freq += (unsigned int)(41.3*16000);
675 break;
676 default:
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300677 tuner_warn("Unsupported radio_if value %d\n",
678 t_params->radio_if);
Michael Krufky4adad282007-08-27 21:59:08 -0300679 return 0;
Trent Piepho5e082f12007-08-03 18:32:38 -0300680 }
681
682 /* Bandswitch byte */
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300683 simple_radio_bandswitch(fe, &buffer[0]);
Trent Piepho5e082f12007-08-03 18:32:38 -0300684
Michael Krufky4adad282007-08-27 21:59:08 -0300685 buffer[2] = (t_params->ranges[0].config & ~TUNER_RATIO_MASK) |
Trent Piepho5e082f12007-08-03 18:32:38 -0300686 TUNER_RATIO_SELECT_50; /* 50 kHz step */
687
688 /* Convert from 1/16 kHz V4L steps to 1/20 MHz (=50 kHz) PLL steps
689 freq * (1 Mhz / 16000 V4L steps) * (20 PLL steps / 1 MHz) =
690 freq * (1/800) */
691 div = (freq + 400) / 800;
692
Michael Krufky4adad282007-08-27 21:59:08 -0300693 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200694 buffer[0] = buffer[2];
695 buffer[1] = buffer[3];
696 buffer[2] = (div>>8) & 0x7f;
697 buffer[3] = div & 0xff;
698 } else {
699 buffer[0] = (div>>8) & 0x7f;
700 buffer[1] = div & 0xff;
701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300704 buffer[0], buffer[1], buffer[2], buffer[3]);
Michael Krufky6b1dde92007-08-11 15:42:12 -0300705 priv->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Michael Krufky4adad282007-08-27 21:59:08 -0300707 if (t_params->has_tda9887) {
Hans Verkuilba8fc392006-06-25 15:34:39 -0300708 int config = 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300709 struct v4l2_priv_tun_config tda9887_cfg;
710
711 tda9887_cfg.tuner = TUNER_TDA9887;
712 tda9887_cfg.priv = &config;
713
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300714 if (t_params->port1_active &&
715 !t_params->port1_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300716 config |= TDA9887_PORT1_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300717 if (t_params->port2_active &&
718 !t_params->port2_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300719 config |= TDA9887_PORT2_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300720 if (t_params->intercarrier_mode)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300721 config |= TDA9887_INTERCARRIER;
Michael Krufky4adad282007-08-27 21:59:08 -0300722/* if (t_params->port1_set_for_fm_mono)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300723 config &= ~TDA9887_PORT1_ACTIVE;*/
Michael Krufky4adad282007-08-27 21:59:08 -0300724 if (t_params->fm_gain_normal)
Mauro Carvalho Chehab483deb02006-12-04 08:31:38 -0300725 config |= TDA9887_GAIN_NORMAL;
Michael Krufky4adad282007-08-27 21:59:08 -0300726 if (t_params->radio_if == 2)
Trent Piepho5e082f12007-08-03 18:32:38 -0300727 config |= TDA9887_RIF_41_3;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300728 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300729 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300730 }
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300731 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
732 if (4 != rc)
733 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Michael Krufky4adad282007-08-27 21:59:08 -0300734
735 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Michael Krufky4adad282007-08-27 21:59:08 -0300738static int simple_set_params(struct dvb_frontend *fe,
739 struct analog_parameters *params)
Michael Krufky6b1dde92007-08-11 15:42:12 -0300740{
Michael Krufky4adad282007-08-27 21:59:08 -0300741 struct tuner_simple_priv *priv = fe->tuner_priv;
742 int ret = -EINVAL;
743
Michael Krufkya81df362008-04-22 14:45:52 -0300744 if (priv->i2c_props.adap == NULL)
745 return -EINVAL;
746
Michael Krufky4adad282007-08-27 21:59:08 -0300747 switch (params->mode) {
748 case V4L2_TUNER_RADIO:
749 ret = simple_set_radio_freq(fe, params);
750 priv->frequency = params->frequency * 125 / 2;
751 break;
752 case V4L2_TUNER_ANALOG_TV:
753 case V4L2_TUNER_DIGITAL_TV:
754 ret = simple_set_tv_freq(fe, params);
755 priv->frequency = params->frequency * 62500;
756 break;
757 }
Michael Krufky62325492008-04-22 14:45:52 -0300758 priv->bandwidth = 0;
Michael Krufky4adad282007-08-27 21:59:08 -0300759
760 return ret;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300761}
762
Michael Krufky23a88102008-04-22 14:45:53 -0300763static void simple_set_dvb(struct dvb_frontend *fe, u8 *buf,
764 const struct dvb_frontend_parameters *params)
765{
766 struct tuner_simple_priv *priv = fe->tuner_priv;
767
768 switch (priv->type) {
769 case TUNER_PHILIPS_FMD1216ME_MK3:
770 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ &&
771 params->frequency >= 158870000)
772 buf[3] |= 0x08;
773 break;
Michael Krufky0e5d3832008-04-22 14:45:56 -0300774 case TUNER_PHILIPS_TD1316:
775 /* determine band */
776 buf[3] |= (params->frequency < 161000000) ? 1 :
777 (params->frequency < 444000000) ? 2 : 4;
778
779 /* setup PLL filter */
780 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
781 buf[3] |= 1 << 3;
782 break;
Michael Krufky02f5f442008-04-22 14:45:55 -0300783 case TUNER_PHILIPS_TUV1236D:
Michael Krufkyab8b8702008-04-22 14:46:05 -0300784 case TUNER_PHILIPS_FCV1236D:
Michael Krufky02f5f442008-04-22 14:45:55 -0300785 {
786 unsigned int new_rf;
787
Michael Krufky65511612008-04-22 14:46:12 -0300788 if (dtv_input[priv->nr])
789 new_rf = dtv_input[priv->nr];
790 else
791 switch (params->u.vsb.modulation) {
792 case QAM_64:
793 case QAM_256:
794 new_rf = 1;
795 break;
796 case VSB_8:
797 default:
798 new_rf = 0;
799 break;
800 }
Michael Krufky02f5f442008-04-22 14:45:55 -0300801 simple_set_rf_input(fe, &buf[2], &buf[3], new_rf);
802 break;
803 }
Michael Krufky23a88102008-04-22 14:45:53 -0300804 default:
805 break;
806 }
807}
808
Michael Krufkya2a7f842008-04-22 14:45:56 -0300809static u32 simple_dvb_configure(struct dvb_frontend *fe, u8 *buf,
Michael Krufky62325492008-04-22 14:45:52 -0300810 const struct dvb_frontend_parameters *params)
811{
Michael Krufkya2a7f842008-04-22 14:45:56 -0300812 /* This function returns the tuned frequency on success, 0 on error */
Michael Krufky62325492008-04-22 14:45:52 -0300813 struct tuner_simple_priv *priv = fe->tuner_priv;
814 struct tunertype *tun = priv->tun;
815 static struct tuner_params *t_params;
816 u8 config, cb;
817 u32 div;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300818 int ret;
819 unsigned frequency = params->frequency / 62500;
Michael Krufky62325492008-04-22 14:45:52 -0300820
821 t_params = simple_tuner_params(fe, TUNER_PARAM_TYPE_DIGITAL);
822 ret = simple_config_lookup(fe, t_params, &frequency, &config, &cb);
823 if (ret < 0)
Michael Krufkya2a7f842008-04-22 14:45:56 -0300824 return 0; /* failure */
Michael Krufky62325492008-04-22 14:45:52 -0300825
826 div = ((frequency + t_params->iffreq) * 62500 + offset +
827 tun->stepsize/2) / tun->stepsize;
828
829 buf[0] = div >> 8;
830 buf[1] = div & 0xff;
831 buf[2] = config;
832 buf[3] = cb;
833
Michael Krufky23a88102008-04-22 14:45:53 -0300834 simple_set_dvb(fe, buf, params);
835
Michael Krufky62325492008-04-22 14:45:52 -0300836 tuner_dbg("%s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
837 tun->name, div, buf[0], buf[1], buf[2], buf[3]);
838
839 /* calculate the frequency we set it to */
840 return (div * tun->stepsize) - t_params->iffreq;
841}
842
843static int simple_dvb_calc_regs(struct dvb_frontend *fe,
844 struct dvb_frontend_parameters *params,
845 u8 *buf, int buf_len)
846{
847 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufky62325492008-04-22 14:45:52 -0300848 u32 frequency;
849
850 if (buf_len < 5)
851 return -EINVAL;
852
Michael Krufkya2a7f842008-04-22 14:45:56 -0300853 frequency = simple_dvb_configure(fe, buf+1, params);
854 if (frequency == 0)
855 return -EINVAL;
Michael Krufky62325492008-04-22 14:45:52 -0300856
857 buf[0] = priv->i2c_props.addr;
858
859 priv->frequency = frequency;
860 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
861 params->u.ofdm.bandwidth : 0;
862
863 return 5;
864}
865
866static int simple_dvb_set_params(struct dvb_frontend *fe,
867 struct dvb_frontend_parameters *params)
868{
869 struct tuner_simple_priv *priv = fe->tuner_priv;
870 u32 prev_freq, prev_bw;
871 int ret;
872 u8 buf[5];
873
874 if (priv->i2c_props.adap == NULL)
875 return -EINVAL;
876
877 prev_freq = priv->frequency;
878 prev_bw = priv->bandwidth;
879
880 ret = simple_dvb_calc_regs(fe, params, buf, 5);
881 if (ret != 5)
882 goto fail;
883
884 /* put analog demod in standby when tuning digital */
885 if (fe->ops.analog_ops.standby)
886 fe->ops.analog_ops.standby(fe);
887
888 if (fe->ops.i2c_gate_ctrl)
889 fe->ops.i2c_gate_ctrl(fe, 1);
890
891 /* buf[0] contains the i2c address, but *
892 * we already have it in i2c_props.addr */
893 ret = tuner_i2c_xfer_send(&priv->i2c_props, buf+1, 4);
894 if (ret != 4)
895 goto fail;
896
897 return 0;
898fail:
899 /* calc_regs sets frequency and bandwidth. if we failed, unset them */
900 priv->frequency = prev_freq;
901 priv->bandwidth = prev_bw;
902
903 return ret;
904}
Michael Krufky4adad282007-08-27 21:59:08 -0300905
Michael Krufky6f4a5722008-04-22 14:45:53 -0300906static int simple_init(struct dvb_frontend *fe)
907{
908 struct tuner_simple_priv *priv = fe->tuner_priv;
909
910 if (priv->i2c_props.adap == NULL)
911 return -EINVAL;
912
913 if (priv->tun->initdata) {
914 int ret;
915
916 if (fe->ops.i2c_gate_ctrl)
917 fe->ops.i2c_gate_ctrl(fe, 1);
918
919 ret = tuner_i2c_xfer_send(&priv->i2c_props,
920 priv->tun->initdata + 1,
921 priv->tun->initdata[0]);
922 if (ret != priv->tun->initdata[0])
923 return ret;
924 }
925
926 return 0;
927}
928
929static int simple_sleep(struct dvb_frontend *fe)
930{
931 struct tuner_simple_priv *priv = fe->tuner_priv;
932
933 if (priv->i2c_props.adap == NULL)
934 return -EINVAL;
935
936 if (priv->tun->sleepdata) {
937 int ret;
938
939 if (fe->ops.i2c_gate_ctrl)
940 fe->ops.i2c_gate_ctrl(fe, 1);
941
942 ret = tuner_i2c_xfer_send(&priv->i2c_props,
943 priv->tun->sleepdata + 1,
944 priv->tun->sleepdata[0]);
945 if (ret != priv->tun->sleepdata[0])
946 return ret;
947 }
948
949 return 0;
950}
951
Michael Krufky4adad282007-08-27 21:59:08 -0300952static int simple_release(struct dvb_frontend *fe)
953{
Michael Krufky62325492008-04-22 14:45:52 -0300954 struct tuner_simple_priv *priv = fe->tuner_priv;
955
956 mutex_lock(&tuner_simple_list_mutex);
957
958 if (priv)
959 hybrid_tuner_release_state(priv);
960
961 mutex_unlock(&tuner_simple_list_mutex);
962
Michael Krufky4adad282007-08-27 21:59:08 -0300963 fe->tuner_priv = NULL;
964
965 return 0;
966}
967
968static int simple_get_frequency(struct dvb_frontend *fe, u32 *frequency)
969{
970 struct tuner_simple_priv *priv = fe->tuner_priv;
971 *frequency = priv->frequency;
972 return 0;
973}
974
Michael Krufky62325492008-04-22 14:45:52 -0300975static int simple_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
976{
977 struct tuner_simple_priv *priv = fe->tuner_priv;
978 *bandwidth = priv->bandwidth;
979 return 0;
980}
981
Michael Krufky4adad282007-08-27 21:59:08 -0300982static struct dvb_tuner_ops simple_tuner_ops = {
Michael Krufky6f4a5722008-04-22 14:45:53 -0300983 .init = simple_init,
984 .sleep = simple_sleep,
Michael Krufky4adad282007-08-27 21:59:08 -0300985 .set_analog_params = simple_set_params,
Michael Krufky62325492008-04-22 14:45:52 -0300986 .set_params = simple_dvb_set_params,
987 .calc_regs = simple_dvb_calc_regs,
Michael Krufky735f0b92007-08-31 16:39:39 -0300988 .release = simple_release,
989 .get_frequency = simple_get_frequency,
Michael Krufky62325492008-04-22 14:45:52 -0300990 .get_bandwidth = simple_get_bandwidth,
Michael Krufky735f0b92007-08-31 16:39:39 -0300991 .get_status = simple_get_status,
992 .get_rf_strength = simple_get_rf_strength,
Michael Krufky5d807c92007-06-06 16:17:57 -0300993};
994
Michael Krufky4adad282007-08-27 21:59:08 -0300995struct dvb_frontend *simple_tuner_attach(struct dvb_frontend *fe,
996 struct i2c_adapter *i2c_adap,
997 u8 i2c_addr,
Michael Krufky060a5bd2008-04-22 14:41:51 -0300998 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Michael Krufky6b1dde92007-08-11 15:42:12 -03001000 struct tuner_simple_priv *priv = NULL;
Michael Krufky62325492008-04-22 14:45:52 -03001001 int instance;
Michael Krufky6b1dde92007-08-11 15:42:12 -03001002
Michael Krufky65e8d292008-04-22 14:41:50 -03001003 if (type >= tuner_count) {
1004 printk(KERN_WARNING "%s: invalid tuner type: %d (max: %d)\n",
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001005 __func__, type, tuner_count-1);
Michael Krufky65e8d292008-04-22 14:41:50 -03001006 return NULL;
1007 }
1008
Michael Krufkye8279312008-04-22 14:46:05 -03001009 /* If i2c_adap is set, check that the tuner is at the correct address.
1010 * Otherwise, if i2c_adap is NULL, the tuner will be programmed directly
1011 * by the digital demod via calc_regs.
1012 */
1013 if (i2c_adap != NULL) {
1014 u8 b[1];
1015 struct i2c_msg msg = {
1016 .addr = i2c_addr, .flags = I2C_M_RD,
1017 .buf = b, .len = 1,
1018 };
1019
1020 if (fe->ops.i2c_gate_ctrl)
1021 fe->ops.i2c_gate_ctrl(fe, 1);
1022
1023 if (1 != i2c_transfer(i2c_adap, &msg, 1))
Andy Walls3b4a9712008-05-26 01:31:17 -03001024 printk(KERN_WARNING "tuner-simple %d-%04x: "
1025 "unable to probe %s, proceeding anyway.",
1026 i2c_adapter_id(i2c_adap), i2c_addr,
1027 tuners[type].name);
Michael Krufkye8279312008-04-22 14:46:05 -03001028
1029 if (fe->ops.i2c_gate_ctrl)
1030 fe->ops.i2c_gate_ctrl(fe, 0);
1031 }
1032
Michael Krufky62325492008-04-22 14:45:52 -03001033 mutex_lock(&tuner_simple_list_mutex);
1034
1035 instance = hybrid_tuner_request_state(struct tuner_simple_priv, priv,
1036 hybrid_tuner_instance_list,
1037 i2c_adap, i2c_addr,
1038 "tuner-simple");
1039 switch (instance) {
1040 case 0:
1041 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufky4adad282007-08-27 21:59:08 -03001042 return NULL;
Michael Krufky62325492008-04-22 14:45:52 -03001043 break;
1044 case 1:
1045 fe->tuner_priv = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Michael Krufky62325492008-04-22 14:45:52 -03001047 priv->type = type;
1048 priv->tun = &tuners[type];
Michael Krufky65511612008-04-22 14:46:12 -03001049 priv->nr = simple_devcount++;
Michael Krufky62325492008-04-22 14:45:52 -03001050 break;
1051 default:
1052 fe->tuner_priv = priv;
1053 break;
1054 }
Michael Krufky27566652008-04-22 14:41:53 -03001055
Michael Krufky62325492008-04-22 14:45:52 -03001056 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufkydb8a6952007-08-21 01:24:42 -03001057
Michael Krufky9ba0a3c02008-04-22 14:41:44 -03001058 memcpy(&fe->ops.tuner_ops, &simple_tuner_ops,
1059 sizeof(struct dvb_tuner_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Michael Krufky62325492008-04-22 14:45:52 -03001061 tuner_info("type set to %d (%s)\n", type, priv->tun->name);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -07001062
Michael Krufky65511612008-04-22 14:46:12 -03001063 if ((debug) || ((atv_input[priv->nr] > 0) ||
1064 (dtv_input[priv->nr] > 0))) {
1065 if (0 == atv_input[priv->nr])
1066 tuner_info("tuner %d atv rf input will be "
1067 "autoselected\n", priv->nr);
1068 else
1069 tuner_info("tuner %d atv rf input will be "
1070 "set to input %d (insmod option)\n",
1071 priv->nr, atv_input[priv->nr]);
1072 if (0 == dtv_input[priv->nr])
1073 tuner_info("tuner %d dtv rf input will be "
1074 "autoselected\n", priv->nr);
1075 else
1076 tuner_info("tuner %d dtv rf input will be "
1077 "set to input %d (insmod option)\n",
1078 priv->nr, dtv_input[priv->nr]);
1079 }
1080
Michael Krufky060a5bd2008-04-22 14:41:51 -03001081 strlcpy(fe->ops.tuner_ops.info.name, priv->tun->name,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -03001082 sizeof(fe->ops.tuner_ops.info.name));
Michael Krufky4adad282007-08-27 21:59:08 -03001083
1084 return fe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
Michael Krufky4adad282007-08-27 21:59:08 -03001086EXPORT_SYMBOL_GPL(simple_tuner_attach);
1087
1088MODULE_DESCRIPTION("Simple 4-control-bytes style tuner driver");
1089MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1090MODULE_LICENSE("GPL");
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092/*
1093 * Overrides for Emacs so that we follow Linus's tabbing style.
1094 * ---------------------------------------------------------------------------
1095 * Local variables:
1096 * c-basic-offset: 8
1097 * End:
1098 */