2 * Rafael Micro R820T driver
4 * Copyright (C) 2013 Mauro Carvalho Chehab <mchehab@redhat.com>
6 * This driver was written from scratch, based on an existing driver
7 * that it is part of rtl-sdr git tree, released under GPLv2:
8 * https://groups.google.com/forum/#!topic/ultra-cheap-sdr/Y3rBEOFtHug
9 * https://github.com/n1gp/gr-baz
11 * From what I understood from the threads, the original driver was converted
12 * to userspace from a Realtek tree. I couldn't find the original tree.
13 * However, the original driver look awkward on my eyes. So, I decided to
14 * write a new version from it from the scratch, while trying to reproduce
15 * everything found there.
18 * After locking, the original driver seems to have some routines to
19 * improve reception. This was not implemented here yet.
21 * RF Gain set/get is not implemented.
23 * This program is free software; you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation; either version 2 of the License, or
26 * (at your option) any later version.
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
35 #include <linux/videodev2.h>
36 #include <linux/mutex.h>
37 #include <linux/slab.h>
38 #include <linux/bitrev.h>
40 #include "tuner-i2c.h"
44 * FIXME: I think that there are only 32 registers, but better safe than
45 * sorry. After finishing the driver, we may review it.
47 #define REG_SHADOW_START 5
55 module_param(debug
, int, 0644);
56 MODULE_PARM_DESC(debug
, "enable verbose debug messages");
58 static int no_imr_cal
;
59 module_param(no_imr_cal
, int, 0444);
60 MODULE_PARM_DESC(no_imr_cal
, "Disable IMR calibration at module init");
64 * enums and structures
75 struct r820t_sect_type
{
82 struct list_head hybrid_tuner_instance_list
;
83 const struct r820t_config
*cfg
;
84 struct tuner_i2c_props i2c_props
;
89 enum xtal_cap_value xtal_cap_sel
;
96 struct r820t_sect_type imr_data
[NUM_IMR
];
98 /* Store current mode */
100 enum v4l2_tuner_type type
;
105 struct r820t_freq_range
{
113 u8 imr_mem
; /* Not used, currently */
116 #define VCO_POWER_REF 0x02
117 #define DIP_FREQ 32000000
123 static LIST_HEAD(hybrid_tuner_instance_list
);
124 static DEFINE_MUTEX(r820t_list_mutex
);
126 /* Those initial values start from REG_SHADOW_START */
127 static const u8 r820t_init_array
[NUM_REGS
] = {
128 0x83, 0x32, 0x75, /* 05 to 07 */
129 0xc0, 0x40, 0xd6, 0x6c, /* 08 to 0b */
130 0xf5, 0x63, 0x75, 0x68, /* 0c to 0f */
131 0x6c, 0x83, 0x80, 0x00, /* 10 to 13 */
132 0x0f, 0x00, 0xc0, 0x30, /* 14 to 17 */
133 0x48, 0xcc, 0x60, 0x00, /* 18 to 1b */
134 0x54, 0xae, 0x4a, 0xc0 /* 1c to 1f */
137 /* Tuner frequency ranges */
138 static const struct r820t_freq_range freq_ranges
[] = {
141 .open_d
= 0x08, /* low */
142 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
143 .tf_c
= 0xdf, /* R27[7:0] band2,band0 */
144 .xtal_cap20p
= 0x02, /* R16[1:0] 20pF (10) */
149 .freq
= 50, /* Start freq, in MHz */
150 .open_d
= 0x08, /* low */
151 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
152 .tf_c
= 0xbe, /* R27[7:0] band4,band1 */
153 .xtal_cap20p
= 0x02, /* R16[1:0] 20pF (10) */
158 .freq
= 55, /* Start freq, in MHz */
159 .open_d
= 0x08, /* low */
160 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
161 .tf_c
= 0x8b, /* R27[7:0] band7,band4 */
162 .xtal_cap20p
= 0x02, /* R16[1:0] 20pF (10) */
167 .freq
= 60, /* Start freq, in MHz */
168 .open_d
= 0x08, /* low */
169 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
170 .tf_c
= 0x7b, /* R27[7:0] band8,band4 */
171 .xtal_cap20p
= 0x02, /* R16[1:0] 20pF (10) */
176 .freq
= 65, /* Start freq, in MHz */
177 .open_d
= 0x08, /* low */
178 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
179 .tf_c
= 0x69, /* R27[7:0] band9,band6 */
180 .xtal_cap20p
= 0x02, /* R16[1:0] 20pF (10) */
185 .freq
= 70, /* Start freq, in MHz */
186 .open_d
= 0x08, /* low */
187 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
188 .tf_c
= 0x58, /* R27[7:0] band10,band7 */
189 .xtal_cap20p
= 0x02, /* R16[1:0] 20pF (10) */
194 .freq
= 75, /* Start freq, in MHz */
195 .open_d
= 0x00, /* high */
196 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
197 .tf_c
= 0x44, /* R27[7:0] band11,band11 */
198 .xtal_cap20p
= 0x02, /* R16[1:0] 20pF (10) */
203 .freq
= 80, /* Start freq, in MHz */
204 .open_d
= 0x00, /* high */
205 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
206 .tf_c
= 0x44, /* R27[7:0] band11,band11 */
207 .xtal_cap20p
= 0x02, /* R16[1:0] 20pF (10) */
212 .freq
= 90, /* Start freq, in MHz */
213 .open_d
= 0x00, /* high */
214 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
215 .tf_c
= 0x34, /* R27[7:0] band12,band11 */
216 .xtal_cap20p
= 0x01, /* R16[1:0] 10pF (01) */
221 .freq
= 100, /* Start freq, in MHz */
222 .open_d
= 0x00, /* high */
223 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
224 .tf_c
= 0x34, /* R27[7:0] band12,band11 */
225 .xtal_cap20p
= 0x01, /* R16[1:0] 10pF (01) */
230 .freq
= 110, /* Start freq, in MHz */
231 .open_d
= 0x00, /* high */
232 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
233 .tf_c
= 0x24, /* R27[7:0] band13,band11 */
234 .xtal_cap20p
= 0x01, /* R16[1:0] 10pF (01) */
239 .freq
= 120, /* Start freq, in MHz */
240 .open_d
= 0x00, /* high */
241 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
242 .tf_c
= 0x24, /* R27[7:0] band13,band11 */
243 .xtal_cap20p
= 0x01, /* R16[1:0] 10pF (01) */
248 .freq
= 140, /* Start freq, in MHz */
249 .open_d
= 0x00, /* high */
250 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
251 .tf_c
= 0x14, /* R27[7:0] band14,band11 */
252 .xtal_cap20p
= 0x01, /* R16[1:0] 10pF (01) */
257 .freq
= 180, /* Start freq, in MHz */
258 .open_d
= 0x00, /* high */
259 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
260 .tf_c
= 0x13, /* R27[7:0] band14,band12 */
261 .xtal_cap20p
= 0x00, /* R16[1:0] 0pF (00) */
266 .freq
= 220, /* Start freq, in MHz */
267 .open_d
= 0x00, /* high */
268 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
269 .tf_c
= 0x13, /* R27[7:0] band14,band12 */
270 .xtal_cap20p
= 0x00, /* R16[1:0] 0pF (00) */
275 .freq
= 250, /* Start freq, in MHz */
276 .open_d
= 0x00, /* high */
277 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
278 .tf_c
= 0x11, /* R27[7:0] highest,highest */
279 .xtal_cap20p
= 0x00, /* R16[1:0] 0pF (00) */
284 .freq
= 280, /* Start freq, in MHz */
285 .open_d
= 0x00, /* high */
286 .rf_mux_ploy
= 0x02, /* R26[7:6]=0 (LPF) R26[1:0]=2 (low) */
287 .tf_c
= 0x00, /* R27[7:0] highest,highest */
288 .xtal_cap20p
= 0x00, /* R16[1:0] 0pF (00) */
293 .freq
= 310, /* Start freq, in MHz */
294 .open_d
= 0x00, /* high */
295 .rf_mux_ploy
= 0x41, /* R26[7:6]=1 (bypass) R26[1:0]=1 (middle) */
296 .tf_c
= 0x00, /* R27[7:0] highest,highest */
297 .xtal_cap20p
= 0x00, /* R16[1:0] 0pF (00) */
302 .freq
= 450, /* Start freq, in MHz */
303 .open_d
= 0x00, /* high */
304 .rf_mux_ploy
= 0x41, /* R26[7:6]=1 (bypass) R26[1:0]=1 (middle) */
305 .tf_c
= 0x00, /* R27[7:0] highest,highest */
306 .xtal_cap20p
= 0x00, /* R16[1:0] 0pF (00) */
311 .freq
= 588, /* Start freq, in MHz */
312 .open_d
= 0x00, /* high */
313 .rf_mux_ploy
= 0x40, /* R26[7:6]=1 (bypass) R26[1:0]=0 (highest) */
314 .tf_c
= 0x00, /* R27[7:0] highest,highest */
315 .xtal_cap20p
= 0x00, /* R16[1:0] 0pF (00) */
320 .freq
= 650, /* Start freq, in MHz */
321 .open_d
= 0x00, /* high */
322 .rf_mux_ploy
= 0x40, /* R26[7:6]=1 (bypass) R26[1:0]=0 (highest) */
323 .tf_c
= 0x00, /* R27[7:0] highest,highest */
324 .xtal_cap20p
= 0x00, /* R16[1:0] 0pF (00) */
331 static int r820t_xtal_capacitor
[][2] = {
332 { 0x0b, XTAL_LOW_CAP_30P
},
333 { 0x02, XTAL_LOW_CAP_20P
},
334 { 0x01, XTAL_LOW_CAP_10P
},
335 { 0x00, XTAL_LOW_CAP_0P
},
336 { 0x10, XTAL_HIGH_CAP_0P
},
340 * measured with a Racal 6103E GSM test set at 928 MHz with -60 dBm
341 * input power, for raw results see:
342 * http://steve-m.de/projects/rtl-sdr/gain_measurement/r820t/
345 static const int r820t_lna_gain_steps
[] = {
346 0, 9, 13, 40, 38, 13, 31, 22, 26, 31, 26, 14, 19, 5, 35, 13
349 static const int r820t_mixer_gain_steps
[] = {
350 0, 5, 10, 10, 19, 9, 10, 25, 17, 10, 8, 16, 13, 6, 3, -8
354 * I2C read/write code and shadow registers logic
356 static void shadow_store(struct r820t_priv
*priv
, u8 reg
, const u8
*val
,
359 int r
= reg
- REG_SHADOW_START
;
367 if (len
> NUM_REGS
- r
)
370 tuner_dbg("%s: prev reg=%02x len=%d: %*ph\n",
371 __func__
, r
+ REG_SHADOW_START
, len
, len
, val
);
373 memcpy(&priv
->regs
[r
], val
, len
);
376 static int r820t_write(struct r820t_priv
*priv
, u8 reg
, const u8
*val
,
379 int rc
, size
, pos
= 0;
381 /* Store the shadow registers */
382 shadow_store(priv
, reg
, val
, len
);
385 if (len
> priv
->cfg
->max_i2c_msg_len
- 1)
386 size
= priv
->cfg
->max_i2c_msg_len
- 1;
390 /* Fill I2C buffer */
392 memcpy(&priv
->buf
[1], &val
[pos
], size
);
394 rc
= tuner_i2c_xfer_send(&priv
->i2c_props
, priv
->buf
, size
+ 1);
395 if (rc
!= size
+ 1) {
396 tuner_info("%s: i2c wr failed=%d reg=%02x len=%d: %*ph\n",
397 __func__
, rc
, reg
, size
, size
, &priv
->buf
[1]);
402 tuner_dbg("%s: i2c wr reg=%02x len=%d: %*ph\n",
403 __func__
, reg
, size
, size
, &priv
->buf
[1]);
413 static int r820t_write_reg(struct r820t_priv
*priv
, u8 reg
, u8 val
)
415 return r820t_write(priv
, reg
, &val
, 1);
418 static int r820t_read_cache_reg(struct r820t_priv
*priv
, int reg
)
420 reg
-= REG_SHADOW_START
;
422 if (reg
>= 0 && reg
< NUM_REGS
)
423 return priv
->regs
[reg
];
428 static int r820t_write_reg_mask(struct r820t_priv
*priv
, u8 reg
, u8 val
,
431 int rc
= r820t_read_cache_reg(priv
, reg
);
436 val
= (rc
& ~bit_mask
) | (val
& bit_mask
);
438 return r820t_write(priv
, reg
, &val
, 1);
441 static int r820t_read(struct r820t_priv
*priv
, u8 reg
, u8
*val
, int len
)
444 u8
*p
= &priv
->buf
[1];
448 rc
= tuner_i2c_xfer_send_recv(&priv
->i2c_props
, priv
->buf
, 1, p
, len
);
450 tuner_info("%s: i2c rd failed=%d reg=%02x len=%d: %*ph\n",
451 __func__
, rc
, reg
, len
, len
, p
);
457 /* Copy data to the output buffer */
458 for (i
= 0; i
< len
; i
++)
459 val
[i
] = bitrev8(p
[i
]);
461 tuner_dbg("%s: i2c rd reg=%02x len=%d: %*ph\n",
462 __func__
, reg
, len
, len
, val
);
471 static int r820t_set_mux(struct r820t_priv
*priv
, u32 freq
)
473 const struct r820t_freq_range
*range
;
475 u8 val
, reg08
, reg09
;
477 /* Get the proper frequency range */
478 freq
= freq
/ 1000000;
479 for (i
= 0; i
< ARRAY_SIZE(freq_ranges
) - 1; i
++) {
480 if (freq
< freq_ranges
[i
+ 1].freq
)
483 range
= &freq_ranges
[i
];
485 tuner_dbg("set r820t range#%d for frequency %d MHz\n", i
, freq
);
488 rc
= r820t_write_reg_mask(priv
, 0x17, range
->open_d
, 0x08);
493 rc
= r820t_write_reg_mask(priv
, 0x1a, range
->rf_mux_ploy
, 0xc3);
498 rc
= r820t_write_reg(priv
, 0x1b, range
->tf_c
);
502 /* XTAL CAP & Drive */
503 switch (priv
->xtal_cap_sel
) {
504 case XTAL_LOW_CAP_30P
:
505 case XTAL_LOW_CAP_20P
:
506 val
= range
->xtal_cap20p
| 0x08;
508 case XTAL_LOW_CAP_10P
:
509 val
= range
->xtal_cap10p
| 0x08;
511 case XTAL_HIGH_CAP_0P
:
512 val
= range
->xtal_cap0p
| 0x00;
515 case XTAL_LOW_CAP_0P
:
516 val
= range
->xtal_cap0p
| 0x08;
519 rc
= r820t_write_reg_mask(priv
, 0x10, val
, 0x0b);
523 if (priv
->imr_done
) {
524 reg08
= priv
->imr_data
[range
->imr_mem
].gain_x
;
525 reg09
= priv
->imr_data
[range
->imr_mem
].phase_y
;
530 rc
= r820t_write_reg_mask(priv
, 0x08, reg08
, 0x3f);
534 rc
= r820t_write_reg_mask(priv
, 0x09, reg09
, 0x3f);
539 static int r820t_set_pll(struct r820t_priv
*priv
, enum v4l2_tuner_type type
,
544 unsigned sleep_time
= 10000;
545 u32 vco_fra
; /* VCO contribution by SDM (kHz) */
546 u32 vco_min
= 1770000;
547 u32 vco_max
= vco_min
* 2;
555 u8 ni
, si
, nint
, vco_fine_tune
, val
;
558 /* Frequency in kHz */
560 pll_ref
= priv
->cfg
->xtal
/ 1000;
563 /* Doesn't exist on rtl-sdk, and on field tests, caused troubles */
564 if ((priv
->cfg
->rafael_chip
== CHIP_R620D
) ||
565 (priv
->cfg
->rafael_chip
== CHIP_R828D
) ||
566 (priv
->cfg
->rafael_chip
== CHIP_R828
)) {
567 /* ref set refdiv2, reffreq = Xtal/2 on ATV application */
568 if (type
!= V4L2_TUNER_DIGITAL_TV
) {
574 if (priv
->cfg
->xtal
> 24000000) {
581 rc
= r820t_write_reg_mask(priv
, 0x10, refdiv2
, 0x10);
585 /* set pll autotune = 128kHz */
586 rc
= r820t_write_reg_mask(priv
, 0x1a, 0x00, 0x0c);
590 /* set VCO current = 100 */
591 rc
= r820t_write_reg_mask(priv
, 0x12, 0x80, 0xe0);
595 /* Calculate divider */
596 while (mix_div
<= 64) {
597 if (((freq
* mix_div
) >= vco_min
) &&
598 ((freq
* mix_div
) < vco_max
)) {
600 while (div_buf
> 2) {
601 div_buf
= div_buf
>> 1;
606 mix_div
= mix_div
<< 1;
609 rc
= r820t_read(priv
, 0x00, data
, sizeof(data
));
613 vco_fine_tune
= (data
[4] & 0x30) >> 4;
615 if (vco_fine_tune
> VCO_POWER_REF
)
616 div_num
= div_num
- 1;
617 else if (vco_fine_tune
< VCO_POWER_REF
)
618 div_num
= div_num
+ 1;
620 rc
= r820t_write_reg_mask(priv
, 0x10, div_num
<< 5, 0xe0);
624 vco_freq
= freq
* mix_div
;
625 nint
= vco_freq
/ (2 * pll_ref
);
626 vco_fra
= vco_freq
- 2 * pll_ref
* nint
;
628 /* boundary spur prevention */
629 if (vco_fra
< pll_ref
/ 64) {
631 } else if (vco_fra
> pll_ref
* 127 / 64) {
634 } else if ((vco_fra
> pll_ref
* 127 / 128) && (vco_fra
< pll_ref
)) {
635 vco_fra
= pll_ref
* 127 / 128;
636 } else if ((vco_fra
> pll_ref
) && (vco_fra
< pll_ref
* 129 / 128)) {
637 vco_fra
= pll_ref
* 129 / 128;
641 tuner_info("No valid PLL values for %u kHz!\n", freq
);
645 ni
= (nint
- 13) / 4;
646 si
= nint
- 4 * ni
- 13;
648 rc
= r820t_write_reg(priv
, 0x14, ni
+ (si
<< 6));
658 rc
= r820t_write_reg_mask(priv
, 0x12, val
, 0x08);
663 while (vco_fra
> 1) {
664 if (vco_fra
> (2 * pll_ref
/ n_sdm
)) {
665 sdm
= sdm
+ 32768 / (n_sdm
/ 2);
666 vco_fra
= vco_fra
- 2 * pll_ref
/ n_sdm
;
673 tuner_dbg("freq %d kHz, pll ref %d%s, sdm=0x%04x\n",
674 freq
, pll_ref
, refdiv2
? " / 2" : "", sdm
);
676 rc
= r820t_write_reg(priv
, 0x16, sdm
>> 8);
679 rc
= r820t_write_reg(priv
, 0x15, sdm
& 0xff);
683 for (i
= 0; i
< 2; i
++) {
684 usleep_range(sleep_time
, sleep_time
+ 1000);
686 /* Check if PLL has locked */
687 rc
= r820t_read(priv
, 0x00, data
, 3);
694 /* Didn't lock. Increase VCO current */
695 rc
= r820t_write_reg_mask(priv
, 0x12, 0x60, 0xe0);
701 if (!(data
[2] & 0x40)) {
702 priv
->has_lock
= false;
706 priv
->has_lock
= true;
707 tuner_dbg("tuner has lock at frequency %d kHz\n", freq
);
709 /* set pll autotune = 8kHz */
710 rc
= r820t_write_reg_mask(priv
, 0x1a, 0x08, 0x08);
715 static int r820t_sysfreq_sel(struct r820t_priv
*priv
, u32 freq
,
716 enum v4l2_tuner_type type
,
721 u8 mixer_top
, lna_top
, cp_cur
, div_buf_cur
, lna_vth_l
, mixer_vth_l
;
722 u8 air_cable1_in
, cable2_in
, pre_dect
, lna_discharge
, filter_cur
;
724 tuner_dbg("adjusting tuner parameters for the standard\n");
728 if ((freq
== 506000000) || (freq
== 666000000) ||
729 (freq
== 818000000)) {
730 mixer_top
= 0x14; /* mixer top:14 , top-1, low-discharge */
731 lna_top
= 0xe5; /* detect bw 3, lna top:4, predet top:2 */
732 cp_cur
= 0x28; /* 101, 0.2 */
733 div_buf_cur
= 0x20; /* 10, 200u */
735 mixer_top
= 0x24; /* mixer top:13 , top-1, low-discharge */
736 lna_top
= 0xe5; /* detect bw 3, lna top:4, predet top:2 */
737 cp_cur
= 0x38; /* 111, auto */
738 div_buf_cur
= 0x30; /* 11, 150u */
740 lna_vth_l
= 0x53; /* lna vth 0.84 , vtl 0.64 */
741 mixer_vth_l
= 0x75; /* mixer vth 1.04, vtl 0.84 */
742 air_cable1_in
= 0x00;
746 filter_cur
= 0x40; /* 10, low */
749 mixer_top
= 0x24; /* mixer top:13 , top-1, low-discharge */
750 lna_top
= 0xe5; /* detect bw 3, lna top:4, predet top:2 */
751 lna_vth_l
= 0x53; /* lna vth 0.84 , vtl 0.64 */
752 mixer_vth_l
= 0x75; /* mixer vth 1.04, vtl 0.84 */
753 air_cable1_in
= 0x00;
757 cp_cur
= 0x38; /* 111, auto */
758 div_buf_cur
= 0x30; /* 11, 150u */
759 filter_cur
= 0x40; /* 10, low */
762 mixer_top
= 0x24; /* mixer top:13 , top-1, low-discharge */
763 lna_top
= 0xe5; /* detect bw 3, lna top:4, predet top:2 */
764 lna_vth_l
= 0x75; /* lna vth 1.04 , vtl 0.84 */
765 mixer_vth_l
= 0x75; /* mixer vth 1.04, vtl 0.84 */
766 air_cable1_in
= 0x00;
770 cp_cur
= 0x38; /* 111, auto */
771 div_buf_cur
= 0x30; /* 11, 150u */
772 filter_cur
= 0x40; /* 10, low */
774 default: /* DVB-T 8M */
775 mixer_top
= 0x24; /* mixer top:13 , top-1, low-discharge */
776 lna_top
= 0xe5; /* detect bw 3, lna top:4, predet top:2 */
777 lna_vth_l
= 0x53; /* lna vth 0.84 , vtl 0.64 */
778 mixer_vth_l
= 0x75; /* mixer vth 1.04, vtl 0.84 */
779 air_cable1_in
= 0x00;
783 cp_cur
= 0x38; /* 111, auto */
784 div_buf_cur
= 0x30; /* 11, 150u */
785 filter_cur
= 0x40; /* 10, low */
789 if (priv
->cfg
->use_diplexer
&&
790 ((priv
->cfg
->rafael_chip
== CHIP_R820T
) ||
791 (priv
->cfg
->rafael_chip
== CHIP_R828S
) ||
792 (priv
->cfg
->rafael_chip
== CHIP_R820C
))) {
794 air_cable1_in
= 0x00;
796 air_cable1_in
= 0x60;
801 if (priv
->cfg
->use_predetect
) {
802 rc
= r820t_write_reg_mask(priv
, 0x06, pre_dect
, 0x40);
807 rc
= r820t_write_reg_mask(priv
, 0x1d, lna_top
, 0xc7);
810 rc
= r820t_write_reg_mask(priv
, 0x1c, mixer_top
, 0xf8);
813 rc
= r820t_write_reg(priv
, 0x0d, lna_vth_l
);
816 rc
= r820t_write_reg(priv
, 0x0e, mixer_vth_l
);
820 /* Air-IN only for Astrometa */
821 rc
= r820t_write_reg_mask(priv
, 0x05, air_cable1_in
, 0x60);
824 rc
= r820t_write_reg_mask(priv
, 0x06, cable2_in
, 0x08);
828 rc
= r820t_write_reg_mask(priv
, 0x11, cp_cur
, 0x38);
831 rc
= r820t_write_reg_mask(priv
, 0x17, div_buf_cur
, 0x30);
834 rc
= r820t_write_reg_mask(priv
, 0x0a, filter_cur
, 0x60);
838 * Original driver initializes regs 0x05 and 0x06 with the
839 * same value again on this point. Probably, it is just an
847 tuner_dbg("adjusting LNA parameters\n");
848 if (type
!= V4L2_TUNER_ANALOG_TV
) {
849 /* LNA TOP: lowest */
850 rc
= r820t_write_reg_mask(priv
, 0x1d, 0, 0x38);
855 rc
= r820t_write_reg_mask(priv
, 0x1c, 0, 0x04);
859 /* 0: PRE_DECT off */
860 rc
= r820t_write_reg_mask(priv
, 0x06, 0, 0x40);
865 rc
= r820t_write_reg_mask(priv
, 0x1a, 0x30, 0x30);
871 /* write LNA TOP = 3 */
872 rc
= r820t_write_reg_mask(priv
, 0x1d, 0x18, 0x38);
877 * write discharge mode
878 * FIXME: IMHO, the mask here is wrong, but it matches
879 * what's there at the original driver
881 rc
= r820t_write_reg_mask(priv
, 0x1c, mixer_top
, 0x04);
885 /* LNA discharge current */
886 rc
= r820t_write_reg_mask(priv
, 0x1e, lna_discharge
, 0x1f);
891 rc
= r820t_write_reg_mask(priv
, 0x1a, 0x20, 0x30);
896 rc
= r820t_write_reg_mask(priv
, 0x06, 0, 0x40);
901 rc
= r820t_write_reg_mask(priv
, 0x1d, lna_top
, 0x38);
906 * write discharge mode
907 * FIXME: IMHO, the mask here is wrong, but it matches
908 * what's there at the original driver
910 rc
= r820t_write_reg_mask(priv
, 0x1c, mixer_top
, 0x04);
914 /* LNA discharge current */
915 rc
= r820t_write_reg_mask(priv
, 0x1e, lna_discharge
, 0x1f);
919 /* agc clk 1Khz, external det1 cap 1u */
920 rc
= r820t_write_reg_mask(priv
, 0x1a, 0x00, 0x30);
924 rc
= r820t_write_reg_mask(priv
, 0x10, 0x00, 0x04);
931 static int r820t_set_tv_standard(struct r820t_priv
*priv
,
933 enum v4l2_tuner_type type
,
934 v4l2_std_id std
, u32 delsys
)
938 u32 if_khz
, filt_cal_lo
;
940 u8 filt_gain
, img_r
, filt_q
, hp_cor
, ext_enable
, loop_through
;
941 u8 lt_att
, flt_ext_widest
, polyfil_cur
;
942 bool need_calibration
;
944 tuner_dbg("selecting the delivery system\n");
946 if (delsys
== SYS_ISDBT
) {
949 filt_gain
= 0x10; /* +3db, 6mhz on */
950 img_r
= 0x00; /* image negative */
951 filt_q
= 0x10; /* r10[4]:low q(1'b1) */
952 hp_cor
= 0x6a; /* 1.7m disable, +2cap, 1.25mhz */
953 ext_enable
= 0x40; /* r30[6], ext enable; r30[5]:0 ext at lna max */
954 loop_through
= 0x00; /* r5[7], lt on */
955 lt_att
= 0x00; /* r31[7], lt att enable */
956 flt_ext_widest
= 0x00; /* r15[7]: flt_ext_wide off */
957 polyfil_cur
= 0x60; /* r25[6:5]:min */
961 filt_cal_lo
= 56000; /* 52000->56000 */
962 filt_gain
= 0x10; /* +3db, 6mhz on */
963 img_r
= 0x00; /* image negative */
964 filt_q
= 0x10; /* r10[4]:low q(1'b1) */
965 hp_cor
= 0x6b; /* 1.7m disable, +2cap, 1.0mhz */
966 ext_enable
= 0x60; /* r30[6]=1 ext enable; r30[5]:1 ext at lna max-1 */
967 loop_through
= 0x00; /* r5[7], lt on */
968 lt_att
= 0x00; /* r31[7], lt att enable */
969 flt_ext_widest
= 0x00; /* r15[7]: flt_ext_wide off */
970 polyfil_cur
= 0x60; /* r25[6:5]:min */
971 } else if (bw
== 7) {
974 * There are two 7 MHz tables defined on the original
975 * driver, but just the second one seems to be visible
976 * by rtl2832. Keep this one here commented, as it
977 * might be needed in the future
982 filt_gain
= 0x10; /* +3db, 6mhz on */
983 img_r
= 0x00; /* image negative */
984 filt_q
= 0x10; /* r10[4]:low q(1'b1) */
985 hp_cor
= 0x2b; /* 1.7m disable, +1cap, 1.0mhz */
986 ext_enable
= 0x60; /* r30[6]=1 ext enable; r30[5]:1 ext at lna max-1 */
987 loop_through
= 0x00; /* r5[7], lt on */
988 lt_att
= 0x00; /* r31[7], lt att enable */
989 flt_ext_widest
= 0x00; /* r15[7]: flt_ext_wide off */
990 polyfil_cur
= 0x60; /* r25[6:5]:min */
992 /* 7 MHz, second table */
995 filt_gain
= 0x10; /* +3db, 6mhz on */
996 img_r
= 0x00; /* image negative */
997 filt_q
= 0x10; /* r10[4]:low q(1'b1) */
998 hp_cor
= 0x2a; /* 1.7m disable, +1cap, 1.25mhz */
999 ext_enable
= 0x60; /* r30[6]=1 ext enable; r30[5]:1 ext at lna max-1 */
1000 loop_through
= 0x00; /* r5[7], lt on */
1001 lt_att
= 0x00; /* r31[7], lt att enable */
1002 flt_ext_widest
= 0x00; /* r15[7]: flt_ext_wide off */
1003 polyfil_cur
= 0x60; /* r25[6:5]:min */
1006 filt_cal_lo
= 68500;
1007 filt_gain
= 0x10; /* +3db, 6mhz on */
1008 img_r
= 0x00; /* image negative */
1009 filt_q
= 0x10; /* r10[4]:low q(1'b1) */
1010 hp_cor
= 0x0b; /* 1.7m disable, +0cap, 1.0mhz */
1011 ext_enable
= 0x60; /* r30[6]=1 ext enable; r30[5]:1 ext at lna max-1 */
1012 loop_through
= 0x00; /* r5[7], lt on */
1013 lt_att
= 0x00; /* r31[7], lt att enable */
1014 flt_ext_widest
= 0x00; /* r15[7]: flt_ext_wide off */
1015 polyfil_cur
= 0x60; /* r25[6:5]:min */
1019 /* Initialize the shadow registers */
1020 memcpy(priv
->regs
, r820t_init_array
, sizeof(r820t_init_array
));
1022 /* Init Flag & Xtal_check Result */
1024 val
= 1 | priv
->xtal_cap_sel
<< 1;
1027 rc
= r820t_write_reg_mask(priv
, 0x0c, val
, 0x0f);
1032 rc
= r820t_write_reg_mask(priv
, 0x13, VER_NUM
, 0x3f);
1036 /* for LT Gain test */
1037 if (type
!= V4L2_TUNER_ANALOG_TV
) {
1038 rc
= r820t_write_reg_mask(priv
, 0x1d, 0x00, 0x38);
1041 usleep_range(1000, 2000);
1043 priv
->int_freq
= if_khz
* 1000;
1045 /* Check if standard changed. If so, filter calibration is needed */
1046 if (type
!= priv
->type
)
1047 need_calibration
= true;
1048 else if ((type
== V4L2_TUNER_ANALOG_TV
) && (std
!= priv
->std
))
1049 need_calibration
= true;
1050 else if ((type
== V4L2_TUNER_DIGITAL_TV
) &&
1051 ((delsys
!= priv
->delsys
) || bw
!= priv
->bw
))
1052 need_calibration
= true;
1054 need_calibration
= false;
1056 if (need_calibration
) {
1057 tuner_dbg("calibrating the tuner\n");
1058 for (i
= 0; i
< 2; i
++) {
1060 rc
= r820t_write_reg_mask(priv
, 0x0b, hp_cor
, 0x60);
1064 /* set cali clk =on */
1065 rc
= r820t_write_reg_mask(priv
, 0x0f, 0x04, 0x04);
1069 /* X'tal cap 0pF for PLL */
1070 rc
= r820t_write_reg_mask(priv
, 0x10, 0x00, 0x03);
1074 rc
= r820t_set_pll(priv
, type
, filt_cal_lo
* 1000);
1075 if (rc
< 0 || !priv
->has_lock
)
1079 rc
= r820t_write_reg_mask(priv
, 0x0b, 0x10, 0x10);
1083 usleep_range(1000, 2000);
1086 rc
= r820t_write_reg_mask(priv
, 0x0b, 0x00, 0x10);
1090 /* set cali clk =off */
1091 rc
= r820t_write_reg_mask(priv
, 0x0f, 0x00, 0x04);
1095 /* Check if calibration worked */
1096 rc
= r820t_read(priv
, 0x00, data
, sizeof(data
));
1100 priv
->fil_cal_code
= data
[4] & 0x0f;
1101 if (priv
->fil_cal_code
&& priv
->fil_cal_code
!= 0x0f)
1105 if (priv
->fil_cal_code
== 0x0f)
1106 priv
->fil_cal_code
= 0;
1109 rc
= r820t_write_reg_mask(priv
, 0x0a,
1110 filt_q
| priv
->fil_cal_code
, 0x1f);
1114 /* Set BW, Filter_gain, & HP corner */
1115 rc
= r820t_write_reg_mask(priv
, 0x0b, hp_cor
, 0xef);
1121 rc
= r820t_write_reg_mask(priv
, 0x07, img_r
, 0x80);
1125 /* Set filt_3dB, V6MHz */
1126 rc
= r820t_write_reg_mask(priv
, 0x06, filt_gain
, 0x30);
1130 /* channel filter extension */
1131 rc
= r820t_write_reg_mask(priv
, 0x1e, ext_enable
, 0x60);
1136 rc
= r820t_write_reg_mask(priv
, 0x05, loop_through
, 0x80);
1140 /* Loop through attenuation */
1141 rc
= r820t_write_reg_mask(priv
, 0x1f, lt_att
, 0x80);
1145 /* filter extension widest */
1146 rc
= r820t_write_reg_mask(priv
, 0x0f, flt_ext_widest
, 0x80);
1150 /* RF poly filter current */
1151 rc
= r820t_write_reg_mask(priv
, 0x19, polyfil_cur
, 0x60);
1155 /* Store current standard. If it changes, re-calibrate the tuner */
1156 priv
->delsys
= delsys
;
1164 static int r820t_read_gain(struct r820t_priv
*priv
)
1169 rc
= r820t_read(priv
, 0x00, data
, sizeof(data
));
1173 return ((data
[3] & 0x0f) << 1) + ((data
[3] & 0xf0) >> 4);
1177 /* FIXME: This routine requires more testing */
1178 static int r820t_set_gain_mode(struct r820t_priv
*priv
,
1179 bool set_manual_gain
,
1184 if (set_manual_gain
) {
1185 int i
, total_gain
= 0;
1186 uint8_t mix_index
= 0, lna_index
= 0;
1190 rc
= r820t_write_reg_mask(priv
, 0x05, 0x10, 0x10);
1194 /* Mixer auto off */
1195 rc
= r820t_write_reg_mask(priv
, 0x07, 0, 0x10);
1199 rc
= r820t_read(priv
, 0x00, data
, sizeof(data
));
1203 /* set fixed VGA gain for now (16.3 dB) */
1204 rc
= r820t_write_reg_mask(priv
, 0x0c, 0x08, 0x9f);
1208 for (i
= 0; i
< 15; i
++) {
1209 if (total_gain
>= gain
)
1212 total_gain
+= r820t_lna_gain_steps
[++lna_index
];
1214 if (total_gain
>= gain
)
1217 total_gain
+= r820t_mixer_gain_steps
[++mix_index
];
1221 rc
= r820t_write_reg_mask(priv
, 0x05, lna_index
, 0x0f);
1225 /* set Mixer gain */
1226 rc
= r820t_write_reg_mask(priv
, 0x07, mix_index
, 0x0f);
1231 rc
= r820t_write_reg_mask(priv
, 0x05, 0, 0x10);
1236 rc
= r820t_write_reg_mask(priv
, 0x07, 0x10, 0x10);
1240 /* set fixed VGA gain for now (26.5 dB) */
1241 rc
= r820t_write_reg_mask(priv
, 0x0c, 0x0b, 0x9f);
1250 static int generic_set_freq(struct dvb_frontend
*fe
,
1251 u32 freq
/* in HZ */,
1253 enum v4l2_tuner_type type
,
1254 v4l2_std_id std
, u32 delsys
)
1256 struct r820t_priv
*priv
= fe
->tuner_priv
;
1260 tuner_dbg("should set frequency to %d kHz, bw %d MHz\n",
1263 rc
= r820t_set_tv_standard(priv
, bw
, type
, std
, delsys
);
1267 if ((type
== V4L2_TUNER_ANALOG_TV
) && (std
== V4L2_STD_SECAM_LC
))
1268 lo_freq
= freq
- priv
->int_freq
;
1270 lo_freq
= freq
+ priv
->int_freq
;
1272 rc
= r820t_set_mux(priv
, lo_freq
);
1276 rc
= r820t_set_pll(priv
, type
, lo_freq
);
1277 if (rc
< 0 || !priv
->has_lock
)
1280 rc
= r820t_sysfreq_sel(priv
, freq
, type
, std
, delsys
);
1284 tuner_dbg("%s: PLL locked on frequency %d Hz, gain=%d\n",
1285 __func__
, freq
, r820t_read_gain(priv
));
1290 tuner_dbg("%s: failed=%d\n", __func__
, rc
);
1295 * r820t standby logic
1298 static int r820t_standby(struct r820t_priv
*priv
)
1302 /* If device was not initialized yet, don't need to standby */
1303 if (!priv
->init_done
)
1306 rc
= r820t_write_reg(priv
, 0x06, 0xb1);
1309 rc
= r820t_write_reg(priv
, 0x05, 0x03);
1312 rc
= r820t_write_reg(priv
, 0x07, 0x3a);
1315 rc
= r820t_write_reg(priv
, 0x08, 0x40);
1318 rc
= r820t_write_reg(priv
, 0x09, 0xc0);
1321 rc
= r820t_write_reg(priv
, 0x0a, 0x36);
1324 rc
= r820t_write_reg(priv
, 0x0c, 0x35);
1327 rc
= r820t_write_reg(priv
, 0x0f, 0x68);
1330 rc
= r820t_write_reg(priv
, 0x11, 0x03);
1333 rc
= r820t_write_reg(priv
, 0x17, 0xf4);
1336 rc
= r820t_write_reg(priv
, 0x19, 0x0c);
1338 /* Force initial calibration */
1345 * r820t device init logic
1348 static int r820t_xtal_check(struct r820t_priv
*priv
)
1353 /* Initialize the shadow registers */
1354 memcpy(priv
->regs
, r820t_init_array
, sizeof(r820t_init_array
));
1356 /* cap 30pF & Drive Low */
1357 rc
= r820t_write_reg_mask(priv
, 0x10, 0x0b, 0x0b);
1361 /* set pll autotune = 128kHz */
1362 rc
= r820t_write_reg_mask(priv
, 0x1a, 0x00, 0x0c);
1366 /* set manual initial reg = 111111; */
1367 rc
= r820t_write_reg_mask(priv
, 0x13, 0x7f, 0x7f);
1372 rc
= r820t_write_reg_mask(priv
, 0x13, 0x00, 0x40);
1376 /* Try several xtal capacitor alternatives */
1377 for (i
= 0; i
< ARRAY_SIZE(r820t_xtal_capacitor
); i
++) {
1378 rc
= r820t_write_reg_mask(priv
, 0x10,
1379 r820t_xtal_capacitor
[i
][0], 0x1b);
1383 usleep_range(5000, 6000);
1385 rc
= r820t_read(priv
, 0x00, data
, sizeof(data
));
1388 if (!(data
[2] & 0x40))
1391 val
= data
[2] & 0x3f;
1393 if (priv
->cfg
->xtal
== 16000000 && (val
> 29 || val
< 23))
1400 if (i
== ARRAY_SIZE(r820t_xtal_capacitor
))
1403 return r820t_xtal_capacitor
[i
][1];
1406 static int r820t_imr_prepare(struct r820t_priv
*priv
)
1410 /* Initialize the shadow registers */
1411 memcpy(priv
->regs
, r820t_init_array
, sizeof(r820t_init_array
));
1413 /* lna off (air-in off) */
1414 rc
= r820t_write_reg_mask(priv
, 0x05, 0x20, 0x20);
1418 /* mixer gain mode = manual */
1419 rc
= r820t_write_reg_mask(priv
, 0x07, 0, 0x10);
1423 /* filter corner = lowest */
1424 rc
= r820t_write_reg_mask(priv
, 0x0a, 0x0f, 0x0f);
1428 /* filter bw=+2cap, hp=5M */
1429 rc
= r820t_write_reg_mask(priv
, 0x0b, 0x60, 0x6f);
1433 /* adc=on, vga code mode, gain = 26.5dB */
1434 rc
= r820t_write_reg_mask(priv
, 0x0c, 0x0b, 0x9f);
1439 rc
= r820t_write_reg_mask(priv
, 0x0f, 0, 0x08);
1443 /* ring power = on */
1444 rc
= r820t_write_reg_mask(priv
, 0x18, 0x10, 0x10);
1448 /* from ring = ring pll in */
1449 rc
= r820t_write_reg_mask(priv
, 0x1c, 0x02, 0x02);
1453 /* sw_pdect = det3 */
1454 rc
= r820t_write_reg_mask(priv
, 0x1e, 0x80, 0x80);
1459 rc
= r820t_write_reg_mask(priv
, 0x06, 0x20, 0x20);
1464 static int r820t_multi_read(struct r820t_priv
*priv
)
1467 u8 data
[2], min
= 0, max
= 255, sum
= 0;
1469 usleep_range(5000, 6000);
1471 for (i
= 0; i
< 6; i
++) {
1472 rc
= r820t_read(priv
, 0x00, data
, sizeof(data
));
1484 rc
= sum
- max
- min
;
1489 static int r820t_imr_cross(struct r820t_priv
*priv
,
1490 struct r820t_sect_type iq_point
[3],
1493 struct r820t_sect_type cross
[5]; /* (0,0)(0,Q-1)(0,I-1)(Q-1,0)(I-1,0) */
1494 struct r820t_sect_type tmp
;
1498 reg08
= r820t_read_cache_reg(priv
, 8) & 0xc0;
1499 reg09
= r820t_read_cache_reg(priv
, 9) & 0xc0;
1505 for (i
= 0; i
< 5; i
++) {
1508 cross
[i
].gain_x
= reg08
;
1509 cross
[i
].phase_y
= reg09
;
1512 cross
[i
].gain_x
= reg08
; /* 0 */
1513 cross
[i
].phase_y
= reg09
+ 1; /* Q-1 */
1516 cross
[i
].gain_x
= reg08
; /* 0 */
1517 cross
[i
].phase_y
= (reg09
| 0x20) + 1; /* I-1 */
1520 cross
[i
].gain_x
= reg08
+ 1; /* Q-1 */
1521 cross
[i
].phase_y
= reg09
;
1524 cross
[i
].gain_x
= (reg08
| 0x20) + 1; /* I-1 */
1525 cross
[i
].phase_y
= reg09
;
1528 rc
= r820t_write_reg(priv
, 0x08, cross
[i
].gain_x
);
1532 rc
= r820t_write_reg(priv
, 0x09, cross
[i
].phase_y
);
1536 rc
= r820t_multi_read(priv
);
1540 cross
[i
].value
= rc
;
1542 if (cross
[i
].value
< tmp
.value
)
1543 memcpy(&tmp
, &cross
[i
], sizeof(tmp
));
1546 if ((tmp
.phase_y
& 0x1f) == 1) { /* y-direction */
1549 iq_point
[0] = cross
[0];
1550 iq_point
[1] = cross
[1];
1551 iq_point
[2] = cross
[2];
1552 } else { /* (0,0) or x-direction */
1555 iq_point
[0] = cross
[0];
1556 iq_point
[1] = cross
[3];
1557 iq_point
[2] = cross
[4];
1562 static void r820t_compre_cor(struct r820t_sect_type iq
[3])
1566 for (i
= 3; i
> 0; i
--) {
1567 if (iq
[0].value
> iq
[i
- 1].value
)
1568 swap(iq
[0], iq
[i
- 1]);
1572 static int r820t_compre_step(struct r820t_priv
*priv
,
1573 struct r820t_sect_type iq
[3], u8 reg
)
1576 struct r820t_sect_type tmp
;
1579 * Purpose: if (Gain<9 or Phase<9), Gain+1 or Phase+1 and compare
1581 * new < min => update to min and continue
1585 /* min value already saved in iq[0] */
1586 tmp
.phase_y
= iq
[0].phase_y
;
1587 tmp
.gain_x
= iq
[0].gain_x
;
1589 while (((tmp
.gain_x
& 0x1f) < IMR_TRIAL
) &&
1590 ((tmp
.phase_y
& 0x1f) < IMR_TRIAL
)) {
1596 rc
= r820t_write_reg(priv
, 0x08, tmp
.gain_x
);
1600 rc
= r820t_write_reg(priv
, 0x09, tmp
.phase_y
);
1604 rc
= r820t_multi_read(priv
);
1609 if (tmp
.value
<= iq
[0].value
) {
1610 iq
[0].gain_x
= tmp
.gain_x
;
1611 iq
[0].phase_y
= tmp
.phase_y
;
1612 iq
[0].value
= tmp
.value
;
1622 static int r820t_iq_tree(struct r820t_priv
*priv
,
1623 struct r820t_sect_type iq
[3],
1624 u8 fix_val
, u8 var_val
, u8 fix_reg
)
1630 * record IMC results by input gain/phase location then adjust
1631 * gain or phase positive 1 step and negtive 1 step,
1632 * both record results
1635 if (fix_reg
== 0x08)
1640 for (i
= 0; i
< 3; i
++) {
1641 rc
= r820t_write_reg(priv
, fix_reg
, fix_val
);
1645 rc
= r820t_write_reg(priv
, var_reg
, var_val
);
1649 rc
= r820t_multi_read(priv
);
1654 if (fix_reg
== 0x08) {
1655 iq
[i
].gain_x
= fix_val
;
1656 iq
[i
].phase_y
= var_val
;
1658 iq
[i
].phase_y
= fix_val
;
1659 iq
[i
].gain_x
= var_val
;
1662 if (i
== 0) { /* try right-side point */
1664 } else if (i
== 1) { /* try left-side point */
1665 /* if absolute location is 1, change I/Q direction */
1666 if ((var_val
& 0x1f) < 0x02) {
1667 tmp
= 2 - (var_val
& 0x1f);
1669 /* b[5]:I/Q selection. 0:Q-path, 1:I-path */
1670 if (var_val
& 0x20) {
1674 var_val
|= 0x20 | tmp
;
1685 static int r820t_section(struct r820t_priv
*priv
,
1686 struct r820t_sect_type
*iq_point
)
1689 struct r820t_sect_type compare_iq
[3], compare_bet
[3];
1691 /* Try X-1 column and save min result to compare_bet[0] */
1692 if (!(iq_point
->gain_x
& 0x1f))
1693 compare_iq
[0].gain_x
= ((iq_point
->gain_x
) & 0xdf) + 1; /* Q-path, Gain=1 */
1695 compare_iq
[0].gain_x
= iq_point
->gain_x
- 1; /* left point */
1696 compare_iq
[0].phase_y
= iq_point
->phase_y
;
1699 rc
= r820t_iq_tree(priv
, compare_iq
, compare_iq
[0].gain_x
,
1700 compare_iq
[0].phase_y
, 0x08);
1704 r820t_compre_cor(compare_iq
);
1706 compare_bet
[0] = compare_iq
[0];
1708 /* Try X column and save min result to compare_bet[1] */
1709 compare_iq
[0].gain_x
= iq_point
->gain_x
;
1710 compare_iq
[0].phase_y
= iq_point
->phase_y
;
1712 rc
= r820t_iq_tree(priv
, compare_iq
, compare_iq
[0].gain_x
,
1713 compare_iq
[0].phase_y
, 0x08);
1717 r820t_compre_cor(compare_iq
);
1719 compare_bet
[1] = compare_iq
[0];
1721 /* Try X+1 column and save min result to compare_bet[2] */
1722 if ((iq_point
->gain_x
& 0x1f) == 0x00)
1723 compare_iq
[0].gain_x
= ((iq_point
->gain_x
) | 0x20) + 1; /* I-path, Gain=1 */
1725 compare_iq
[0].gain_x
= iq_point
->gain_x
+ 1;
1726 compare_iq
[0].phase_y
= iq_point
->phase_y
;
1728 rc
= r820t_iq_tree(priv
, compare_iq
, compare_iq
[0].gain_x
,
1729 compare_iq
[0].phase_y
, 0x08);
1733 r820t_compre_cor(compare_iq
);
1735 compare_bet
[2] = compare_iq
[0];
1737 r820t_compre_cor(compare_bet
);
1739 *iq_point
= compare_bet
[0];
1744 static int r820t_vga_adjust(struct r820t_priv
*priv
)
1749 /* increase vga power to let image significant */
1750 for (vga_count
= 12; vga_count
< 16; vga_count
++) {
1751 rc
= r820t_write_reg_mask(priv
, 0x0c, vga_count
, 0x0f);
1755 usleep_range(10000, 11000);
1757 rc
= r820t_multi_read(priv
);
1768 static int r820t_iq(struct r820t_priv
*priv
, struct r820t_sect_type
*iq_pont
)
1770 struct r820t_sect_type compare_iq
[3];
1772 u8 x_direction
= 0; /* 1:x, 0:y */
1773 u8 dir_reg
, other_reg
;
1775 r820t_vga_adjust(priv
);
1777 rc
= r820t_imr_cross(priv
, compare_iq
, &x_direction
);
1781 if (x_direction
== 1) {
1789 /* compare and find min of 3 points. determine i/q direction */
1790 r820t_compre_cor(compare_iq
);
1792 /* increase step to find min value of this direction */
1793 rc
= r820t_compre_step(priv
, compare_iq
, dir_reg
);
1797 /* the other direction */
1798 rc
= r820t_iq_tree(priv
, compare_iq
, compare_iq
[0].gain_x
,
1799 compare_iq
[0].phase_y
, dir_reg
);
1803 /* compare and find min of 3 points. determine i/q direction */
1804 r820t_compre_cor(compare_iq
);
1806 /* increase step to find min value on this direction */
1807 rc
= r820t_compre_step(priv
, compare_iq
, other_reg
);
1811 /* check 3 points again */
1812 rc
= r820t_iq_tree(priv
, compare_iq
, compare_iq
[0].gain_x
,
1813 compare_iq
[0].phase_y
, other_reg
);
1817 r820t_compre_cor(compare_iq
);
1819 /* section-9 check */
1820 rc
= r820t_section(priv
, compare_iq
);
1822 *iq_pont
= compare_iq
[0];
1824 /* reset gain/phase control setting */
1825 rc
= r820t_write_reg_mask(priv
, 0x08, 0, 0x3f);
1829 rc
= r820t_write_reg_mask(priv
, 0x09, 0, 0x3f);
1834 static int r820t_f_imr(struct r820t_priv
*priv
, struct r820t_sect_type
*iq_pont
)
1838 r820t_vga_adjust(priv
);
1841 * search surrounding points from previous point
1842 * try (x-1), (x), (x+1) columns, and find min IMR result point
1844 rc
= r820t_section(priv
, iq_pont
);
1851 static int r820t_imr(struct r820t_priv
*priv
, unsigned imr_mem
, bool im_flag
)
1853 struct r820t_sect_type imr_point
;
1855 u32 ring_vco
, ring_freq
, ring_ref
;
1857 int reg18
, reg19
, reg1f
;
1859 if (priv
->cfg
->xtal
> 24000000)
1860 ring_ref
= priv
->cfg
->xtal
/ 2000;
1862 ring_ref
= priv
->cfg
->xtal
/ 1000;
1865 for (n
= 0; n
< 16; n
++) {
1866 if ((16 + n
) * 8 * ring_ref
>= 3100000) {
1872 reg18
= r820t_read_cache_reg(priv
, 0x18);
1873 reg19
= r820t_read_cache_reg(priv
, 0x19);
1874 reg1f
= r820t_read_cache_reg(priv
, 0x1f);
1876 reg18
&= 0xf0; /* set ring[3:0] */
1879 ring_vco
= (16 + n_ring
) * 8 * ring_ref
;
1881 reg18
&= 0xdf; /* clear ring_se23 */
1882 reg19
&= 0xfc; /* clear ring_seldiv */
1883 reg1f
&= 0xfc; /* clear ring_att */
1887 ring_freq
= ring_vco
/ 48;
1888 reg18
|= 0x20; /* ring_se23 = 1 */
1889 reg19
|= 0x03; /* ring_seldiv = 3 */
1890 reg1f
|= 0x02; /* ring_att 10 */
1893 ring_freq
= ring_vco
/ 16;
1894 reg18
|= 0x00; /* ring_se23 = 0 */
1895 reg19
|= 0x02; /* ring_seldiv = 2 */
1896 reg1f
|= 0x00; /* pw_ring 00 */
1899 ring_freq
= ring_vco
/ 8;
1900 reg18
|= 0x00; /* ring_se23 = 0 */
1901 reg19
|= 0x01; /* ring_seldiv = 1 */
1902 reg1f
|= 0x03; /* pw_ring 11 */
1905 ring_freq
= ring_vco
/ 6;
1906 reg18
|= 0x20; /* ring_se23 = 1 */
1907 reg19
|= 0x00; /* ring_seldiv = 0 */
1908 reg1f
|= 0x03; /* pw_ring 11 */
1911 ring_freq
= ring_vco
/ 4;
1912 reg18
|= 0x00; /* ring_se23 = 0 */
1913 reg19
|= 0x00; /* ring_seldiv = 0 */
1914 reg1f
|= 0x01; /* pw_ring 01 */
1917 ring_freq
= ring_vco
/ 4;
1918 reg18
|= 0x00; /* ring_se23 = 0 */
1919 reg19
|= 0x00; /* ring_seldiv = 0 */
1920 reg1f
|= 0x01; /* pw_ring 01 */
1925 /* write pw_ring, n_ring, ringdiv2 registers */
1927 /* n_ring, ring_se23 */
1928 rc
= r820t_write_reg(priv
, 0x18, reg18
);
1933 rc
= r820t_write_reg(priv
, 0x19, reg19
);
1938 rc
= r820t_write_reg(priv
, 0x1f, reg1f
);
1942 /* mux input freq ~ rf_in freq */
1943 rc
= r820t_set_mux(priv
, (ring_freq
- 5300) * 1000);
1947 rc
= r820t_set_pll(priv
, V4L2_TUNER_DIGITAL_TV
,
1948 (ring_freq
- 5300) * 1000);
1949 if (!priv
->has_lock
)
1955 rc
= r820t_iq(priv
, &imr_point
);
1957 imr_point
.gain_x
= priv
->imr_data
[3].gain_x
;
1958 imr_point
.phase_y
= priv
->imr_data
[3].phase_y
;
1959 imr_point
.value
= priv
->imr_data
[3].value
;
1961 rc
= r820t_f_imr(priv
, &imr_point
);
1966 /* save IMR value */
1969 priv
->imr_data
[0].gain_x
= imr_point
.gain_x
;
1970 priv
->imr_data
[0].phase_y
= imr_point
.phase_y
;
1971 priv
->imr_data
[0].value
= imr_point
.value
;
1974 priv
->imr_data
[1].gain_x
= imr_point
.gain_x
;
1975 priv
->imr_data
[1].phase_y
= imr_point
.phase_y
;
1976 priv
->imr_data
[1].value
= imr_point
.value
;
1979 priv
->imr_data
[2].gain_x
= imr_point
.gain_x
;
1980 priv
->imr_data
[2].phase_y
= imr_point
.phase_y
;
1981 priv
->imr_data
[2].value
= imr_point
.value
;
1984 priv
->imr_data
[3].gain_x
= imr_point
.gain_x
;
1985 priv
->imr_data
[3].phase_y
= imr_point
.phase_y
;
1986 priv
->imr_data
[3].value
= imr_point
.value
;
1989 priv
->imr_data
[4].gain_x
= imr_point
.gain_x
;
1990 priv
->imr_data
[4].phase_y
= imr_point
.phase_y
;
1991 priv
->imr_data
[4].value
= imr_point
.value
;
1994 priv
->imr_data
[4].gain_x
= imr_point
.gain_x
;
1995 priv
->imr_data
[4].phase_y
= imr_point
.phase_y
;
1996 priv
->imr_data
[4].value
= imr_point
.value
;
2003 static int r820t_imr_callibrate(struct r820t_priv
*priv
)
2008 if (priv
->init_done
)
2011 /* Detect Xtal capacitance */
2012 if ((priv
->cfg
->rafael_chip
== CHIP_R820T
) ||
2013 (priv
->cfg
->rafael_chip
== CHIP_R828S
) ||
2014 (priv
->cfg
->rafael_chip
== CHIP_R820C
)) {
2015 priv
->xtal_cap_sel
= XTAL_HIGH_CAP_0P
;
2017 /* Initialize registers */
2018 rc
= r820t_write(priv
, 0x05,
2019 r820t_init_array
, sizeof(r820t_init_array
));
2022 for (i
= 0; i
< 3; i
++) {
2023 rc
= r820t_xtal_check(priv
);
2026 if (!i
|| rc
> xtal_cap
)
2029 priv
->xtal_cap_sel
= xtal_cap
;
2033 * Disables IMR callibration. That emulates the same behaviour
2034 * as what is done by rtl-sdr userspace library. Useful for testing
2037 priv
->init_done
= true;
2042 /* Initialize registers */
2043 rc
= r820t_write(priv
, 0x05,
2044 r820t_init_array
, sizeof(r820t_init_array
));
2048 rc
= r820t_imr_prepare(priv
);
2052 rc
= r820t_imr(priv
, 3, true);
2055 rc
= r820t_imr(priv
, 1, false);
2058 rc
= r820t_imr(priv
, 0, false);
2061 rc
= r820t_imr(priv
, 2, false);
2064 rc
= r820t_imr(priv
, 4, false);
2068 priv
->init_done
= true;
2069 priv
->imr_done
= true;
2075 /* Not used, for now */
2076 static int r820t_gpio(struct r820t_priv
*priv
, bool enable
)
2078 return r820t_write_reg_mask(priv
, 0x0f, enable
? 1 : 0, 0x01);
2083 * r820t frontend operations and tuner attach code
2085 * All driver locks and i2c control are only in this part of the code
2088 static int r820t_init(struct dvb_frontend
*fe
)
2090 struct r820t_priv
*priv
= fe
->tuner_priv
;
2093 tuner_dbg("%s:\n", __func__
);
2095 mutex_lock(&priv
->lock
);
2096 if (fe
->ops
.i2c_gate_ctrl
)
2097 fe
->ops
.i2c_gate_ctrl(fe
, 1);
2099 rc
= r820t_imr_callibrate(priv
);
2103 /* Initialize registers */
2104 rc
= r820t_write(priv
, 0x05,
2105 r820t_init_array
, sizeof(r820t_init_array
));
2108 if (fe
->ops
.i2c_gate_ctrl
)
2109 fe
->ops
.i2c_gate_ctrl(fe
, 0);
2110 mutex_unlock(&priv
->lock
);
2113 tuner_dbg("%s: failed=%d\n", __func__
, rc
);
2117 static int r820t_sleep(struct dvb_frontend
*fe
)
2119 struct r820t_priv
*priv
= fe
->tuner_priv
;
2122 tuner_dbg("%s:\n", __func__
);
2124 mutex_lock(&priv
->lock
);
2125 if (fe
->ops
.i2c_gate_ctrl
)
2126 fe
->ops
.i2c_gate_ctrl(fe
, 1);
2128 rc
= r820t_standby(priv
);
2130 if (fe
->ops
.i2c_gate_ctrl
)
2131 fe
->ops
.i2c_gate_ctrl(fe
, 0);
2132 mutex_unlock(&priv
->lock
);
2134 tuner_dbg("%s: failed=%d\n", __func__
, rc
);
2138 static int r820t_set_analog_freq(struct dvb_frontend
*fe
,
2139 struct analog_parameters
*p
)
2141 struct r820t_priv
*priv
= fe
->tuner_priv
;
2145 tuner_dbg("%s called\n", __func__
);
2147 /* if std is not defined, choose one */
2149 p
->std
= V4L2_STD_MN
;
2151 if ((p
->std
== V4L2_STD_PAL_M
) || (p
->std
== V4L2_STD_NTSC
))
2156 mutex_lock(&priv
->lock
);
2157 if (fe
->ops
.i2c_gate_ctrl
)
2158 fe
->ops
.i2c_gate_ctrl(fe
, 1);
2160 rc
= generic_set_freq(fe
, 62500l * p
->frequency
, bw
,
2161 V4L2_TUNER_ANALOG_TV
, p
->std
, SYS_UNDEFINED
);
2163 if (fe
->ops
.i2c_gate_ctrl
)
2164 fe
->ops
.i2c_gate_ctrl(fe
, 0);
2165 mutex_unlock(&priv
->lock
);
2170 static int r820t_set_params(struct dvb_frontend
*fe
)
2172 struct r820t_priv
*priv
= fe
->tuner_priv
;
2173 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
2177 tuner_dbg("%s: delivery_system=%d frequency=%d bandwidth_hz=%d\n",
2178 __func__
, c
->delivery_system
, c
->frequency
, c
->bandwidth_hz
);
2180 mutex_lock(&priv
->lock
);
2181 if (fe
->ops
.i2c_gate_ctrl
)
2182 fe
->ops
.i2c_gate_ctrl(fe
, 1);
2184 bw
= (c
->bandwidth_hz
+ 500000) / 1000000;
2188 rc
= generic_set_freq(fe
, c
->frequency
, bw
,
2189 V4L2_TUNER_DIGITAL_TV
, 0, c
->delivery_system
);
2191 if (fe
->ops
.i2c_gate_ctrl
)
2192 fe
->ops
.i2c_gate_ctrl(fe
, 0);
2193 mutex_unlock(&priv
->lock
);
2196 tuner_dbg("%s: failed=%d\n", __func__
, rc
);
2200 static int r820t_signal(struct dvb_frontend
*fe
, u16
*strength
)
2202 struct r820t_priv
*priv
= fe
->tuner_priv
;
2205 mutex_lock(&priv
->lock
);
2206 if (fe
->ops
.i2c_gate_ctrl
)
2207 fe
->ops
.i2c_gate_ctrl(fe
, 1);
2209 if (priv
->has_lock
) {
2210 rc
= r820t_read_gain(priv
);
2214 /* A higher gain at LNA means a lower signal strength */
2215 *strength
= (45 - rc
) << 4 | 0xff;
2216 if (*strength
== 0xff)
2223 if (fe
->ops
.i2c_gate_ctrl
)
2224 fe
->ops
.i2c_gate_ctrl(fe
, 0);
2225 mutex_unlock(&priv
->lock
);
2227 tuner_dbg("%s: %s, gain=%d strength=%d\n",
2229 priv
->has_lock
? "PLL locked" : "no signal",
2235 static int r820t_get_if_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
2237 struct r820t_priv
*priv
= fe
->tuner_priv
;
2239 tuner_dbg("%s:\n", __func__
);
2241 *frequency
= priv
->int_freq
;
2246 static int r820t_release(struct dvb_frontend
*fe
)
2248 struct r820t_priv
*priv
= fe
->tuner_priv
;
2250 tuner_dbg("%s:\n", __func__
);
2252 mutex_lock(&r820t_list_mutex
);
2255 hybrid_tuner_release_state(priv
);
2257 mutex_unlock(&r820t_list_mutex
);
2259 fe
->tuner_priv
= NULL
;
2264 static const struct dvb_tuner_ops r820t_tuner_ops
= {
2266 .name
= "Rafael Micro R820T",
2267 .frequency_min
= 42000000,
2268 .frequency_max
= 1002000000,
2271 .release
= r820t_release
,
2272 .sleep
= r820t_sleep
,
2273 .set_params
= r820t_set_params
,
2274 .set_analog_params
= r820t_set_analog_freq
,
2275 .get_if_frequency
= r820t_get_if_frequency
,
2276 .get_rf_strength
= r820t_signal
,
2279 struct dvb_frontend
*r820t_attach(struct dvb_frontend
*fe
,
2280 struct i2c_adapter
*i2c
,
2281 const struct r820t_config
*cfg
)
2283 struct r820t_priv
*priv
;
2288 mutex_lock(&r820t_list_mutex
);
2290 instance
= hybrid_tuner_request_state(struct r820t_priv
, priv
,
2291 hybrid_tuner_instance_list
,
2296 /* memory allocation failure */
2300 /* new tuner instance */
2303 mutex_init(&priv
->lock
);
2305 fe
->tuner_priv
= priv
;
2308 /* existing tuner instance */
2309 fe
->tuner_priv
= priv
;
2313 if (fe
->ops
.i2c_gate_ctrl
)
2314 fe
->ops
.i2c_gate_ctrl(fe
, 1);
2316 /* check if the tuner is there */
2317 rc
= r820t_read(priv
, 0x00, data
, sizeof(data
));
2321 rc
= r820t_sleep(fe
);
2325 tuner_info("Rafael Micro r820t successfully identified\n");
2327 if (fe
->ops
.i2c_gate_ctrl
)
2328 fe
->ops
.i2c_gate_ctrl(fe
, 0);
2330 mutex_unlock(&r820t_list_mutex
);
2332 memcpy(&fe
->ops
.tuner_ops
, &r820t_tuner_ops
,
2333 sizeof(struct dvb_tuner_ops
));
2337 if (fe
->ops
.i2c_gate_ctrl
)
2338 fe
->ops
.i2c_gate_ctrl(fe
, 0);
2341 mutex_unlock(&r820t_list_mutex
);
2343 tuner_info("%s: failed=%d\n", __func__
, rc
);
2347 EXPORT_SYMBOL_GPL(r820t_attach
);
2349 MODULE_DESCRIPTION("Rafael Micro r820t silicon tuner driver");
2350 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
2351 MODULE_LICENSE("GPL");