9 #include <linux/slab.h>
10 #include <linux/videodev2.h>
20 static unsigned int optimize_vco = 1;
23 static unsigned int tv_antenna = 1;
26 static unsigned int radio_antenna;
36 static char *microtune_part[] = {
69 int f1,
int f2,
int spectrum_from,
int spectrum_to)
79 tuner_dbg(
"spurcheck f1=%d f2=%d from=%d to=%d\n",
80 f1,f2,spectrum_from,spectrum_to);
88 tuner_dbg(
"spurtest n1=%d n2=%d ftest=%d\n",n1,n2,f);
90 if( (f>spectrum_from) && (f<spectrum_to))
91 tuner_dbg(
"mt2032 spurcheck triggered: %d\n",n1);
92 }
while ( (f>(f2-spectrum_to)) || (n2>-5));
101 unsigned int if1,
unsigned int if2,
102 unsigned int spectrum_from,
103 unsigned int spectrum_to,
109 unsigned int fref,lo1,lo1n,lo1a,
s,
sel,lo1freq, desired_lo1,
110 desired_lo2,lo2,lo2n,lo2a,lo2num,lo2freq;
113 desired_lo1=rfin+if1;
115 lo1=(2*(desired_lo1/1000)+(fref/1000)) / (2*fref/1000);
119 s=rfin/1000/1000+1090;
123 else if(s>1720) sel=1;
124 else if(s>1530) sel=2;
125 else if(s>1370) sel=3;
130 else if(s>1617) sel=1;
131 else if(s>1449) sel=2;
132 else if(s>1291) sel=3;
137 lo1freq=(lo1a+8*lo1n)*fref;
139 tuner_dbg(
"mt2032: rfin=%d lo1=%d lo1n=%d lo1a=%d sel=%d, lo1freq=%d\n",
140 rfin,lo1,lo1n,lo1a,sel,lo1freq);
142 desired_lo2=lo1freq-rfin-if2;
143 lo2=(desired_lo2)/fref;
146 lo2num=((desired_lo2/1000)%(fref/1000))* 3780/(fref/1000);
147 lo2freq=(lo2a+8*lo2n)*fref + lo2num*(fref/1000)/3780*1000;
149 tuner_dbg(
"mt2032: rfin=%d lo2=%d lo2n=%d lo2a=%d num=%d lo2freq=%d\n",
150 rfin,lo2,lo2n,lo2a,lo2num,lo2freq);
152 if (lo1a > 7 || lo1n < 17 || lo1n > 48 || lo2a > 7 || lo2n < 17 ||
154 tuner_info(
"mt2032: frequency parameters out of range: %d %d %d %d\n",
155 lo1a, lo1n, lo2a,lo2n);
159 mt2032_spurcheck(fe, lo1freq, desired_lo2, spectrum_from, spectrum_to);
164 buf[1]=lo1a | (sel<<4);
168 buf[5]=(lo2n-1) | (lo2a<<5);
169 if(rfin >400*1000*1000)
177 buf[11]=(lo2num&0xff);
178 buf[12]=(lo2num>>8) |0x80;
183 static int mt2032_check_lo_lock(
struct dvb_frontend *fe)
187 unsigned char buf[2];
189 for(
try=0;
try<10;
try++) {
191 tuner_i2c_xfer_send(&priv->
i2c_props,buf,1);
192 tuner_i2c_xfer_recv(&priv->
i2c_props,buf,1);
193 tuner_dbg(
"mt2032 Reg.E=0x%02x\n",buf[0]);
199 tuner_dbg(
"mt2032: pll wait 1ms for lock (0x%2x)\n",buf[0]);
205 static int mt2032_optimize_vco(
struct dvb_frontend *fe,
int sel,
int lock)
208 unsigned char buf[2];
212 tuner_i2c_xfer_send(&priv->
i2c_props,buf,1);
213 tuner_i2c_xfer_recv(&priv->
i2c_props,buf,1);
214 tuner_dbg(
"mt2032 Reg.F=0x%02x\n",buf[0]);
217 if(tad1 ==0)
return lock;
218 if(tad1 ==1)
return lock;
232 tuner_dbg(
"mt2032 optimize_vco: sel=%d\n",sel);
236 tuner_i2c_xfer_send(&priv->
i2c_props,buf,2);
237 lock=mt2032_check_lo_lock(fe);
242 static void mt2032_set_if_freq(
struct dvb_frontend *fe,
unsigned int rfin,
243 unsigned int if1,
unsigned int if2,
244 unsigned int from,
unsigned int to)
246 unsigned char buf[21];
247 int lint_try,
ret,
sel,lock=0;
250 tuner_dbg(
"mt2032_set_if_freq rfin=%d if1=%d if2=%d from=%d to=%d\n",
251 rfin,if1,if2,from,to);
254 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf,1);
255 tuner_i2c_xfer_recv(&priv->
i2c_props,buf,21);
258 ret=mt2032_compute_freq(fe,rfin,if1,if2,from,to,&buf[1],&sel,priv->
xogc);
264 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf,4);
266 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf+5,4);
268 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf+11,3);
270 tuner_warn(
"i2c i/o error: rc == %d (should be 3)\n",ret);
273 for(lint_try=0; lint_try<2; lint_try++) {
274 lock=mt2032_check_lo_lock(fe);
277 lock=mt2032_optimize_vco(fe,sel,lock);
280 tuner_dbg(
"mt2032: re-init PLLs by LINT\n");
282 buf[1]=0x80 +8+priv->
xogc;
283 tuner_i2c_xfer_send(&priv->
i2c_props,buf,2);
286 tuner_i2c_xfer_send(&priv->
i2c_props,buf,2);
290 tuner_warn(
"MT2032 Fatal Error: PLLs didn't lock.\n");
294 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf,2);
296 tuner_warn(
"i2c i/o error: rc == %d (should be 2)\n",ret);
318 mt2032_set_if_freq(fe, params->
frequency*62500,
319 1090*1000*1000, if2, from, to);
324 static int mt2032_set_radio_freq(
struct dvb_frontend *fe,
339 mt2032_set_if_freq(fe, params->
frequency * 125 / 2,
340 1085*1000*1000,if2,if2,if2);
351 switch (params->
mode) {
353 ret = mt2032_set_radio_freq(fe, params);
358 ret = mt2032_set_tv_freq(fe, params);
367 .set_analog_params = mt2032_set_params,
368 .release = microtune_release,
369 .get_frequency = microtune_get_frequency,
376 unsigned char buf[21];
384 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf+1,4);
392 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf+5,6);
396 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf+12,2);
401 tuner_dbg(
"mt2032: xogc = 0x%02x\n",xogc&0x07);
404 tuner_i2c_xfer_send(&priv->
i2c_props,buf,1);
405 tuner_i2c_xfer_recv(&priv->
i2c_props,buf,1);
411 tuner_dbg(
"mt2032: xogc = 0x%02x\n",xogc&0x07);
418 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf,2);
420 tuner_warn(
"i2c i/o error: rc == %d (should be 2)\n",ret);
432 unsigned char buf[2];
435 buf[1] = antenna ? 0x11 : 0x10;
436 tuner_i2c_xfer_send(&priv->
i2c_props, buf, 2);
437 tuner_dbg(
"mt2050: enabled antenna connector %d\n", antenna);
440 static void mt2050_set_if_freq(
struct dvb_frontend *fe,
unsigned int freq,
unsigned int if2)
443 unsigned int if1=1218*1000*1000;
444 unsigned int f_lo1,f_lo2,lo1,lo2,f_lo1_modulo,f_lo2_modulo,
num1,
num2,div1a,div1b,div2a,div2b;
446 unsigned char buf[6];
448 tuner_dbg(
"mt2050_set_if_freq freq=%d if1=%d if2=%d\n",
452 f_lo1=(f_lo1/1000000)*1000000;
454 f_lo2=f_lo1-freq-if2;
455 f_lo2=(f_lo2/50000)*50000;
460 f_lo1_modulo= f_lo1-(lo1*4000000);
461 f_lo2_modulo= f_lo2-(lo2*4000000);
463 num1=4*f_lo1_modulo/4000000;
464 num2=4096*(f_lo2_modulo/1000)/4000;
469 div1b=lo1-(div1a+1)*12;
472 div2b=lo2-(div2a+1)*8;
475 tuner_dbg(
"lo1 lo2 = %d %d\n", lo1, lo2);
476 tuner_dbg(
"num1 num2 div1a div1b div2a div2b= %x %x %x %x %x %x\n",
477 num1,num2,div1a,div1b,div2a,div2b);
481 buf[1]= 4*div1b +
num1;
482 if(freq<275*1000*1000) buf[1] = buf[1]|0x80;
485 buf[3]=32*div2b + num2/256;
486 buf[4]=num2-(num2/256)*256;
488 if(num2!=0) buf[5]=buf[5]|0x40;
498 ret=tuner_i2c_xfer_send(&priv->
i2c_props,buf,6);
500 tuner_warn(
"i2c i/o error: rc == %d (should be 6)\n",ret);
519 mt2050_set_if_freq(fe, params->
frequency*62500, if2);
520 mt2050_set_antenna(fe, tv_antenna);
525 static int mt2050_set_radio_freq(
struct dvb_frontend *fe,
539 mt2050_set_if_freq(fe, params->
frequency * 125 / 2, if2);
540 mt2050_set_antenna(fe, radio_antenna);
551 switch (params->
mode) {
553 ret = mt2050_set_radio_freq(fe, params);
558 ret = mt2050_set_tv_freq(fe, params);
567 .set_analog_params = mt2050_set_params,
568 .release = microtune_release,
569 .get_frequency = microtune_get_frequency,
575 unsigned char buf[2];
579 tuner_i2c_xfer_send(&priv->
i2c_props, buf, 2);
583 tuner_i2c_xfer_send(&priv->
i2c_props, buf, 2);
586 tuner_i2c_xfer_send(&priv->
i2c_props, buf, 1);
587 tuner_i2c_xfer_recv(&priv->
i2c_props, buf, 1);
589 tuner_dbg(
"mt2050: sro is %x\n", buf[0]);
602 unsigned char buf[21];
616 memset(buf,0,
sizeof(buf));
620 tuner_i2c_xfer_send(&priv->
i2c_props,buf,1);
621 tuner_i2c_xfer_recv(&priv->
i2c_props,buf,21);
627 if(((i+1)%8)==0)
printk(
" ");
631 company_code = buf[0x11] << 8 | buf[0x12];
632 tuner_info(
"microtune: companycode=%04x part=%02x rev=%02x\n",
633 company_code,buf[0x13],buf[0x14]);
637 NULL != microtune_part[buf[0x13]])
638 name = microtune_part[buf[0x13]];
647 tuner_info(
"microtune %s found, not (yet?) supported, sorry :-/\n",
653 sizeof(fe->
ops.tuner_ops.info.name));