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 <asm/div64.h>
29 #include "dvb_frontend.h"
33 #define TDA10048_DEFAULT_FIRMWARE "dvb-fe-tda10048-1.0.fw"
34 #define TDA10048_DEFAULT_FIRMWARE_SIZE 24878
36 /* Register name definitions */
37 #define TDA10048_IDENTITY 0x00
38 #define TDA10048_VERSION 0x01
39 #define TDA10048_DSP_CODE_CPT 0x0C
40 #define TDA10048_DSP_CODE_IN 0x0E
41 #define TDA10048_IN_CONF1 0x10
42 #define TDA10048_IN_CONF2 0x11
43 #define TDA10048_IN_CONF3 0x12
44 #define TDA10048_OUT_CONF1 0x14
45 #define TDA10048_OUT_CONF2 0x15
46 #define TDA10048_OUT_CONF3 0x16
47 #define TDA10048_AUTO 0x18
48 #define TDA10048_SYNC_STATUS 0x1A
49 #define TDA10048_CONF_C4_1 0x1E
50 #define TDA10048_CONF_C4_2 0x1F
51 #define TDA10048_CODE_IN_RAM 0x20
52 #define TDA10048_CHANNEL_INFO_1_R 0x22
53 #define TDA10048_CHANNEL_INFO_2_R 0x23
54 #define TDA10048_CHANNEL_INFO1 0x24
55 #define TDA10048_CHANNEL_INFO2 0x25
56 #define TDA10048_TIME_ERROR_R 0x26
57 #define TDA10048_TIME_ERROR 0x27
58 #define TDA10048_FREQ_ERROR_LSB_R 0x28
59 #define TDA10048_FREQ_ERROR_MSB_R 0x29
60 #define TDA10048_FREQ_ERROR_LSB 0x2A
61 #define TDA10048_FREQ_ERROR_MSB 0x2B
62 #define TDA10048_IT_SEL 0x30
63 #define TDA10048_IT_STAT 0x32
64 #define TDA10048_DSP_AD_LSB 0x3C
65 #define TDA10048_DSP_AD_MSB 0x3D
66 #define TDA10048_DSP_REF_LSB 0x3E
67 #define TDA10048_DSP_REF_MSB 0x3F
68 #define TDA10048_CONF_TRISTATE1 0x44
69 #define TDA10048_CONF_TRISTATE2 0x45
70 #define TDA10048_CONF_POLARITY 0x46
71 #define TDA10048_GPIO_SP_DS0 0x48
72 #define TDA10048_GPIO_SP_DS1 0x49
73 #define TDA10048_GPIO_SP_DS2 0x4A
74 #define TDA10048_GPIO_SP_DS3 0x4B
75 #define TDA10048_GPIO_OUT_SEL 0x4C
76 #define TDA10048_GPIO_SELECT 0x4D
77 #define TDA10048_IC_MODE 0x4E
78 #define TDA10048_CONF_XO 0x50
79 #define TDA10048_CONF_PLL1 0x51
80 #define TDA10048_CONF_PLL2 0x52
81 #define TDA10048_CONF_PLL3 0x53
82 #define TDA10048_CONF_ADC 0x54
83 #define TDA10048_CONF_ADC_2 0x55
84 #define TDA10048_CONF_C1_1 0x60
85 #define TDA10048_CONF_C1_3 0x62
86 #define TDA10048_AGC_CONF 0x70
87 #define TDA10048_AGC_THRESHOLD_LSB 0x72
88 #define TDA10048_AGC_THRESHOLD_MSB 0x73
89 #define TDA10048_AGC_RENORM 0x74
90 #define TDA10048_AGC_GAINS 0x76
91 #define TDA10048_AGC_TUN_MIN 0x78
92 #define TDA10048_AGC_TUN_MAX 0x79
93 #define TDA10048_AGC_IF_MIN 0x7A
94 #define TDA10048_AGC_IF_MAX 0x7B
95 #define TDA10048_AGC_TUN_LEVEL 0x7E
96 #define TDA10048_AGC_IF_LEVEL 0x7F
97 #define TDA10048_DIG_AGC_LEVEL 0x81
98 #define TDA10048_FREQ_PHY2_LSB 0x86
99 #define TDA10048_FREQ_PHY2_MSB 0x87
100 #define TDA10048_TIME_INVWREF_LSB 0x88
101 #define TDA10048_TIME_INVWREF_MSB 0x89
102 #define TDA10048_TIME_WREF_LSB 0x8A
103 #define TDA10048_TIME_WREF_MID1 0x8B
104 #define TDA10048_TIME_WREF_MID2 0x8C
105 #define TDA10048_TIME_WREF_MSB 0x8D
106 #define TDA10048_NP_OUT 0xA2
107 #define TDA10048_CELL_ID_LSB 0xA4
108 #define TDA10048_CELL_ID_MSB 0xA5
109 #define TDA10048_EXTTPS_ODD 0xAA
110 #define TDA10048_EXTTPS_EVEN 0xAB
111 #define TDA10048_TPS_LENGTH 0xAC
112 #define TDA10048_FREE_REG_1 0xB2
113 #define TDA10048_FREE_REG_2 0xB3
114 #define TDA10048_CONF_C3_1 0xC0
115 #define TDA10048_CYBER_CTRL 0xC2
116 #define TDA10048_CBER_NMAX_LSB 0xC4
117 #define TDA10048_CBER_NMAX_MSB 0xC5
118 #define TDA10048_CBER_LSB 0xC6
119 #define TDA10048_CBER_MSB 0xC7
120 #define TDA10048_VBER_LSB 0xC8
121 #define TDA10048_VBER_MID 0xC9
122 #define TDA10048_VBER_MSB 0xCA
123 #define TDA10048_CYBER_LUT 0xCC
124 #define TDA10048_UNCOR_CTRL 0xCD
125 #define TDA10048_UNCOR_CPT_LSB 0xCE
126 #define TDA10048_UNCOR_CPT_MSB 0xCF
127 #define TDA10048_SOFT_IT_C3 0xD6
128 #define TDA10048_CONF_TS2 0xE0
129 #define TDA10048_CONF_TS1 0xE1
131 static unsigned int debug
;
133 #define dprintk(level, fmt, arg...)\
134 do { if (debug >= level)\
135 printk(KERN_DEBUG "tda10048: " fmt, ## arg);\
138 struct tda10048_state
{
140 struct i2c_adapter
*i2c
;
142 /* We'll cache and update the attach config settings */
143 struct tda10048_config config
;
144 struct dvb_frontend frontend
;
155 enum fe_bandwidth bandwidth
;
158 static struct init_tab
{
162 { TDA10048_CONF_PLL1
, 0x08 },
163 { TDA10048_CONF_ADC_2
, 0x00 },
164 { TDA10048_CONF_C4_1
, 0x00 },
165 { TDA10048_CONF_PLL1
, 0x0f },
166 { TDA10048_CONF_PLL2
, 0x0a },
167 { TDA10048_CONF_PLL3
, 0x43 },
168 { TDA10048_FREQ_PHY2_LSB
, 0x02 },
169 { TDA10048_FREQ_PHY2_MSB
, 0x0a },
170 { TDA10048_TIME_WREF_LSB
, 0xbd },
171 { TDA10048_TIME_WREF_MID1
, 0xe4 },
172 { TDA10048_TIME_WREF_MID2
, 0xa8 },
173 { TDA10048_TIME_WREF_MSB
, 0x02 },
174 { TDA10048_TIME_INVWREF_LSB
, 0x04 },
175 { TDA10048_TIME_INVWREF_MSB
, 0x06 },
176 { TDA10048_CONF_C4_1
, 0x00 },
177 { TDA10048_CONF_C1_1
, 0xa8 },
178 { TDA10048_AGC_CONF
, 0x16 },
179 { TDA10048_CONF_C1_3
, 0x0b },
180 { TDA10048_AGC_TUN_MIN
, 0x00 },
181 { TDA10048_AGC_TUN_MAX
, 0xff },
182 { TDA10048_AGC_IF_MIN
, 0x00 },
183 { TDA10048_AGC_IF_MAX
, 0xff },
184 { TDA10048_AGC_THRESHOLD_MSB
, 0x00 },
185 { TDA10048_AGC_THRESHOLD_LSB
, 0x70 },
186 { TDA10048_CYBER_CTRL
, 0x38 },
187 { TDA10048_AGC_GAINS
, 0x12 },
188 { TDA10048_CONF_XO
, 0x00 },
189 { TDA10048_CONF_TS1
, 0x07 },
190 { TDA10048_IC_MODE
, 0x00 },
191 { TDA10048_CONF_TS2
, 0xc0 },
192 { TDA10048_CONF_TRISTATE1
, 0x21 },
193 { TDA10048_CONF_TRISTATE2
, 0x00 },
194 { TDA10048_CONF_POLARITY
, 0x00 },
195 { TDA10048_CONF_C4_2
, 0x04 },
196 { TDA10048_CONF_ADC
, 0x60 },
197 { TDA10048_CONF_ADC_2
, 0x10 },
198 { TDA10048_CONF_ADC
, 0x60 },
199 { TDA10048_CONF_ADC_2
, 0x00 },
200 { TDA10048_CONF_C1_1
, 0xa8 },
201 { TDA10048_UNCOR_CTRL
, 0x00 },
202 { TDA10048_CONF_C4_2
, 0x04 },
205 static struct pll_tab
{
210 { TDA10048_CLK_4000
, TDA10048_IF_36130
, 10, 0, 0 },
211 { TDA10048_CLK_16000
, TDA10048_IF_3300
, 10, 3, 0 },
212 { TDA10048_CLK_16000
, TDA10048_IF_3500
, 10, 3, 0 },
213 { TDA10048_CLK_16000
, TDA10048_IF_3800
, 10, 3, 0 },
214 { TDA10048_CLK_16000
, TDA10048_IF_4000
, 10, 3, 0 },
215 { TDA10048_CLK_16000
, TDA10048_IF_4300
, 10, 3, 0 },
216 { TDA10048_CLK_16000
, TDA10048_IF_36130
, 10, 3, 0 },
219 static int tda10048_writereg(struct tda10048_state
*state
, u8 reg
, u8 data
)
221 struct tda10048_config
*config
= &state
->config
;
223 u8 buf
[] = { reg
, data
};
224 struct i2c_msg msg
= {
225 .addr
= config
->demod_address
,
226 .flags
= 0, .buf
= buf
, .len
= 2 };
228 dprintk(2, "%s(reg = 0x%02x, data = 0x%02x)\n", __func__
, reg
, data
);
230 ret
= i2c_transfer(state
->i2c
, &msg
, 1);
233 printk("%s: writereg error (ret == %i)\n", __func__
, ret
);
235 return (ret
!= 1) ? -1 : 0;
238 static u8
tda10048_readreg(struct tda10048_state
*state
, u8 reg
)
240 struct tda10048_config
*config
= &state
->config
;
244 struct i2c_msg msg
[] = {
245 { .addr
= config
->demod_address
,
246 .flags
= 0, .buf
= b0
, .len
= 1 },
247 { .addr
= config
->demod_address
,
248 .flags
= I2C_M_RD
, .buf
= b1
, .len
= 1 } };
250 dprintk(2, "%s(reg = 0x%02x)\n", __func__
, reg
);
252 ret
= i2c_transfer(state
->i2c
, msg
, 2);
255 printk(KERN_ERR
"%s: readreg error (ret == %i)\n",
261 static int tda10048_writeregbulk(struct tda10048_state
*state
, u8 reg
,
262 const u8
*data
, u16 len
)
264 struct tda10048_config
*config
= &state
->config
;
265 int ret
= -EREMOTEIO
;
269 dprintk(2, "%s(%d, ?, len = %d)\n", __func__
, reg
, len
);
271 buf
= kmalloc(len
+ 1, GFP_KERNEL
);
278 memcpy(buf
+ 1, data
, len
);
280 msg
.addr
= config
->demod_address
;
285 dprintk(2, "%s(): write len = %d\n",
288 ret
= i2c_transfer(state
->i2c
, &msg
, 1);
290 printk(KERN_ERR
"%s(): writereg error err %i\n",
301 static int tda10048_set_phy2(struct dvb_frontend
*fe
, u32 sample_freq_hz
,
304 struct tda10048_state
*state
= fe
->demodulator_priv
;
307 dprintk(1, "%s()\n", __func__
);
309 if (sample_freq_hz
== 0)
312 if (if_hz
< (sample_freq_hz
/ 2)) {
313 /* PHY2 = (if2/fs) * 2^15 */
317 do_div(t
, sample_freq_hz
);
321 /* PHY2 = ((IF1-fs)/fs) * 2^15 */
322 t
= sample_freq_hz
- if_hz
;
325 do_div(t
, sample_freq_hz
);
331 tda10048_writereg(state
, TDA10048_FREQ_PHY2_LSB
, (u8
)t
);
332 tda10048_writereg(state
, TDA10048_FREQ_PHY2_MSB
, (u8
)(t
>> 8));
337 static int tda10048_set_wref(struct dvb_frontend
*fe
, u32 sample_freq_hz
,
340 struct tda10048_state
*state
= fe
->demodulator_priv
;
344 dprintk(1, "%s()\n", __func__
);
346 if (sample_freq_hz
== 0)
349 if (bw
== BANDWIDTH_6_MHZ
)
352 if (bw
== BANDWIDTH_7_MHZ
)
355 /* WREF = (B / (7 * fs)) * 2^31 */
357 /* avoid warning: this decimal constant is unsigned only in ISO C90 */
358 /* t *= 2147483648 on 32bit platforms */
361 z
= 7 * sample_freq_hz
;
366 tda10048_writereg(state
, TDA10048_TIME_WREF_LSB
, (u8
)t
);
367 tda10048_writereg(state
, TDA10048_TIME_WREF_MID1
, (u8
)(t
>> 8));
368 tda10048_writereg(state
, TDA10048_TIME_WREF_MID2
, (u8
)(t
>> 16));
369 tda10048_writereg(state
, TDA10048_TIME_WREF_MSB
, (u8
)(t
>> 24));
374 static int tda10048_set_invwref(struct dvb_frontend
*fe
, u32 sample_freq_hz
,
377 struct tda10048_state
*state
= fe
->demodulator_priv
;
381 dprintk(1, "%s()\n", __func__
);
383 if (sample_freq_hz
== 0)
386 if (bw
== BANDWIDTH_6_MHZ
)
389 if (bw
== BANDWIDTH_7_MHZ
)
392 /* INVWREF = ((7 * fs) / B) * 2^5 */
401 tda10048_writereg(state
, TDA10048_TIME_INVWREF_LSB
, (u8
)t
);
402 tda10048_writereg(state
, TDA10048_TIME_INVWREF_MSB
, (u8
)(t
>> 8));
407 static int tda10048_set_bandwidth(struct dvb_frontend
*fe
,
408 enum fe_bandwidth bw
)
410 struct tda10048_state
*state
= fe
->demodulator_priv
;
411 dprintk(1, "%s(bw=%d)\n", __func__
, bw
);
413 /* Bandwidth setting may need to be adjusted */
415 case BANDWIDTH_6_MHZ
:
416 case BANDWIDTH_7_MHZ
:
417 case BANDWIDTH_8_MHZ
:
418 tda10048_set_wref(fe
, state
->sample_freq
, bw
);
419 tda10048_set_invwref(fe
, state
->sample_freq
, bw
);
422 printk(KERN_ERR
"%s() invalid bandwidth\n", __func__
);
426 state
->bandwidth
= bw
;
431 static int tda10048_set_if(struct dvb_frontend
*fe
, enum fe_bandwidth bw
)
433 struct tda10048_state
*state
= fe
->demodulator_priv
;
434 struct tda10048_config
*config
= &state
->config
;
438 dprintk(1, "%s(bw = %d)\n", __func__
, bw
);
440 /* based on target bandwidth and clk we calculate pll factors */
442 case BANDWIDTH_6_MHZ
:
443 if_freq_khz
= config
->dtv6_if_freq_khz
;
445 case BANDWIDTH_7_MHZ
:
446 if_freq_khz
= config
->dtv7_if_freq_khz
;
448 case BANDWIDTH_8_MHZ
:
449 if_freq_khz
= config
->dtv8_if_freq_khz
;
452 printk(KERN_ERR
"%s() no default\n", __func__
);
456 for (i
= 0; i
< ARRAY_SIZE(pll_tab
); i
++) {
457 if ((pll_tab
[i
].clk_freq_khz
== config
->clk_freq_khz
) &&
458 (pll_tab
[i
].if_freq_khz
== if_freq_khz
)) {
460 state
->freq_if_hz
= pll_tab
[i
].if_freq_khz
* 1000;
461 state
->xtal_hz
= pll_tab
[i
].clk_freq_khz
* 1000;
462 state
->pll_mfactor
= pll_tab
[i
].m
;
463 state
->pll_nfactor
= pll_tab
[i
].n
;
464 state
->pll_pfactor
= pll_tab
[i
].p
;
468 if (i
== ARRAY_SIZE(pll_tab
)) {
469 printk(KERN_ERR
"%s() Incorrect attach settings\n",
474 dprintk(1, "- freq_if_hz = %d\n", state
->freq_if_hz
);
475 dprintk(1, "- xtal_hz = %d\n", state
->xtal_hz
);
476 dprintk(1, "- pll_mfactor = %d\n", state
->pll_mfactor
);
477 dprintk(1, "- pll_nfactor = %d\n", state
->pll_nfactor
);
478 dprintk(1, "- pll_pfactor = %d\n", state
->pll_pfactor
);
480 /* Calculate the sample frequency */
481 state
->sample_freq
= state
->xtal_hz
* (state
->pll_mfactor
+ 45);
482 state
->sample_freq
/= (state
->pll_nfactor
+ 1);
483 state
->sample_freq
/= (state
->pll_pfactor
+ 4);
484 dprintk(1, "- sample_freq = %d\n", state
->sample_freq
);
487 tda10048_set_phy2(fe
, state
->sample_freq
, state
->freq_if_hz
);
492 static int tda10048_firmware_upload(struct dvb_frontend
*fe
)
494 struct tda10048_state
*state
= fe
->demodulator_priv
;
495 struct tda10048_config
*config
= &state
->config
;
496 const struct firmware
*fw
;
500 u8 wlen
= config
->fwbulkwritelen
;
502 if ((wlen
!= TDA10048_BULKWRITE_200
) && (wlen
!= TDA10048_BULKWRITE_50
))
503 wlen
= TDA10048_BULKWRITE_200
;
505 /* request the firmware, this will block and timeout */
506 printk(KERN_INFO
"%s: waiting for firmware upload (%s)...\n",
508 TDA10048_DEFAULT_FIRMWARE
);
510 ret
= request_firmware(&fw
, TDA10048_DEFAULT_FIRMWARE
,
511 state
->i2c
->dev
.parent
);
513 printk(KERN_ERR
"%s: Upload failed. (file not found?)\n",
517 printk(KERN_INFO
"%s: firmware read %Zu bytes.\n",
523 if (fw
->size
!= TDA10048_DEFAULT_FIRMWARE_SIZE
) {
524 printk(KERN_ERR
"%s: firmware incorrect size\n", __func__
);
527 printk(KERN_INFO
"%s: firmware uploading\n", __func__
);
530 tda10048_writereg(state
, TDA10048_CONF_TRISTATE1
,
531 tda10048_readreg(state
, TDA10048_CONF_TRISTATE1
)
533 tda10048_writereg(state
, TDA10048_CONF_TRISTATE1
,
534 tda10048_readreg(state
, TDA10048_CONF_TRISTATE1
)
537 /* Put the demod into host download mode */
538 tda10048_writereg(state
, TDA10048_CONF_C4_1
,
539 tda10048_readreg(state
, TDA10048_CONF_C4_1
) & 0xf9);
542 tda10048_writereg(state
, TDA10048_CONF_C4_1
,
543 tda10048_readreg(state
, TDA10048_CONF_C4_1
) | 0x08);
545 /* Prepare for download */
546 tda10048_writereg(state
, TDA10048_DSP_CODE_CPT
, 0);
548 /* Download the firmware payload */
549 while (pos
< fw
->size
) {
551 if ((fw
->size
- pos
) > wlen
)
554 cnt
= fw
->size
- pos
;
556 tda10048_writeregbulk(state
, TDA10048_DSP_CODE_IN
,
557 &fw
->data
[pos
], cnt
);
563 /* Wait up to 250ms for the DSP to boot */
564 for (cnt
= 0; cnt
< 250 ; cnt
+= 10) {
568 if (tda10048_readreg(state
, TDA10048_SYNC_STATUS
)
576 release_firmware(fw
);
579 printk(KERN_INFO
"%s: firmware uploaded\n", __func__
);
582 printk(KERN_ERR
"%s: firmware upload failed\n", __func__
);
587 static int tda10048_set_inversion(struct dvb_frontend
*fe
, int inversion
)
589 struct tda10048_state
*state
= fe
->demodulator_priv
;
591 dprintk(1, "%s(%d)\n", __func__
, inversion
);
593 if (inversion
== TDA10048_INVERSION_ON
)
594 tda10048_writereg(state
, TDA10048_CONF_C1_1
,
595 tda10048_readreg(state
, TDA10048_CONF_C1_1
) | 0x20);
597 tda10048_writereg(state
, TDA10048_CONF_C1_1
,
598 tda10048_readreg(state
, TDA10048_CONF_C1_1
) & 0xdf);
603 /* Retrieve the demod settings */
604 static int tda10048_get_tps(struct tda10048_state
*state
,
605 struct dvb_ofdm_parameters
*p
)
609 /* Make sure the TPS regs are valid */
610 if (!(tda10048_readreg(state
, TDA10048_AUTO
) & 0x01))
613 val
= tda10048_readreg(state
, TDA10048_OUT_CONF2
);
614 switch ((val
& 0x60) >> 5) {
616 p
->constellation
= QPSK
;
619 p
->constellation
= QAM_16
;
622 p
->constellation
= QAM_64
;
625 switch ((val
& 0x18) >> 3) {
627 p
->hierarchy_information
= HIERARCHY_NONE
;
630 p
->hierarchy_information
= HIERARCHY_1
;
633 p
->hierarchy_information
= HIERARCHY_2
;
636 p
->hierarchy_information
= HIERARCHY_4
;
639 switch (val
& 0x07) {
641 p
->code_rate_HP
= FEC_1_2
;
644 p
->code_rate_HP
= FEC_2_3
;
647 p
->code_rate_HP
= FEC_3_4
;
650 p
->code_rate_HP
= FEC_5_6
;
653 p
->code_rate_HP
= FEC_7_8
;
657 val
= tda10048_readreg(state
, TDA10048_OUT_CONF3
);
658 switch (val
& 0x07) {
660 p
->code_rate_LP
= FEC_1_2
;
663 p
->code_rate_LP
= FEC_2_3
;
666 p
->code_rate_LP
= FEC_3_4
;
669 p
->code_rate_LP
= FEC_5_6
;
672 p
->code_rate_LP
= FEC_7_8
;
676 val
= tda10048_readreg(state
, TDA10048_OUT_CONF1
);
677 switch ((val
& 0x0c) >> 2) {
679 p
->guard_interval
= GUARD_INTERVAL_1_32
;
682 p
->guard_interval
= GUARD_INTERVAL_1_16
;
685 p
->guard_interval
= GUARD_INTERVAL_1_8
;
688 p
->guard_interval
= GUARD_INTERVAL_1_4
;
691 switch (val
& 0x02) {
693 p
->transmission_mode
= TRANSMISSION_MODE_2K
;
696 p
->transmission_mode
= TRANSMISSION_MODE_8K
;
703 static int tda10048_i2c_gate_ctrl(struct dvb_frontend
*fe
, int enable
)
705 struct tda10048_state
*state
= fe
->demodulator_priv
;
706 struct tda10048_config
*config
= &state
->config
;
707 dprintk(1, "%s(%d)\n", __func__
, enable
);
709 if (config
->disable_gate_access
)
713 return tda10048_writereg(state
, TDA10048_CONF_C4_1
,
714 tda10048_readreg(state
, TDA10048_CONF_C4_1
) | 0x02);
716 return tda10048_writereg(state
, TDA10048_CONF_C4_1
,
717 tda10048_readreg(state
, TDA10048_CONF_C4_1
) & 0xfd);
720 static int tda10048_output_mode(struct dvb_frontend
*fe
, int serial
)
722 struct tda10048_state
*state
= fe
->demodulator_priv
;
723 dprintk(1, "%s(%d)\n", __func__
, serial
);
725 /* Ensure pins are out of tri-state */
726 tda10048_writereg(state
, TDA10048_CONF_TRISTATE1
, 0x21);
727 tda10048_writereg(state
, TDA10048_CONF_TRISTATE2
, 0x00);
730 tda10048_writereg(state
, TDA10048_IC_MODE
, 0x80 | 0x20);
731 tda10048_writereg(state
, TDA10048_CONF_TS2
, 0xc0);
733 tda10048_writereg(state
, TDA10048_IC_MODE
, 0x00);
734 tda10048_writereg(state
, TDA10048_CONF_TS2
, 0x01);
740 /* Talk to the demod, set the FEC, GUARD, QAM settings etc */
741 /* TODO: Support manual tuning with specific params */
742 static int tda10048_set_frontend(struct dvb_frontend
*fe
,
743 struct dvb_frontend_parameters
*p
)
745 struct tda10048_state
*state
= fe
->demodulator_priv
;
747 dprintk(1, "%s(frequency=%d)\n", __func__
, p
->frequency
);
749 /* Update the I/F pll's if the bandwidth changes */
750 if (p
->u
.ofdm
.bandwidth
!= state
->bandwidth
) {
751 tda10048_set_if(fe
, p
->u
.ofdm
.bandwidth
);
752 tda10048_set_bandwidth(fe
, p
->u
.ofdm
.bandwidth
);
755 if (fe
->ops
.tuner_ops
.set_params
) {
757 if (fe
->ops
.i2c_gate_ctrl
)
758 fe
->ops
.i2c_gate_ctrl(fe
, 1);
760 fe
->ops
.tuner_ops
.set_params(fe
, p
);
762 if (fe
->ops
.i2c_gate_ctrl
)
763 fe
->ops
.i2c_gate_ctrl(fe
, 0);
766 /* Enable demod TPS auto detection and begin acquisition */
767 tda10048_writereg(state
, TDA10048_AUTO
, 0x57);
772 /* Establish sane defaults and load firmware. */
773 static int tda10048_init(struct dvb_frontend
*fe
)
775 struct tda10048_state
*state
= fe
->demodulator_priv
;
776 struct tda10048_config
*config
= &state
->config
;
779 dprintk(1, "%s()\n", __func__
);
781 /* Apply register defaults */
782 for (i
= 0; i
< ARRAY_SIZE(init_tab
); i
++)
783 tda10048_writereg(state
, init_tab
[i
].reg
, init_tab
[i
].data
);
785 if (state
->fwloaded
== 0)
786 ret
= tda10048_firmware_upload(fe
);
788 /* Set either serial or parallel */
789 tda10048_output_mode(fe
, config
->output_mode
);
792 tda10048_set_inversion(fe
, config
->inversion
);
794 /* Establish default RF values */
795 tda10048_set_if(fe
, BANDWIDTH_8_MHZ
);
796 tda10048_set_bandwidth(fe
, BANDWIDTH_8_MHZ
);
798 /* Ensure we leave the gate closed */
799 tda10048_i2c_gate_ctrl(fe
, 0);
804 static int tda10048_read_status(struct dvb_frontend
*fe
, fe_status_t
*status
)
806 struct tda10048_state
*state
= fe
->demodulator_priv
;
811 reg
= tda10048_readreg(state
, TDA10048_SYNC_STATUS
);
813 dprintk(1, "%s() status =0x%02x\n", __func__
, reg
);
816 *status
|= FE_HAS_CARRIER
;
819 *status
|= FE_HAS_SIGNAL
;
822 *status
|= FE_HAS_LOCK
;
823 *status
|= FE_HAS_VITERBI
;
824 *status
|= FE_HAS_SYNC
;
830 static int tda10048_read_ber(struct dvb_frontend
*fe
, u32
*ber
)
832 struct tda10048_state
*state
= fe
->demodulator_priv
;
834 dprintk(1, "%s()\n", __func__
);
836 /* TODO: A reset may be required here */
837 *ber
= tda10048_readreg(state
, TDA10048_CBER_MSB
) << 8 |
838 tda10048_readreg(state
, TDA10048_CBER_LSB
);
843 static int tda10048_read_signal_strength(struct dvb_frontend
*fe
,
844 u16
*signal_strength
)
846 struct tda10048_state
*state
= fe
->demodulator_priv
;
849 dprintk(1, "%s()\n", __func__
);
851 *signal_strength
= 65535;
853 v
= tda10048_readreg(state
, TDA10048_NP_OUT
);
855 *signal_strength
-= (v
<< 8) | v
;
860 /* SNR lookup table */
861 static struct snr_tab
{
990 static int tda10048_read_snr(struct dvb_frontend
*fe
, u16
*snr
)
992 struct tda10048_state
*state
= fe
->demodulator_priv
;
994 int i
, ret
= -EINVAL
;
996 dprintk(1, "%s()\n", __func__
);
998 v
= tda10048_readreg(state
, TDA10048_NP_OUT
);
999 for (i
= 0; i
< ARRAY_SIZE(snr_tab
); i
++) {
1000 if (v
<= snr_tab
[i
].val
) {
1001 *snr
= snr_tab
[i
].data
;
1010 static int tda10048_read_ucblocks(struct dvb_frontend
*fe
, u32
*ucblocks
)
1012 struct tda10048_state
*state
= fe
->demodulator_priv
;
1014 dprintk(1, "%s()\n", __func__
);
1016 *ucblocks
= tda10048_readreg(state
, TDA10048_UNCOR_CPT_MSB
) << 8 |
1017 tda10048_readreg(state
, TDA10048_UNCOR_CPT_LSB
);
1022 static int tda10048_get_frontend(struct dvb_frontend
*fe
,
1023 struct dvb_frontend_parameters
*p
)
1025 struct tda10048_state
*state
= fe
->demodulator_priv
;
1027 dprintk(1, "%s()\n", __func__
);
1029 p
->inversion
= tda10048_readreg(state
, TDA10048_CONF_C1_1
)
1030 & 0x20 ? INVERSION_ON
: INVERSION_OFF
;
1032 return tda10048_get_tps(state
, &p
->u
.ofdm
);
1035 static int tda10048_get_tune_settings(struct dvb_frontend
*fe
,
1036 struct dvb_frontend_tune_settings
*tune
)
1038 tune
->min_delay_ms
= 1000;
1042 static void tda10048_release(struct dvb_frontend
*fe
)
1044 struct tda10048_state
*state
= fe
->demodulator_priv
;
1045 dprintk(1, "%s()\n", __func__
);
1049 static void tda10048_establish_defaults(struct dvb_frontend
*fe
)
1051 struct tda10048_state
*state
= fe
->demodulator_priv
;
1052 struct tda10048_config
*config
= &state
->config
;
1054 /* Validate/default the config */
1055 if (config
->dtv6_if_freq_khz
== 0) {
1056 config
->dtv6_if_freq_khz
= TDA10048_IF_4300
;
1057 printk(KERN_WARNING
"%s() tda10048_config.dtv6_if_freq_khz "
1058 "is not set (defaulting to %d)\n",
1060 config
->dtv6_if_freq_khz
);
1063 if (config
->dtv7_if_freq_khz
== 0) {
1064 config
->dtv7_if_freq_khz
= TDA10048_IF_4300
;
1065 printk(KERN_WARNING
"%s() tda10048_config.dtv7_if_freq_khz "
1066 "is not set (defaulting to %d)\n",
1068 config
->dtv7_if_freq_khz
);
1071 if (config
->dtv8_if_freq_khz
== 0) {
1072 config
->dtv8_if_freq_khz
= TDA10048_IF_4300
;
1073 printk(KERN_WARNING
"%s() tda10048_config.dtv8_if_freq_khz "
1074 "is not set (defaulting to %d)\n",
1076 config
->dtv8_if_freq_khz
);
1079 if (config
->clk_freq_khz
== 0) {
1080 config
->clk_freq_khz
= TDA10048_CLK_16000
;
1081 printk(KERN_WARNING
"%s() tda10048_config.clk_freq_khz "
1082 "is not set (defaulting to %d)\n",
1084 config
->clk_freq_khz
);
1088 static struct dvb_frontend_ops tda10048_ops
;
1090 struct dvb_frontend
*tda10048_attach(const struct tda10048_config
*config
,
1091 struct i2c_adapter
*i2c
)
1093 struct tda10048_state
*state
= NULL
;
1095 dprintk(1, "%s()\n", __func__
);
1097 /* allocate memory for the internal state */
1098 state
= kmalloc(sizeof(struct tda10048_state
), GFP_KERNEL
);
1102 /* setup the state and clone the config */
1103 memcpy(&state
->config
, config
, sizeof(*config
));
1105 state
->fwloaded
= 0;
1106 state
->bandwidth
= BANDWIDTH_8_MHZ
;
1108 /* check if the demod is present */
1109 if (tda10048_readreg(state
, TDA10048_IDENTITY
) != 0x048)
1112 /* create dvb_frontend */
1113 memcpy(&state
->frontend
.ops
, &tda10048_ops
,
1114 sizeof(struct dvb_frontend_ops
));
1115 state
->frontend
.demodulator_priv
= state
;
1117 /* Establish any defaults the the user didn't pass */
1118 tda10048_establish_defaults(&state
->frontend
);
1120 /* Set the xtal and freq defaults */
1121 if (tda10048_set_if(&state
->frontend
, BANDWIDTH_8_MHZ
) != 0)
1124 /* Default bandwidth */
1125 if (tda10048_set_bandwidth(&state
->frontend
, BANDWIDTH_8_MHZ
) != 0)
1128 /* Leave the gate closed */
1129 tda10048_i2c_gate_ctrl(&state
->frontend
, 0);
1131 return &state
->frontend
;
1137 EXPORT_SYMBOL(tda10048_attach
);
1139 static struct dvb_frontend_ops tda10048_ops
= {
1142 .name
= "NXP TDA10048HN DVB-T",
1144 .frequency_min
= 177000000,
1145 .frequency_max
= 858000000,
1146 .frequency_stepsize
= 166666,
1147 .caps
= FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
1148 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
1149 FE_CAN_QPSK
| FE_CAN_QAM_16
| FE_CAN_QAM_64
| FE_CAN_QAM_AUTO
|
1150 FE_CAN_HIERARCHY_AUTO
| FE_CAN_GUARD_INTERVAL_AUTO
|
1151 FE_CAN_TRANSMISSION_MODE_AUTO
| FE_CAN_RECOVER
1154 .release
= tda10048_release
,
1155 .init
= tda10048_init
,
1156 .i2c_gate_ctrl
= tda10048_i2c_gate_ctrl
,
1157 .set_frontend
= tda10048_set_frontend
,
1158 .get_frontend
= tda10048_get_frontend
,
1159 .get_tune_settings
= tda10048_get_tune_settings
,
1160 .read_status
= tda10048_read_status
,
1161 .read_ber
= tda10048_read_ber
,
1162 .read_signal_strength
= tda10048_read_signal_strength
,
1163 .read_snr
= tda10048_read_snr
,
1164 .read_ucblocks
= tda10048_read_ucblocks
,
1167 module_param(debug
, int, 0644);
1168 MODULE_PARM_DESC(debug
, "Enable verbose debug messages");
1170 MODULE_DESCRIPTION("NXP TDA10048HN DVB-T Demodulator driver");
1171 MODULE_AUTHOR("Steven Toth");
1172 MODULE_LICENSE("GPL");