3 * i2c tv tuner chip device driver
4 * controls microtune tuners, mt2032 + mt2050 at the moment.
6 #include <linux/delay.h>
8 #include <linux/videodev.h>
9 #include <linux/moduleparam.h>
10 #include "tuner-driver.h"
12 /* ---------------------------------------------------------------------- */
14 static unsigned int optimize_vco
= 1;
15 module_param(optimize_vco
, int, 0644);
17 static unsigned int tv_antenna
= 1;
18 module_param(tv_antenna
, int, 0644);
20 static unsigned int radio_antenna
= 0;
21 module_param(radio_antenna
, int, 0644);
23 /* from tuner-core.c */
24 extern int tuner_debug
;
26 /* ---------------------------------------------------------------------- */
33 static char *microtune_part
[] = {
34 [ MT2030
] = "MT2030",
35 [ MT2032
] = "MT2032",
36 [ MT2040
] = "MT2040",
37 [ MT2050
] = "MT2050",
40 struct microtune_priv
{
42 unsigned int radio_if2
;
45 static void microtune_release(struct i2c_client
*c
)
47 struct tuner
*t
= i2c_get_clientdata(c
);
54 static int mt2032_spurcheck(struct i2c_client
*c
,
55 int f1
, int f2
, int spectrum_from
,int spectrum_to
)
57 struct tuner
*t
= i2c_get_clientdata(c
);
60 f1
=f1
/1000; //scale to kHz to avoid 32bit overflows
65 tuner_dbg("spurcheck f1=%d f2=%d from=%d to=%d\n",
66 f1
,f2
,spectrum_from
,spectrum_to
);
74 tuner_dbg("spurtest n1=%d n2=%d ftest=%d\n",n1
,n2
,f
);
76 if( (f
>spectrum_from
) && (f
<spectrum_to
))
77 tuner_dbg("mt2032 spurcheck triggered: %d\n",n1
);
78 } while ( (f
>(f2
-spectrum_to
)) || (n2
>-5));
85 static int mt2032_compute_freq(struct i2c_client
*c
,
87 unsigned int if1
, unsigned int if2
,
88 unsigned int spectrum_from
,
89 unsigned int spectrum_to
,
92 unsigned int xogc
) //all in Hz
94 struct tuner
*t
= i2c_get_clientdata(c
);
95 unsigned int fref
,lo1
,lo1n
,lo1a
,s
,sel
,lo1freq
, desired_lo1
,
96 desired_lo2
,lo2
,lo2n
,lo2a
,lo2num
,lo2freq
;
98 fref
= 5250 *1000; //5.25MHz
101 lo1
=(2*(desired_lo1
/1000)+(fref
/1000)) / (2*fref
/1000);
105 s
=rfin
/1000/1000+1090;
109 else if(s
>1720) sel
=1;
110 else if(s
>1530) sel
=2;
111 else if(s
>1370) sel
=3;
115 if(s
>1790) sel
=0; // <1958
116 else if(s
>1617) sel
=1;
117 else if(s
>1449) sel
=2;
118 else if(s
>1291) sel
=3;
123 lo1freq
=(lo1a
+8*lo1n
)*fref
;
125 tuner_dbg("mt2032: rfin=%d lo1=%d lo1n=%d lo1a=%d sel=%d, lo1freq=%d\n",
126 rfin
,lo1
,lo1n
,lo1a
,sel
,lo1freq
);
128 desired_lo2
=lo1freq
-rfin
-if2
;
129 lo2
=(desired_lo2
)/fref
;
132 lo2num
=((desired_lo2
/1000)%(fref
/1000))* 3780/(fref
/1000); //scale to fit in 32bit arith
133 lo2freq
=(lo2a
+8*lo2n
)*fref
+ lo2num
*(fref
/1000)/3780*1000;
135 tuner_dbg("mt2032: rfin=%d lo2=%d lo2n=%d lo2a=%d num=%d lo2freq=%d\n",
136 rfin
,lo2
,lo2n
,lo2a
,lo2num
,lo2freq
);
138 if(lo1a
<0 || lo1a
>7 || lo1n
<17 ||lo1n
>48 || lo2a
<0 ||lo2a
>7 ||lo2n
<17 || lo2n
>30) {
139 tuner_info("mt2032: frequency parameters out of range: %d %d %d %d\n",
140 lo1a
, lo1n
, lo2a
,lo2n
);
144 mt2032_spurcheck(c
, lo1freq
, desired_lo2
, spectrum_from
, spectrum_to
);
145 // should recalculate lo1 (one step up/down)
147 // set up MT2032 register map for transfer over i2c
149 buf
[1]=lo1a
| (sel
<<4);
151 buf
[3]=0x0f; //reserved
153 buf
[5]=(lo2n
-1) | (lo2a
<<5);
154 if(rfin
>400*1000*1000)
157 buf
[6]=0xf4; // set PKEN per rev 1.2
159 buf
[8]=0xc3; //reserved
160 buf
[9]=0x4e; //reserved
161 buf
[10]=0xec; //reserved
162 buf
[11]=(lo2num
&0xff);
163 buf
[12]=(lo2num
>>8) |0x80; // Lo2RST
168 static int mt2032_check_lo_lock(struct i2c_client
*c
)
170 struct tuner
*t
= i2c_get_clientdata(c
);
172 unsigned char buf
[2];
174 for(try=0;try<10;try++) {
176 i2c_master_send(c
,buf
,1);
177 i2c_master_recv(c
,buf
,1);
178 tuner_dbg("mt2032 Reg.E=0x%02x\n",buf
[0]);
184 tuner_dbg("mt2032: pll wait 1ms for lock (0x%2x)\n",buf
[0]);
190 static int mt2032_optimize_vco(struct i2c_client
*c
,int sel
,int lock
)
192 struct tuner
*t
= i2c_get_clientdata(c
);
193 unsigned char buf
[2];
197 i2c_master_send(c
,buf
,1);
198 i2c_master_recv(c
,buf
,1);
199 tuner_dbg("mt2032 Reg.F=0x%02x\n",buf
[0]);
202 if(tad1
==0) return lock
;
203 if(tad1
==1) return lock
;
217 tuner_dbg("mt2032 optimize_vco: sel=%d\n",sel
);
221 i2c_master_send(c
,buf
,2);
222 lock
=mt2032_check_lo_lock(c
);
227 static void mt2032_set_if_freq(struct i2c_client
*c
, unsigned int rfin
,
228 unsigned int if1
, unsigned int if2
,
229 unsigned int from
, unsigned int to
)
231 unsigned char buf
[21];
232 int lint_try
,ret
,sel
,lock
=0;
233 struct tuner
*t
= i2c_get_clientdata(c
);
234 struct microtune_priv
*priv
= t
->priv
;
236 tuner_dbg("mt2032_set_if_freq rfin=%d if1=%d if2=%d from=%d to=%d\n",
237 rfin
,if1
,if2
,from
,to
);
240 ret
=i2c_master_send(c
,buf
,1);
241 i2c_master_recv(c
,buf
,21);
244 ret
=mt2032_compute_freq(c
,rfin
,if1
,if2
,from
,to
,&buf
[1],&sel
,priv
->xogc
);
248 // send only the relevant registers per Rev. 1.2
250 ret
=i2c_master_send(c
,buf
,4);
252 ret
=i2c_master_send(c
,buf
+5,4);
254 ret
=i2c_master_send(c
,buf
+11,3);
256 tuner_warn("i2c i/o error: rc == %d (should be 3)\n",ret
);
258 // wait for PLLs to lock (per manual), retry LINT if not.
259 for(lint_try
=0; lint_try
<2; lint_try
++) {
260 lock
=mt2032_check_lo_lock(c
);
263 lock
=mt2032_optimize_vco(c
,sel
,lock
);
266 tuner_dbg("mt2032: re-init PLLs by LINT\n");
268 buf
[1]=0x80 +8+priv
->xogc
; // set LINT to re-init PLLs
269 i2c_master_send(c
,buf
,2);
272 i2c_master_send(c
,buf
,2);
276 tuner_warn("MT2032 Fatal Error: PLLs didn't lock.\n");
279 buf
[1]=0x20; // LOGC for optimal phase noise
280 ret
=i2c_master_send(c
,buf
,2);
282 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",ret
);
286 static void mt2032_set_tv_freq(struct i2c_client
*c
, unsigned int freq
)
288 struct tuner
*t
= i2c_get_clientdata(c
);
291 // signal bandwidth and picture carrier
292 if (t
->std
& V4L2_STD_525_60
) {
304 mt2032_set_if_freq(c
, freq
*62500 /* freq*1000*1000/16 */,
305 1090*1000*1000, if2
, from
, to
);
308 static void mt2032_set_radio_freq(struct i2c_client
*c
, unsigned int freq
)
310 struct tuner
*t
= i2c_get_clientdata(c
);
311 struct microtune_priv
*priv
= t
->priv
;
312 int if2
= priv
->radio_if2
;
314 // per Manual for FM tuning: first if center freq. 1085 MHz
315 mt2032_set_if_freq(c
, freq
* 1000 / 16,
316 1085*1000*1000,if2
,if2
,if2
);
319 static struct tuner_operations mt2032_tuner_ops
= {
320 .set_tv_freq
= mt2032_set_tv_freq
,
321 .set_radio_freq
= mt2032_set_radio_freq
,
322 .release
= microtune_release
,
325 // Initalization as described in "MT203x Programming Procedures", Rev 1.2, Feb.2001
326 static int mt2032_init(struct i2c_client
*c
)
328 struct tuner
*t
= i2c_get_clientdata(c
);
329 struct microtune_priv
*priv
= t
->priv
;
330 unsigned char buf
[21];
333 // Initialize Registers per spec.
334 buf
[1]=2; // Index to register 2
338 ret
=i2c_master_send(c
,buf
+1,4);
340 buf
[5]=6; // Index register 6
346 ret
=i2c_master_send(c
,buf
+5,6);
348 buf
[12]=13; // Index register 13
350 ret
=i2c_master_send(c
,buf
+12,2);
352 // Adjust XOGC (register 7), wait for XOK
355 tuner_dbg("mt2032: xogc = 0x%02x\n",xogc
&0x07);
358 i2c_master_send(c
,buf
,1);
359 i2c_master_recv(c
,buf
,1);
361 tuner_dbg("mt2032: xok = 0x%02x\n",xok
);
365 tuner_dbg("mt2032: xogc = 0x%02x\n",xogc
&0x07);
367 xogc
=4; // min. 4 per spec
372 ret
=i2c_master_send(c
,buf
,2);
374 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",ret
);
378 memcpy(&t
->ops
, &mt2032_tuner_ops
, sizeof(struct tuner_operations
));
383 static void mt2050_set_antenna(struct i2c_client
*c
, unsigned char antenna
)
385 struct tuner
*t
= i2c_get_clientdata(c
);
386 unsigned char buf
[2];
390 buf
[1] = antenna
? 0x11 : 0x10;
391 ret
=i2c_master_send(c
,buf
,2);
392 tuner_dbg("mt2050: enabled antenna connector %d\n", antenna
);
395 static void mt2050_set_if_freq(struct i2c_client
*c
,unsigned int freq
, unsigned int if2
)
397 struct tuner
*t
= i2c_get_clientdata(c
);
398 unsigned int if1
=1218*1000*1000;
399 unsigned int f_lo1
,f_lo2
,lo1
,lo2
,f_lo1_modulo
,f_lo2_modulo
,num1
,num2
,div1a
,div1b
,div2a
,div2b
;
401 unsigned char buf
[6];
403 tuner_dbg("mt2050_set_if_freq freq=%d if1=%d if2=%d\n",
407 f_lo1
=(f_lo1
/1000000)*1000000;
409 f_lo2
=f_lo1
-freq
-if2
;
410 f_lo2
=(f_lo2
/50000)*50000;
415 f_lo1_modulo
= f_lo1
-(lo1
*4000000);
416 f_lo2_modulo
= f_lo2
-(lo2
*4000000);
418 num1
=4*f_lo1_modulo
/4000000;
419 num2
=4096*(f_lo2_modulo
/1000)/4000;
424 div1b
=lo1
-(div1a
+1)*12;
427 div2b
=lo2
-(div2a
+1)*8;
429 if (tuner_debug
> 1) {
430 tuner_dbg("lo1 lo2 = %d %d\n", lo1
, lo2
);
431 tuner_dbg("num1 num2 div1a div1b div2a div2b= %x %x %x %x %x %x\n",
432 num1
,num2
,div1a
,div1b
,div2a
,div2b
);
436 buf
[1]= 4*div1b
+ num1
;
437 if(freq
<275*1000*1000) buf
[1] = buf
[1]|0x80;
440 buf
[3]=32*div2b
+ num2
/256;
441 buf
[4]=num2
-(num2
/256)*256;
443 if(num2
!=0) buf
[5]=buf
[5]|0x40;
445 if (tuner_debug
> 1) {
447 tuner_dbg("bufs is: ");
449 printk("%x ",buf
[i
]);
453 ret
=i2c_master_send(c
,buf
,6);
455 tuner_warn("i2c i/o error: rc == %d (should be 6)\n",ret
);
458 static void mt2050_set_tv_freq(struct i2c_client
*c
, unsigned int freq
)
460 struct tuner
*t
= i2c_get_clientdata(c
);
463 if (t
->std
& V4L2_STD_525_60
) {
470 if (V4L2_TUNER_DIGITAL_TV
== t
->mode
) {
471 // DVB (pinnacle 300i)
474 mt2050_set_if_freq(c
, freq
*62500, if2
);
475 mt2050_set_antenna(c
, tv_antenna
);
478 static void mt2050_set_radio_freq(struct i2c_client
*c
, unsigned int freq
)
480 struct tuner
*t
= i2c_get_clientdata(c
);
481 struct microtune_priv
*priv
= t
->priv
;
482 int if2
= priv
->radio_if2
;
484 mt2050_set_if_freq(c
, freq
* 1000 / 16, if2
);
485 mt2050_set_antenna(c
, radio_antenna
);
488 static struct tuner_operations mt2050_tuner_ops
= {
489 .set_tv_freq
= mt2050_set_tv_freq
,
490 .set_radio_freq
= mt2050_set_radio_freq
,
491 .release
= microtune_release
,
494 static int mt2050_init(struct i2c_client
*c
)
496 struct tuner
*t
= i2c_get_clientdata(c
);
497 unsigned char buf
[2];
502 ret
=i2c_master_send(c
,buf
,2); // power
506 ret
=i2c_master_send(c
,buf
,2); // m1lo
509 ret
=i2c_master_send(c
,buf
,1);
510 i2c_master_recv(c
,buf
,1);
512 tuner_dbg("mt2050: sro is %x\n",buf
[0]);
514 memcpy(&t
->ops
, &mt2050_tuner_ops
, sizeof(struct tuner_operations
));
519 int microtune_init(struct i2c_client
*c
)
521 struct microtune_priv
*priv
= NULL
;
522 struct tuner
*t
= i2c_get_clientdata(c
);
524 unsigned char buf
[21];
527 priv
= kzalloc(sizeof(struct microtune_priv
), GFP_KERNEL
);
532 priv
->radio_if2
= 10700 * 1000; /* 10.7MHz - FM radio */
534 memset(buf
,0,sizeof(buf
));
536 if (t
->std
& V4L2_STD_525_60
) {
537 tuner_dbg("pinnacle ntsc\n");
538 priv
->radio_if2
= 41300 * 1000;
540 tuner_dbg("pinnacle pal\n");
541 priv
->radio_if2
= 33300 * 1000;
545 i2c_master_send(c
,buf
,1);
546 i2c_master_recv(c
,buf
,21);
549 tuner_dbg("MT20xx hexdump:");
551 printk(" %02x",buf
[i
]);
552 if(((i
+1)%8)==0) printk(" ");
556 company_code
= buf
[0x11] << 8 | buf
[0x12];
557 tuner_info("microtune: companycode=%04x part=%02x rev=%02x\n",
558 company_code
,buf
[0x13],buf
[0x14]);
561 if (buf
[0x13] < ARRAY_SIZE(microtune_part
) &&
562 NULL
!= microtune_part
[buf
[0x13]])
563 name
= microtune_part
[buf
[0x13]];
572 tuner_info("microtune %s found, not (yet?) supported, sorry :-/\n",
577 strlcpy(c
->name
, name
, sizeof(c
->name
));
578 tuner_info("microtune %s found, OK\n",name
);
583 * Overrides for Emacs so that we follow Linus's tabbing style.
584 * ---------------------------------------------------------------------------