2 NXP TDA10048HN DVB OFDM demodulator driver
4 Copyright (C) 2009 Steven Toth <stoth@kernellabs.com>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/kernel.h>
23 #include <linux/init.h>
24 #include <linux/module.h>
25 #include <linux/string.h>
26 #include <linux/slab.h>
27 #include <linux/delay.h>
28 #include <linux/math64.h>
29 #include <asm/div64.h>
30 #include "dvb_frontend.h"
34 #define TDA10048_DEFAULT_FIRMWARE "dvb-fe-tda10048-1.0.fw"
35 #define TDA10048_DEFAULT_FIRMWARE_SIZE 24878
37 /* Register name definitions */
38 #define TDA10048_IDENTITY 0x00
39 #define TDA10048_VERSION 0x01
40 #define TDA10048_DSP_CODE_CPT 0x0C
41 #define TDA10048_DSP_CODE_IN 0x0E
42 #define TDA10048_IN_CONF1 0x10
43 #define TDA10048_IN_CONF2 0x11
44 #define TDA10048_IN_CONF3 0x12
45 #define TDA10048_OUT_CONF1 0x14
46 #define TDA10048_OUT_CONF2 0x15
47 #define TDA10048_OUT_CONF3 0x16
48 #define TDA10048_AUTO 0x18
49 #define TDA10048_SYNC_STATUS 0x1A
50 #define TDA10048_CONF_C4_1 0x1E
51 #define TDA10048_CONF_C4_2 0x1F
52 #define TDA10048_CODE_IN_RAM 0x20
53 #define TDA10048_CHANNEL_INFO1_R 0x22
54 #define TDA10048_CHANNEL_INFO2_R 0x23
55 #define TDA10048_CHANNEL_INFO1 0x24
56 #define TDA10048_CHANNEL_INFO2 0x25
57 #define TDA10048_TIME_ERROR_R 0x26
58 #define TDA10048_TIME_ERROR 0x27
59 #define TDA10048_FREQ_ERROR_LSB_R 0x28
60 #define TDA10048_FREQ_ERROR_MSB_R 0x29
61 #define TDA10048_FREQ_ERROR_LSB 0x2A
62 #define TDA10048_FREQ_ERROR_MSB 0x2B
63 #define TDA10048_IT_SEL 0x30
64 #define TDA10048_IT_STAT 0x32
65 #define TDA10048_DSP_AD_LSB 0x3C
66 #define TDA10048_DSP_AD_MSB 0x3D
67 #define TDA10048_DSP_REG_LSB 0x3E
68 #define TDA10048_DSP_REG_MSB 0x3F
69 #define TDA10048_CONF_TRISTATE1 0x44
70 #define TDA10048_CONF_TRISTATE2 0x45
71 #define TDA10048_CONF_POLARITY 0x46
72 #define TDA10048_GPIO_SP_DS0 0x48
73 #define TDA10048_GPIO_SP_DS1 0x49
74 #define TDA10048_GPIO_SP_DS2 0x4A
75 #define TDA10048_GPIO_SP_DS3 0x4B
76 #define TDA10048_GPIO_OUT_SEL 0x4C
77 #define TDA10048_GPIO_SELECT 0x4D
78 #define TDA10048_IC_MODE 0x4E
79 #define TDA10048_CONF_XO 0x50
80 #define TDA10048_CONF_PLL1 0x51
81 #define TDA10048_CONF_PLL2 0x52
82 #define TDA10048_CONF_PLL3 0x53
83 #define TDA10048_CONF_ADC 0x54
84 #define TDA10048_CONF_ADC_2 0x55
85 #define TDA10048_CONF_C1_1 0x60
86 #define TDA10048_CONF_C1_3 0x62
87 #define TDA10048_AGC_CONF 0x70
88 #define TDA10048_AGC_THRESHOLD_LSB 0x72
89 #define TDA10048_AGC_THRESHOLD_MSB 0x73
90 #define TDA10048_AGC_RENORM 0x74
91 #define TDA10048_AGC_GAINS 0x76
92 #define TDA10048_AGC_TUN_MIN 0x78
93 #define TDA10048_AGC_TUN_MAX 0x79
94 #define TDA10048_AGC_IF_MIN 0x7A
95 #define TDA10048_AGC_IF_MAX 0x7B
96 #define TDA10048_AGC_TUN_LEVEL 0x7E
97 #define TDA10048_AGC_IF_LEVEL 0x7F
98 #define TDA10048_DIG_AGC_LEVEL 0x81
99 #define TDA10048_FREQ_PHY2_LSB 0x86
100 #define TDA10048_FREQ_PHY2_MSB 0x87
101 #define TDA10048_TIME_INVWREF_LSB 0x88
102 #define TDA10048_TIME_INVWREF_MSB 0x89
103 #define TDA10048_TIME_WREF_LSB 0x8A
104 #define TDA10048_TIME_WREF_MID1 0x8B
105 #define TDA10048_TIME_WREF_MID2 0x8C
106 #define TDA10048_TIME_WREF_MSB 0x8D
107 #define TDA10048_NP_OUT 0xA2
108 #define TDA10048_CELL_ID_LSB 0xA4
109 #define TDA10048_CELL_ID_MSB 0xA5
110 #define TDA10048_EXTTPS_ODD 0xAA
111 #define TDA10048_EXTTPS_EVEN 0xAB
112 #define TDA10048_TPS_LENGTH 0xAC
113 #define TDA10048_FREE_REG_1 0xB2
114 #define TDA10048_FREE_REG_2 0xB3
115 #define TDA10048_CONF_C3_1 0xC0
116 #define TDA10048_CVBER_CTRL 0xC2
117 #define TDA10048_CBER_NMAX_LSB 0xC4
118 #define TDA10048_CBER_NMAX_MSB 0xC5
119 #define TDA10048_CBER_LSB 0xC6
120 #define TDA10048_CBER_MSB 0xC7
121 #define TDA10048_VBER_LSB 0xC8
122 #define TDA10048_VBER_MID 0xC9
123 #define TDA10048_VBER_MSB 0xCA
124 #define TDA10048_CVBER_LUT 0xCC
125 #define TDA10048_UNCOR_CTRL 0xCD
126 #define TDA10048_UNCOR_CPT_LSB 0xCE
127 #define TDA10048_UNCOR_CPT_MSB 0xCF
128 #define TDA10048_SOFT_IT_C3 0xD6
129 #define TDA10048_CONF_TS2 0xE0
130 #define TDA10048_CONF_TS1 0xE1
132 static unsigned int debug
;
134 #define dprintk(level, fmt, arg...)\
135 do { if (debug >= level)\
136 printk(KERN_DEBUG "tda10048: " fmt, ## arg);\
139 struct tda10048_state
{
141 struct i2c_adapter
*i2c
;
143 /* We'll cache and update the attach config settings */
144 struct tda10048_config config
;
145 struct dvb_frontend frontend
;
156 enum fe_bandwidth bandwidth
;
159 static struct init_tab
{
163 { TDA10048_CONF_PLL1
, 0x08 },
164 { TDA10048_CONF_ADC_2
, 0x00 },
165 { TDA10048_CONF_C4_1
, 0x00 },
166 { TDA10048_CONF_PLL1
, 0x0f },
167 { TDA10048_CONF_PLL2
, 0x0a },
168 { TDA10048_CONF_PLL3
, 0x43 },
169 { TDA10048_FREQ_PHY2_LSB
, 0x02 },
170 { TDA10048_FREQ_PHY2_MSB
, 0x0a },
171 { TDA10048_TIME_WREF_LSB
, 0xbd },
172 { TDA10048_TIME_WREF_MID1
, 0xe4 },
173 { TDA10048_TIME_WREF_MID2
, 0xa8 },
174 { TDA10048_TIME_WREF_MSB
, 0x02 },
175 { TDA10048_TIME_INVWREF_LSB
, 0x04 },
176 { TDA10048_TIME_INVWREF_MSB
, 0x06 },
177 { TDA10048_CONF_C4_1
, 0x00 },
178 { TDA10048_CONF_C1_1
, 0xa8 },
179 { TDA10048_AGC_CONF
, 0x16 },
180 { TDA10048_CONF_C1_3
, 0x0b },
181 { TDA10048_AGC_TUN_MIN
, 0x00 },
182 { TDA10048_AGC_TUN_MAX
, 0xff },
183 { TDA10048_AGC_IF_MIN
, 0x00 },
184 { TDA10048_AGC_IF_MAX
, 0xff },
185 { TDA10048_AGC_THRESHOLD_MSB
, 0x00 },
186 { TDA10048_AGC_THRESHOLD_LSB
, 0x70 },
187 { TDA10048_CVBER_CTRL
, 0x38 },
188 { TDA10048_AGC_GAINS
, 0x12 },
189 { TDA10048_CONF_XO
, 0x00 },
190 { TDA10048_CONF_TS1
, 0x07 },
191 { TDA10048_IC_MODE
, 0x00 },
192 { TDA10048_CONF_TS2
, 0xc0 },
193 { TDA10048_CONF_TRISTATE1
, 0x21 },
194 { TDA10048_CONF_TRISTATE2
, 0x00 },
195 { TDA10048_CONF_POLARITY
, 0x00 },
196 { TDA10048_CONF_C4_2
, 0x04 },
197 { TDA10048_CONF_ADC
, 0x60 },
198 { TDA10048_CONF_ADC_2
, 0x10 },
199 { TDA10048_CONF_ADC
, 0x60 },
200 { TDA10048_CONF_ADC_2
, 0x00 },
201 { TDA10048_CONF_C1_1
, 0xa8 },
202 { TDA10048_UNCOR_CTRL
, 0x00 },
203 { TDA10048_CONF_C4_2
, 0x04 },
206 static struct pll_tab
{
211 { TDA10048_CLK_4000
, TDA10048_IF_36130
, 10, 0, 0 },
212 { TDA10048_CLK_16000
, TDA10048_IF_3300
, 10, 3, 0 },
213 { TDA10048_CLK_16000
, TDA10048_IF_3500
, 10, 3, 0 },
214 { TDA10048_CLK_16000
, TDA10048_IF_3800
, 10, 3, 0 },
215 { TDA10048_CLK_16000
, TDA10048_IF_4000
, 10, 3, 0 },
216 { TDA10048_CLK_16000
, TDA10048_IF_4300
, 10, 3, 0 },
217 { TDA10048_CLK_16000
, TDA10048_IF_36130
, 10, 3, 0 },
220 static int tda10048_writereg(struct tda10048_state
*state
, u8 reg
, u8 data
)
222 struct tda10048_config
*config
= &state
->config
;
224 u8 buf
[] = { reg
, data
};
225 struct i2c_msg msg
= {
226 .addr
= config
->demod_address
,
227 .flags
= 0, .buf
= buf
, .len
= 2 };
229 dprintk(2, "%s(reg = 0x%02x, data = 0x%02x)\n", __func__
, reg
, data
);
231 ret
= i2c_transfer(state
->i2c
, &msg
, 1);
234 printk("%s: writereg error (ret == %i)\n", __func__
, ret
);
236 return (ret
!= 1) ? -1 : 0;
239 static u8
tda10048_readreg(struct tda10048_state
*state
, u8 reg
)
241 struct tda10048_config
*config
= &state
->config
;
245 struct i2c_msg msg
[] = {
246 { .addr
= config
->demod_address
,
247 .flags
= 0, .buf
= b0
, .len
= 1 },
248 { .addr
= config
->demod_address
,
249 .flags
= I2C_M_RD
, .buf
= b1
, .len
= 1 } };
251 dprintk(2, "%s(reg = 0x%02x)\n", __func__
, reg
);
253 ret
= i2c_transfer(state
->i2c
, msg
, 2);
256 printk(KERN_ERR
"%s: readreg error (ret == %i)\n",
262 static int tda10048_writeregbulk(struct tda10048_state
*state
, u8 reg
,
263 const u8
*data
, u16 len
)
265 struct tda10048_config
*config
= &state
->config
;
266 int ret
= -EREMOTEIO
;
270 dprintk(2, "%s(%d, ?, len = %d)\n", __func__
, reg
, len
);
272 buf
= kmalloc(len
+ 1, GFP_KERNEL
);
279 memcpy(buf
+ 1, data
, len
);
281 msg
.addr
= config
->demod_address
;
286 dprintk(2, "%s(): write len = %d\n",
289 ret
= i2c_transfer(state
->i2c
, &msg
, 1);
291 printk(KERN_ERR
"%s(): writereg error err %i\n",
302 static int tda10048_set_phy2(struct dvb_frontend
*fe
, u32 sample_freq_hz
,
305 struct tda10048_state
*state
= fe
->demodulator_priv
;
308 dprintk(1, "%s()\n", __func__
);
310 if (sample_freq_hz
== 0)
313 if (if_hz
< (sample_freq_hz
/ 2)) {
314 /* PHY2 = (if2/fs) * 2^15 */
318 do_div(t
, sample_freq_hz
);
322 /* PHY2 = ((IF1-fs)/fs) * 2^15 */
323 t
= sample_freq_hz
- if_hz
;
326 do_div(t
, sample_freq_hz
);
332 tda10048_writereg(state
, TDA10048_FREQ_PHY2_LSB
, (u8
)t
);
333 tda10048_writereg(state
, TDA10048_FREQ_PHY2_MSB
, (u8
)(t
>> 8));
338 static int tda10048_set_wref(struct dvb_frontend
*fe
, u32 sample_freq_hz
,
341 struct tda10048_state
*state
= fe
->demodulator_priv
;
345 dprintk(1, "%s()\n", __func__
);
347 if (sample_freq_hz
== 0)
350 if (bw
== BANDWIDTH_6_MHZ
)
353 if (bw
== BANDWIDTH_7_MHZ
)
356 /* WREF = (B / (7 * fs)) * 2^31 */
358 /* avoid warning: this decimal constant is unsigned only in ISO C90 */
359 /* t *= 2147483648 on 32bit platforms */
362 z
= 7 * sample_freq_hz
;
367 tda10048_writereg(state
, TDA10048_TIME_WREF_LSB
, (u8
)t
);
368 tda10048_writereg(state
, TDA10048_TIME_WREF_MID1
, (u8
)(t
>> 8));
369 tda10048_writereg(state
, TDA10048_TIME_WREF_MID2
, (u8
)(t
>> 16));
370 tda10048_writereg(state
, TDA10048_TIME_WREF_MSB
, (u8
)(t
>> 24));
375 static int tda10048_set_invwref(struct dvb_frontend
*fe
, u32 sample_freq_hz
,
378 struct tda10048_state
*state
= fe
->demodulator_priv
;
382 dprintk(1, "%s()\n", __func__
);
384 if (sample_freq_hz
== 0)
387 if (bw
== BANDWIDTH_6_MHZ
)
390 if (bw
== BANDWIDTH_7_MHZ
)
393 /* INVWREF = ((7 * fs) / B) * 2^5 */
402 tda10048_writereg(state
, TDA10048_TIME_INVWREF_LSB
, (u8
)t
);
403 tda10048_writereg(state
, TDA10048_TIME_INVWREF_MSB
, (u8
)(t
>> 8));
408 static int tda10048_set_bandwidth(struct dvb_frontend
*fe
,
409 enum fe_bandwidth bw
)
411 struct tda10048_state
*state
= fe
->demodulator_priv
;
412 dprintk(1, "%s(bw=%d)\n", __func__
, bw
);
414 /* Bandwidth setting may need to be adjusted */
416 case BANDWIDTH_6_MHZ
:
417 case BANDWIDTH_7_MHZ
:
418 case BANDWIDTH_8_MHZ
:
419 tda10048_set_wref(fe
, state
->sample_freq
, bw
);
420 tda10048_set_invwref(fe
, state
->sample_freq
, bw
);
423 printk(KERN_ERR
"%s() invalid bandwidth\n", __func__
);
427 state
->bandwidth
= bw
;
432 static int tda10048_set_if(struct dvb_frontend
*fe
, enum fe_bandwidth bw
)
434 struct tda10048_state
*state
= fe
->demodulator_priv
;
435 struct tda10048_config
*config
= &state
->config
;
439 dprintk(1, "%s(bw = %d)\n", __func__
, bw
);
441 /* based on target bandwidth and clk we calculate pll factors */
443 case BANDWIDTH_6_MHZ
:
444 if_freq_khz
= config
->dtv6_if_freq_khz
;
446 case BANDWIDTH_7_MHZ
:
447 if_freq_khz
= config
->dtv7_if_freq_khz
;
449 case BANDWIDTH_8_MHZ
:
450 if_freq_khz
= config
->dtv8_if_freq_khz
;
453 printk(KERN_ERR
"%s() no default\n", __func__
);
457 for (i
= 0; i
< ARRAY_SIZE(pll_tab
); i
++) {
458 if ((pll_tab
[i
].clk_freq_khz
== config
->clk_freq_khz
) &&
459 (pll_tab
[i
].if_freq_khz
== if_freq_khz
)) {
461 state
->freq_if_hz
= pll_tab
[i
].if_freq_khz
* 1000;
462 state
->xtal_hz
= pll_tab
[i
].clk_freq_khz
* 1000;
463 state
->pll_mfactor
= pll_tab
[i
].m
;
464 state
->pll_nfactor
= pll_tab
[i
].n
;
465 state
->pll_pfactor
= pll_tab
[i
].p
;
469 if (i
== ARRAY_SIZE(pll_tab
)) {
470 printk(KERN_ERR
"%s() Incorrect attach settings\n",
475 dprintk(1, "- freq_if_hz = %d\n", state
->freq_if_hz
);
476 dprintk(1, "- xtal_hz = %d\n", state
->xtal_hz
);
477 dprintk(1, "- pll_mfactor = %d\n", state
->pll_mfactor
);
478 dprintk(1, "- pll_nfactor = %d\n", state
->pll_nfactor
);
479 dprintk(1, "- pll_pfactor = %d\n", state
->pll_pfactor
);
481 /* Calculate the sample frequency */
482 state
->sample_freq
= state
->xtal_hz
* (state
->pll_mfactor
+ 45);
483 state
->sample_freq
/= (state
->pll_nfactor
+ 1);
484 state
->sample_freq
/= (state
->pll_pfactor
+ 4);
485 dprintk(1, "- sample_freq = %d\n", state
->sample_freq
);
488 tda10048_set_phy2(fe
, state
->sample_freq
, state
->freq_if_hz
);
493 static int tda10048_firmware_upload(struct dvb_frontend
*fe
)
495 struct tda10048_state
*state
= fe
->demodulator_priv
;
496 struct tda10048_config
*config
= &state
->config
;
497 const struct firmware
*fw
;
501 u8 wlen
= config
->fwbulkwritelen
;
503 if ((wlen
!= TDA10048_BULKWRITE_200
) && (wlen
!= TDA10048_BULKWRITE_50
))
504 wlen
= TDA10048_BULKWRITE_200
;
506 /* request the firmware, this will block and timeout */
507 printk(KERN_INFO
"%s: waiting for firmware upload (%s)...\n",
509 TDA10048_DEFAULT_FIRMWARE
);
511 ret
= request_firmware(&fw
, TDA10048_DEFAULT_FIRMWARE
,
512 state
->i2c
->dev
.parent
);
514 printk(KERN_ERR
"%s: Upload failed. (file not found?)\n",
518 printk(KERN_INFO
"%s: firmware read %Zu bytes.\n",
524 if (fw
->size
!= TDA10048_DEFAULT_FIRMWARE_SIZE
) {
525 printk(KERN_ERR
"%s: firmware incorrect size\n", __func__
);
528 printk(KERN_INFO
"%s: firmware uploading\n", __func__
);
531 tda10048_writereg(state
, TDA10048_CONF_TRISTATE1
,
532 tda10048_readreg(state
, TDA10048_CONF_TRISTATE1
)
534 tda10048_writereg(state
, TDA10048_CONF_TRISTATE1
,
535 tda10048_readreg(state
, TDA10048_CONF_TRISTATE1
)
538 /* Put the demod into host download mode */
539 tda10048_writereg(state
, TDA10048_CONF_C4_1
,
540 tda10048_readreg(state
, TDA10048_CONF_C4_1
) & 0xf9);
543 tda10048_writereg(state
, TDA10048_CONF_C4_1
,
544 tda10048_readreg(state
, TDA10048_CONF_C4_1
) | 0x08);
546 /* Prepare for download */
547 tda10048_writereg(state
, TDA10048_DSP_CODE_CPT
, 0);
549 /* Download the firmware payload */
550 while (pos
< fw
->size
) {
552 if ((fw
->size
- pos
) > wlen
)
555 cnt
= fw
->size
- pos
;
557 tda10048_writeregbulk(state
, TDA10048_DSP_CODE_IN
,
558 &fw
->data
[pos
], cnt
);
564 /* Wait up to 250ms for the DSP to boot */
565 for (cnt
= 0; cnt
< 250 ; cnt
+= 10) {
569 if (tda10048_readreg(state
, TDA10048_SYNC_STATUS
)
577 release_firmware(fw
);
580 printk(KERN_INFO
"%s: firmware uploaded\n", __func__
);
583 printk(KERN_ERR
"%s: firmware upload failed\n", __func__
);
588 static int tda10048_set_inversion(struct dvb_frontend
*fe
, int inversion
)
590 struct tda10048_state
*state
= fe
->demodulator_priv
;
592 dprintk(1, "%s(%d)\n", __func__
, inversion
);
594 if (inversion
== TDA10048_INVERSION_ON
)
595 tda10048_writereg(state
, TDA10048_CONF_C1_1
,
596 tda10048_readreg(state
, TDA10048_CONF_C1_1
) | 0x20);
598 tda10048_writereg(state
, TDA10048_CONF_C1_1
,
599 tda10048_readreg(state
, TDA10048_CONF_C1_1
) & 0xdf);
604 /* Retrieve the demod settings */
605 static int tda10048_get_tps(struct tda10048_state
*state
,
606 struct dvb_ofdm_parameters
*p
)
610 /* Make sure the TPS regs are valid */
611 if (!(tda10048_readreg(state
, TDA10048_AUTO
) & 0x01))
614 val
= tda10048_readreg(state
, TDA10048_OUT_CONF2
);
615 switch ((val
& 0x60) >> 5) {
617 p
->constellation
= QPSK
;
620 p
->constellation
= QAM_16
;
623 p
->constellation
= QAM_64
;
626 switch ((val
& 0x18) >> 3) {
628 p
->hierarchy_information
= HIERARCHY_NONE
;
631 p
->hierarchy_information
= HIERARCHY_1
;
634 p
->hierarchy_information
= HIERARCHY_2
;
637 p
->hierarchy_information
= HIERARCHY_4
;
640 switch (val
& 0x07) {
642 p
->code_rate_HP
= FEC_1_2
;
645 p
->code_rate_HP
= FEC_2_3
;
648 p
->code_rate_HP
= FEC_3_4
;
651 p
->code_rate_HP
= FEC_5_6
;
654 p
->code_rate_HP
= FEC_7_8
;
658 val
= tda10048_readreg(state
, TDA10048_OUT_CONF3
);
659 switch (val
& 0x07) {
661 p
->code_rate_LP
= FEC_1_2
;
664 p
->code_rate_LP
= FEC_2_3
;
667 p
->code_rate_LP
= FEC_3_4
;
670 p
->code_rate_LP
= FEC_5_6
;
673 p
->code_rate_LP
= FEC_7_8
;
677 val
= tda10048_readreg(state
, TDA10048_OUT_CONF1
);
678 switch ((val
& 0x0c) >> 2) {
680 p
->guard_interval
= GUARD_INTERVAL_1_32
;
683 p
->guard_interval
= GUARD_INTERVAL_1_16
;
686 p
->guard_interval
= GUARD_INTERVAL_1_8
;
689 p
->guard_interval
= GUARD_INTERVAL_1_4
;
692 switch (val
& 0x03) {
694 p
->transmission_mode
= TRANSMISSION_MODE_2K
;
697 p
->transmission_mode
= TRANSMISSION_MODE_8K
;
704 static int tda10048_i2c_gate_ctrl(struct dvb_frontend
*fe
, int enable
)
706 struct tda10048_state
*state
= fe
->demodulator_priv
;
707 struct tda10048_config
*config
= &state
->config
;
708 dprintk(1, "%s(%d)\n", __func__
, enable
);
710 if (config
->disable_gate_access
)
714 return tda10048_writereg(state
, TDA10048_CONF_C4_1
,
715 tda10048_readreg(state
, TDA10048_CONF_C4_1
) | 0x02);
717 return tda10048_writereg(state
, TDA10048_CONF_C4_1
,
718 tda10048_readreg(state
, TDA10048_CONF_C4_1
) & 0xfd);
721 static int tda10048_output_mode(struct dvb_frontend
*fe
, int serial
)
723 struct tda10048_state
*state
= fe
->demodulator_priv
;
724 dprintk(1, "%s(%d)\n", __func__
, serial
);
726 /* Ensure pins are out of tri-state */
727 tda10048_writereg(state
, TDA10048_CONF_TRISTATE1
, 0x21);
728 tda10048_writereg(state
, TDA10048_CONF_TRISTATE2
, 0x00);
731 tda10048_writereg(state
, TDA10048_IC_MODE
, 0x80 | 0x20);
732 tda10048_writereg(state
, TDA10048_CONF_TS2
, 0xc0);
734 tda10048_writereg(state
, TDA10048_IC_MODE
, 0x00);
735 tda10048_writereg(state
, TDA10048_CONF_TS2
, 0x01);
741 /* Talk to the demod, set the FEC, GUARD, QAM settings etc */
742 /* TODO: Support manual tuning with specific params */
743 static int tda10048_set_frontend(struct dvb_frontend
*fe
,
744 struct dvb_frontend_parameters
*p
)
746 struct tda10048_state
*state
= fe
->demodulator_priv
;
748 dprintk(1, "%s(frequency=%d)\n", __func__
, p
->frequency
);
750 /* Update the I/F pll's if the bandwidth changes */
751 if (p
->u
.ofdm
.bandwidth
!= state
->bandwidth
) {
752 tda10048_set_if(fe
, p
->u
.ofdm
.bandwidth
);
753 tda10048_set_bandwidth(fe
, p
->u
.ofdm
.bandwidth
);
756 if (fe
->ops
.tuner_ops
.set_params
) {
758 if (fe
->ops
.i2c_gate_ctrl
)
759 fe
->ops
.i2c_gate_ctrl(fe
, 1);
761 fe
->ops
.tuner_ops
.set_params(fe
, p
);
763 if (fe
->ops
.i2c_gate_ctrl
)
764 fe
->ops
.i2c_gate_ctrl(fe
, 0);
767 /* Enable demod TPS auto detection and begin acquisition */
768 tda10048_writereg(state
, TDA10048_AUTO
, 0x57);
769 /* trigger cber and vber acquisition */
770 tda10048_writereg(state
, TDA10048_CVBER_CTRL
, 0x3B);
775 /* Establish sane defaults and load firmware. */
776 static int tda10048_init(struct dvb_frontend
*fe
)
778 struct tda10048_state
*state
= fe
->demodulator_priv
;
779 struct tda10048_config
*config
= &state
->config
;
782 dprintk(1, "%s()\n", __func__
);
784 /* Apply register defaults */
785 for (i
= 0; i
< ARRAY_SIZE(init_tab
); i
++)
786 tda10048_writereg(state
, init_tab
[i
].reg
, init_tab
[i
].data
);
788 if (state
->fwloaded
== 0)
789 ret
= tda10048_firmware_upload(fe
);
791 /* Set either serial or parallel */
792 tda10048_output_mode(fe
, config
->output_mode
);
795 tda10048_set_inversion(fe
, config
->inversion
);
797 /* Establish default RF values */
798 tda10048_set_if(fe
, BANDWIDTH_8_MHZ
);
799 tda10048_set_bandwidth(fe
, BANDWIDTH_8_MHZ
);
801 /* Ensure we leave the gate closed */
802 tda10048_i2c_gate_ctrl(fe
, 0);
807 static int tda10048_read_status(struct dvb_frontend
*fe
, fe_status_t
*status
)
809 struct tda10048_state
*state
= fe
->demodulator_priv
;
814 reg
= tda10048_readreg(state
, TDA10048_SYNC_STATUS
);
816 dprintk(1, "%s() status =0x%02x\n", __func__
, reg
);
819 *status
|= FE_HAS_CARRIER
;
822 *status
|= FE_HAS_SIGNAL
;
825 *status
|= FE_HAS_LOCK
;
826 *status
|= FE_HAS_VITERBI
;
827 *status
|= FE_HAS_SYNC
;
833 static int tda10048_read_ber(struct dvb_frontend
*fe
, u32
*ber
)
835 struct tda10048_state
*state
= fe
->demodulator_priv
;
836 static u32 cber_current
;
840 dprintk(1, "%s()\n", __func__
);
842 /* update cber on interrupt */
843 if (tda10048_readreg(state
, TDA10048_SOFT_IT_C3
) & 0x01) {
844 cber_tmp
= tda10048_readreg(state
, TDA10048_CBER_MSB
) << 8 |
845 tda10048_readreg(state
, TDA10048_CBER_LSB
);
846 cber_nmax
= tda10048_readreg(state
, TDA10048_CBER_NMAX_MSB
) << 8 |
847 tda10048_readreg(state
, TDA10048_CBER_NMAX_LSB
);
848 cber_tmp
*= 100000000;
850 cber_tmp
= div_u64(cber_tmp
, (cber_nmax
* 32) + 1);
851 cber_current
= (u32
)cber_tmp
;
852 /* retrigger cber acquisition */
853 tda10048_writereg(state
, TDA10048_CVBER_CTRL
, 0x39);
855 /* actual cber is (*ber)/1e8 */
861 static int tda10048_read_signal_strength(struct dvb_frontend
*fe
,
862 u16
*signal_strength
)
864 struct tda10048_state
*state
= fe
->demodulator_priv
;
867 dprintk(1, "%s()\n", __func__
);
869 *signal_strength
= 65535;
871 v
= tda10048_readreg(state
, TDA10048_NP_OUT
);
873 *signal_strength
-= (v
<< 8) | v
;
878 /* SNR lookup table */
879 static struct snr_tab
{
1008 static int tda10048_read_snr(struct dvb_frontend
*fe
, u16
*snr
)
1010 struct tda10048_state
*state
= fe
->demodulator_priv
;
1012 int i
, ret
= -EINVAL
;
1014 dprintk(1, "%s()\n", __func__
);
1016 v
= tda10048_readreg(state
, TDA10048_NP_OUT
);
1017 for (i
= 0; i
< ARRAY_SIZE(snr_tab
); i
++) {
1018 if (v
<= snr_tab
[i
].val
) {
1019 *snr
= snr_tab
[i
].data
;
1028 static int tda10048_read_ucblocks(struct dvb_frontend
*fe
, u32
*ucblocks
)
1030 struct tda10048_state
*state
= fe
->demodulator_priv
;
1032 dprintk(1, "%s()\n", __func__
);
1034 *ucblocks
= tda10048_readreg(state
, TDA10048_UNCOR_CPT_MSB
) << 8 |
1035 tda10048_readreg(state
, TDA10048_UNCOR_CPT_LSB
);
1036 /* clear the uncorrected TS packets counter when saturated */
1037 if (*ucblocks
== 0xFFFF)
1038 tda10048_writereg(state
, TDA10048_UNCOR_CTRL
, 0x80);
1043 static int tda10048_get_frontend(struct dvb_frontend
*fe
,
1044 struct dvb_frontend_parameters
*p
)
1046 struct tda10048_state
*state
= fe
->demodulator_priv
;
1048 dprintk(1, "%s()\n", __func__
);
1050 p
->inversion
= tda10048_readreg(state
, TDA10048_CONF_C1_1
)
1051 & 0x20 ? INVERSION_ON
: INVERSION_OFF
;
1053 return tda10048_get_tps(state
, &p
->u
.ofdm
);
1056 static int tda10048_get_tune_settings(struct dvb_frontend
*fe
,
1057 struct dvb_frontend_tune_settings
*tune
)
1059 tune
->min_delay_ms
= 1000;
1063 static void tda10048_release(struct dvb_frontend
*fe
)
1065 struct tda10048_state
*state
= fe
->demodulator_priv
;
1066 dprintk(1, "%s()\n", __func__
);
1070 static void tda10048_establish_defaults(struct dvb_frontend
*fe
)
1072 struct tda10048_state
*state
= fe
->demodulator_priv
;
1073 struct tda10048_config
*config
= &state
->config
;
1075 /* Validate/default the config */
1076 if (config
->dtv6_if_freq_khz
== 0) {
1077 config
->dtv6_if_freq_khz
= TDA10048_IF_4300
;
1078 printk(KERN_WARNING
"%s() tda10048_config.dtv6_if_freq_khz "
1079 "is not set (defaulting to %d)\n",
1081 config
->dtv6_if_freq_khz
);
1084 if (config
->dtv7_if_freq_khz
== 0) {
1085 config
->dtv7_if_freq_khz
= TDA10048_IF_4300
;
1086 printk(KERN_WARNING
"%s() tda10048_config.dtv7_if_freq_khz "
1087 "is not set (defaulting to %d)\n",
1089 config
->dtv7_if_freq_khz
);
1092 if (config
->dtv8_if_freq_khz
== 0) {
1093 config
->dtv8_if_freq_khz
= TDA10048_IF_4300
;
1094 printk(KERN_WARNING
"%s() tda10048_config.dtv8_if_freq_khz "
1095 "is not set (defaulting to %d)\n",
1097 config
->dtv8_if_freq_khz
);
1100 if (config
->clk_freq_khz
== 0) {
1101 config
->clk_freq_khz
= TDA10048_CLK_16000
;
1102 printk(KERN_WARNING
"%s() tda10048_config.clk_freq_khz "
1103 "is not set (defaulting to %d)\n",
1105 config
->clk_freq_khz
);
1109 static struct dvb_frontend_ops tda10048_ops
;
1111 struct dvb_frontend
*tda10048_attach(const struct tda10048_config
*config
,
1112 struct i2c_adapter
*i2c
)
1114 struct tda10048_state
*state
= NULL
;
1116 dprintk(1, "%s()\n", __func__
);
1118 /* allocate memory for the internal state */
1119 state
= kzalloc(sizeof(struct tda10048_state
), GFP_KERNEL
);
1123 /* setup the state and clone the config */
1124 memcpy(&state
->config
, config
, sizeof(*config
));
1126 state
->fwloaded
= 0;
1127 state
->bandwidth
= BANDWIDTH_8_MHZ
;
1129 /* check if the demod is present */
1130 if (tda10048_readreg(state
, TDA10048_IDENTITY
) != 0x048)
1133 /* create dvb_frontend */
1134 memcpy(&state
->frontend
.ops
, &tda10048_ops
,
1135 sizeof(struct dvb_frontend_ops
));
1136 state
->frontend
.demodulator_priv
= state
;
1138 /* Establish any defaults the the user didn't pass */
1139 tda10048_establish_defaults(&state
->frontend
);
1141 /* Set the xtal and freq defaults */
1142 if (tda10048_set_if(&state
->frontend
, BANDWIDTH_8_MHZ
) != 0)
1145 /* Default bandwidth */
1146 if (tda10048_set_bandwidth(&state
->frontend
, BANDWIDTH_8_MHZ
) != 0)
1149 /* Leave the gate closed */
1150 tda10048_i2c_gate_ctrl(&state
->frontend
, 0);
1152 return &state
->frontend
;
1158 EXPORT_SYMBOL(tda10048_attach
);
1160 static struct dvb_frontend_ops tda10048_ops
= {
1163 .name
= "NXP TDA10048HN DVB-T",
1165 .frequency_min
= 177000000,
1166 .frequency_max
= 858000000,
1167 .frequency_stepsize
= 166666,
1168 .caps
= FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
1169 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
1170 FE_CAN_QPSK
| FE_CAN_QAM_16
| FE_CAN_QAM_64
| FE_CAN_QAM_AUTO
|
1171 FE_CAN_HIERARCHY_AUTO
| FE_CAN_GUARD_INTERVAL_AUTO
|
1172 FE_CAN_TRANSMISSION_MODE_AUTO
| FE_CAN_RECOVER
1175 .release
= tda10048_release
,
1176 .init
= tda10048_init
,
1177 .i2c_gate_ctrl
= tda10048_i2c_gate_ctrl
,
1178 .set_frontend
= tda10048_set_frontend
,
1179 .get_frontend
= tda10048_get_frontend
,
1180 .get_tune_settings
= tda10048_get_tune_settings
,
1181 .read_status
= tda10048_read_status
,
1182 .read_ber
= tda10048_read_ber
,
1183 .read_signal_strength
= tda10048_read_signal_strength
,
1184 .read_snr
= tda10048_read_snr
,
1185 .read_ucblocks
= tda10048_read_ucblocks
,
1188 module_param(debug
, int, 0644);
1189 MODULE_PARM_DESC(debug
, "Enable verbose debug messages");
1191 MODULE_DESCRIPTION("NXP TDA10048HN DVB-T Demodulator driver");
1192 MODULE_AUTHOR("Steven Toth");
1193 MODULE_LICENSE("GPL");