2 NXP TDA10048HN DVB OFDM demodulator driver
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;
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 {
210 { TDA10048_CLK_4000, TDA10048_IF_36130 },
211 { TDA10048_CLK_16000, TDA10048_IF_3300 },
212 { TDA10048_CLK_16000, TDA10048_IF_3500 },
213 { TDA10048_CLK_16000, TDA10048_IF_3800 },
214 { TDA10048_CLK_16000, TDA10048_IF_4000 },
215 { TDA10048_CLK_16000, TDA10048_IF_4300 },
216 { TDA10048_CLK_16000, TDA10048_IF_4500 },
217 { TDA10048_CLK_16000, TDA10048_IF_5000 },
218 { TDA10048_CLK_16000, TDA10048_IF_36130 },
221 static int tda10048_writereg(struct tda10048_state *state, u8 reg, u8 data)
223 struct tda10048_config *config = &state->config;
225 u8 buf[] = { reg, data };
226 struct i2c_msg msg = {
227 .addr = config->demod_address,
228 .flags = 0, .buf = buf, .len = 2 };
230 dprintk(2, "%s(reg = 0x%02x, data = 0x%02x)\n", __func__, reg, data);
232 ret = i2c_transfer(state->i2c, &msg, 1);
235 printk("%s: writereg error (ret == %i)\n", __func__, ret);
237 return (ret != 1) ? -1 : 0;
240 static u8 tda10048_readreg(struct tda10048_state *state, u8 reg)
242 struct tda10048_config *config = &state->config;
246 struct i2c_msg msg[] = {
247 { .addr = config->demod_address,
248 .flags = 0, .buf = b0, .len = 1 },
249 { .addr = config->demod_address,
250 .flags = I2C_M_RD, .buf = b1, .len = 1 } };
252 dprintk(2, "%s(reg = 0x%02x)\n", __func__, reg);
254 ret = i2c_transfer(state->i2c, msg, 2);
257 printk(KERN_ERR "%s: readreg error (ret == %i)\n",
263 static int tda10048_writeregbulk(struct tda10048_state *state, u8 reg,
264 const u8 *data, u16 len)
266 struct tda10048_config *config = &state->config;
267 int ret = -EREMOTEIO;
271 dprintk(2, "%s(%d, ?, len = %d)\n", __func__, reg, len);
273 buf = kmalloc(len + 1, GFP_KERNEL);
280 memcpy(buf + 1, data, len);
282 msg.addr = config->demod_address;
287 dprintk(2, "%s(): write len = %d\n",
290 ret = i2c_transfer(state->i2c, &msg, 1);
292 printk(KERN_ERR "%s(): writereg error err %i\n",
303 static int tda10048_set_phy2(struct dvb_frontend *fe, u32 sample_freq_hz,
306 struct tda10048_state *state = fe->demodulator_priv;
309 dprintk(1, "%s()\n", __func__);
311 if (sample_freq_hz == 0)
314 if (if_hz < (sample_freq_hz / 2)) {
315 /* PHY2 = (if2/fs) * 2^15 */
319 do_div(t, sample_freq_hz);
323 /* PHY2 = ((IF1-fs)/fs) * 2^15 */
324 t = sample_freq_hz - if_hz;
327 do_div(t, sample_freq_hz);
333 tda10048_writereg(state, TDA10048_FREQ_PHY2_LSB, (u8)t);
334 tda10048_writereg(state, TDA10048_FREQ_PHY2_MSB, (u8)(t >> 8));
339 static int tda10048_set_wref(struct dvb_frontend *fe, u32 sample_freq_hz,
342 struct tda10048_state *state = fe->demodulator_priv;
345 dprintk(1, "%s()\n", __func__);
347 if (sample_freq_hz == 0)
350 /* WREF = (B / (7 * fs)) * 2^31 */
352 /* avoid warning: this decimal constant is unsigned only in ISO C90 */
353 /* t *= 2147483648 on 32bit platforms */
356 z = 7 * sample_freq_hz;
361 tda10048_writereg(state, TDA10048_TIME_WREF_LSB, (u8)t);
362 tda10048_writereg(state, TDA10048_TIME_WREF_MID1, (u8)(t >> 8));
363 tda10048_writereg(state, TDA10048_TIME_WREF_MID2, (u8)(t >> 16));
364 tda10048_writereg(state, TDA10048_TIME_WREF_MSB, (u8)(t >> 24));
369 static int tda10048_set_invwref(struct dvb_frontend *fe, u32 sample_freq_hz,
372 struct tda10048_state *state = fe->demodulator_priv;
375 dprintk(1, "%s()\n", __func__);
377 if (sample_freq_hz == 0)
380 /* INVWREF = ((7 * fs) / B) * 2^5 */
389 tda10048_writereg(state, TDA10048_TIME_INVWREF_LSB, (u8)t);
390 tda10048_writereg(state, TDA10048_TIME_INVWREF_MSB, (u8)(t >> 8));
395 static int tda10048_set_bandwidth(struct dvb_frontend *fe,
398 struct tda10048_state *state = fe->demodulator_priv;
399 dprintk(1, "%s(bw=%d)\n", __func__, bw);
401 /* Bandwidth setting may need to be adjusted */
406 tda10048_set_wref(fe, state->sample_freq, bw);
407 tda10048_set_invwref(fe, state->sample_freq, bw);
410 printk(KERN_ERR "%s() invalid bandwidth\n", __func__);
414 state->bandwidth = bw;
419 static int tda10048_set_if(struct dvb_frontend *fe, u32 bw)
421 struct tda10048_state *state = fe->demodulator_priv;
422 struct tda10048_config *config = &state->config;
426 dprintk(1, "%s(bw = %d)\n", __func__, bw);
428 /* based on target bandwidth and clk we calculate pll factors */
431 if_freq_khz = config->dtv6_if_freq_khz;
434 if_freq_khz = config->dtv7_if_freq_khz;
437 if_freq_khz = config->dtv8_if_freq_khz;
440 printk(KERN_ERR "%s() no default\n", __func__);
444 for (i = 0; i < ARRAY_SIZE(pll_tab); i++) {
445 if ((pll_tab[i].clk_freq_khz == config->clk_freq_khz) &&
446 (pll_tab[i].if_freq_khz == if_freq_khz)) {
448 state->freq_if_hz = pll_tab[i].if_freq_khz * 1000;
449 state->xtal_hz = pll_tab[i].clk_freq_khz * 1000;
453 if (i == ARRAY_SIZE(pll_tab)) {
454 printk(KERN_ERR "%s() Incorrect attach settings\n",
459 dprintk(1, "- freq_if_hz = %d\n", state->freq_if_hz);
460 dprintk(1, "- xtal_hz = %d\n", state->xtal_hz);
461 dprintk(1, "- pll_mfactor = %d\n", state->pll_mfactor);
462 dprintk(1, "- pll_nfactor = %d\n", state->pll_nfactor);
463 dprintk(1, "- pll_pfactor = %d\n", state->pll_pfactor);
465 /* Calculate the sample frequency */
466 state->sample_freq = state->xtal_hz * (state->pll_mfactor + 45);
467 state->sample_freq /= (state->pll_nfactor + 1);
468 state->sample_freq /= (state->pll_pfactor + 4);
469 dprintk(1, "- sample_freq = %d\n", state->sample_freq);
472 tda10048_set_phy2(fe, state->sample_freq, state->freq_if_hz);
477 static int tda10048_firmware_upload(struct dvb_frontend *fe)
479 struct tda10048_state *state = fe->demodulator_priv;
480 struct tda10048_config *config = &state->config;
481 const struct firmware *fw;
485 u8 wlen = config->fwbulkwritelen;
487 if ((wlen != TDA10048_BULKWRITE_200) && (wlen != TDA10048_BULKWRITE_50))
488 wlen = TDA10048_BULKWRITE_200;
490 /* request the firmware, this will block and timeout */
491 printk(KERN_INFO "%s: waiting for firmware upload (%s)...\n",
493 TDA10048_DEFAULT_FIRMWARE);
495 ret = request_firmware(&fw, TDA10048_DEFAULT_FIRMWARE,
496 state->i2c->dev.parent);
498 printk(KERN_ERR "%s: Upload failed. (file not found?)\n",
502 printk(KERN_INFO "%s: firmware read %zu bytes.\n",
508 if (fw->size != TDA10048_DEFAULT_FIRMWARE_SIZE) {
509 printk(KERN_ERR "%s: firmware incorrect size\n", __func__);
512 printk(KERN_INFO "%s: firmware uploading\n", __func__);
515 tda10048_writereg(state, TDA10048_CONF_TRISTATE1,
516 tda10048_readreg(state, TDA10048_CONF_TRISTATE1)
518 tda10048_writereg(state, TDA10048_CONF_TRISTATE1,
519 tda10048_readreg(state, TDA10048_CONF_TRISTATE1)
522 /* Put the demod into host download mode */
523 tda10048_writereg(state, TDA10048_CONF_C4_1,
524 tda10048_readreg(state, TDA10048_CONF_C4_1) & 0xf9);
527 tda10048_writereg(state, TDA10048_CONF_C4_1,
528 tda10048_readreg(state, TDA10048_CONF_C4_1) | 0x08);
530 /* Prepare for download */
531 tda10048_writereg(state, TDA10048_DSP_CODE_CPT, 0);
533 /* Download the firmware payload */
534 while (pos < fw->size) {
536 if ((fw->size - pos) > wlen)
539 cnt = fw->size - pos;
541 tda10048_writeregbulk(state, TDA10048_DSP_CODE_IN,
542 &fw->data[pos], cnt);
548 /* Wait up to 250ms for the DSP to boot */
549 for (cnt = 0; cnt < 250 ; cnt += 10) {
553 if (tda10048_readreg(state, TDA10048_SYNC_STATUS)
561 release_firmware(fw);
564 printk(KERN_INFO "%s: firmware uploaded\n", __func__);
567 printk(KERN_ERR "%s: firmware upload failed\n", __func__);
572 static int tda10048_set_inversion(struct dvb_frontend *fe, int inversion)
574 struct tda10048_state *state = fe->demodulator_priv;
576 dprintk(1, "%s(%d)\n", __func__, inversion);
578 if (inversion == TDA10048_INVERSION_ON)
579 tda10048_writereg(state, TDA10048_CONF_C1_1,
580 tda10048_readreg(state, TDA10048_CONF_C1_1) | 0x20);
582 tda10048_writereg(state, TDA10048_CONF_C1_1,
583 tda10048_readreg(state, TDA10048_CONF_C1_1) & 0xdf);
588 /* Retrieve the demod settings */
589 static int tda10048_get_tps(struct tda10048_state *state,
590 struct dtv_frontend_properties *p)
594 /* Make sure the TPS regs are valid */
595 if (!(tda10048_readreg(state, TDA10048_AUTO) & 0x01))
598 val = tda10048_readreg(state, TDA10048_OUT_CONF2);
599 switch ((val & 0x60) >> 5) {
601 p->modulation = QPSK;
604 p->modulation = QAM_16;
607 p->modulation = QAM_64;
610 switch ((val & 0x18) >> 3) {
612 p->hierarchy = HIERARCHY_NONE;
615 p->hierarchy = HIERARCHY_1;
618 p->hierarchy = HIERARCHY_2;
621 p->hierarchy = HIERARCHY_4;
624 switch (val & 0x07) {
626 p->code_rate_HP = FEC_1_2;
629 p->code_rate_HP = FEC_2_3;
632 p->code_rate_HP = FEC_3_4;
635 p->code_rate_HP = FEC_5_6;
638 p->code_rate_HP = FEC_7_8;
642 val = tda10048_readreg(state, TDA10048_OUT_CONF3);
643 switch (val & 0x07) {
645 p->code_rate_LP = FEC_1_2;
648 p->code_rate_LP = FEC_2_3;
651 p->code_rate_LP = FEC_3_4;
654 p->code_rate_LP = FEC_5_6;
657 p->code_rate_LP = FEC_7_8;
661 val = tda10048_readreg(state, TDA10048_OUT_CONF1);
662 switch ((val & 0x0c) >> 2) {
664 p->guard_interval = GUARD_INTERVAL_1_32;
667 p->guard_interval = GUARD_INTERVAL_1_16;
670 p->guard_interval = GUARD_INTERVAL_1_8;
673 p->guard_interval = GUARD_INTERVAL_1_4;
676 switch (val & 0x03) {
678 p->transmission_mode = TRANSMISSION_MODE_2K;
681 p->transmission_mode = TRANSMISSION_MODE_8K;
688 static int tda10048_i2c_gate_ctrl(struct dvb_frontend *fe, int enable)
690 struct tda10048_state *state = fe->demodulator_priv;
691 struct tda10048_config *config = &state->config;
692 dprintk(1, "%s(%d)\n", __func__, enable);
694 if (config->disable_gate_access)
698 return tda10048_writereg(state, TDA10048_CONF_C4_1,
699 tda10048_readreg(state, TDA10048_CONF_C4_1) | 0x02);
701 return tda10048_writereg(state, TDA10048_CONF_C4_1,
702 tda10048_readreg(state, TDA10048_CONF_C4_1) & 0xfd);
705 static int tda10048_output_mode(struct dvb_frontend *fe, int serial)
707 struct tda10048_state *state = fe->demodulator_priv;
708 dprintk(1, "%s(%d)\n", __func__, serial);
710 /* Ensure pins are out of tri-state */
711 tda10048_writereg(state, TDA10048_CONF_TRISTATE1, 0x21);
712 tda10048_writereg(state, TDA10048_CONF_TRISTATE2, 0x00);
715 tda10048_writereg(state, TDA10048_IC_MODE, 0x80 | 0x20);
716 tda10048_writereg(state, TDA10048_CONF_TS2, 0xc0);
718 tda10048_writereg(state, TDA10048_IC_MODE, 0x00);
719 tda10048_writereg(state, TDA10048_CONF_TS2, 0x01);
725 /* Talk to the demod, set the FEC, GUARD, QAM settings etc */
726 /* TODO: Support manual tuning with specific params */
727 static int tda10048_set_frontend(struct dvb_frontend *fe)
729 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
730 struct tda10048_state *state = fe->demodulator_priv;
732 dprintk(1, "%s(frequency=%d)\n", __func__, p->frequency);
734 /* Update the I/F pll's if the bandwidth changes */
735 if (p->bandwidth_hz != state->bandwidth) {
736 tda10048_set_if(fe, p->bandwidth_hz);
737 tda10048_set_bandwidth(fe, p->bandwidth_hz);
740 if (fe->ops.tuner_ops.set_params) {
742 if (fe->ops.i2c_gate_ctrl)
743 fe->ops.i2c_gate_ctrl(fe, 1);
745 fe->ops.tuner_ops.set_params(fe);
747 if (fe->ops.i2c_gate_ctrl)
748 fe->ops.i2c_gate_ctrl(fe, 0);
751 /* Enable demod TPS auto detection and begin acquisition */
752 tda10048_writereg(state, TDA10048_AUTO, 0x57);
753 /* trigger cber and vber acquisition */
754 tda10048_writereg(state, TDA10048_CVBER_CTRL, 0x3B);
759 /* Establish sane defaults and load firmware. */
760 static int tda10048_init(struct dvb_frontend *fe)
762 struct tda10048_state *state = fe->demodulator_priv;
763 struct tda10048_config *config = &state->config;
766 dprintk(1, "%s()\n", __func__);
769 init_tab[4].data = (u8)(state->pll_mfactor);
770 init_tab[5].data = (u8)(state->pll_nfactor) | 0x40;
772 /* Apply register defaults */
773 for (i = 0; i < ARRAY_SIZE(init_tab); i++)
774 tda10048_writereg(state, init_tab[i].reg, init_tab[i].data);
776 if (state->fwloaded == 0)
777 ret = tda10048_firmware_upload(fe);
779 /* Set either serial or parallel */
780 tda10048_output_mode(fe, config->output_mode);
783 tda10048_set_inversion(fe, config->inversion);
785 /* Establish default RF values */
786 tda10048_set_if(fe, 8000000);
787 tda10048_set_bandwidth(fe, 8000000);
789 /* Ensure we leave the gate closed */
790 tda10048_i2c_gate_ctrl(fe, 0);
795 static int tda10048_read_status(struct dvb_frontend *fe, enum fe_status *status)
797 struct tda10048_state *state = fe->demodulator_priv;
802 reg = tda10048_readreg(state, TDA10048_SYNC_STATUS);
804 dprintk(1, "%s() status =0x%02x\n", __func__, reg);
807 *status |= FE_HAS_CARRIER;
810 *status |= FE_HAS_SIGNAL;
813 *status |= FE_HAS_LOCK;
814 *status |= FE_HAS_VITERBI;
815 *status |= FE_HAS_SYNC;
821 static int tda10048_read_ber(struct dvb_frontend *fe, u32 *ber)
823 struct tda10048_state *state = fe->demodulator_priv;
824 static u32 cber_current;
828 dprintk(1, "%s()\n", __func__);
830 /* update cber on interrupt */
831 if (tda10048_readreg(state, TDA10048_SOFT_IT_C3) & 0x01) {
832 cber_tmp = tda10048_readreg(state, TDA10048_CBER_MSB) << 8 |
833 tda10048_readreg(state, TDA10048_CBER_LSB);
834 cber_nmax = tda10048_readreg(state, TDA10048_CBER_NMAX_MSB) << 8 |
835 tda10048_readreg(state, TDA10048_CBER_NMAX_LSB);
836 cber_tmp *= 100000000;
838 cber_tmp = div_u64(cber_tmp, (cber_nmax * 32) + 1);
839 cber_current = (u32)cber_tmp;
840 /* retrigger cber acquisition */
841 tda10048_writereg(state, TDA10048_CVBER_CTRL, 0x39);
843 /* actual cber is (*ber)/1e8 */
849 static int tda10048_read_signal_strength(struct dvb_frontend *fe,
850 u16 *signal_strength)
852 struct tda10048_state *state = fe->demodulator_priv;
855 dprintk(1, "%s()\n", __func__);
857 *signal_strength = 65535;
859 v = tda10048_readreg(state, TDA10048_NP_OUT);
861 *signal_strength -= (v << 8) | v;
866 /* SNR lookup table */
867 static struct snr_tab {
996 static int tda10048_read_snr(struct dvb_frontend *fe, u16 *snr)
998 struct tda10048_state *state = fe->demodulator_priv;
1000 int i, ret = -EINVAL;
1002 dprintk(1, "%s()\n", __func__);
1004 v = tda10048_readreg(state, TDA10048_NP_OUT);
1005 for (i = 0; i < ARRAY_SIZE(snr_tab); i++) {
1006 if (v <= snr_tab[i].val) {
1007 *snr = snr_tab[i].data;
1016 static int tda10048_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
1018 struct tda10048_state *state = fe->demodulator_priv;
1020 dprintk(1, "%s()\n", __func__);
1022 *ucblocks = tda10048_readreg(state, TDA10048_UNCOR_CPT_MSB) << 8 |
1023 tda10048_readreg(state, TDA10048_UNCOR_CPT_LSB);
1024 /* clear the uncorrected TS packets counter when saturated */
1025 if (*ucblocks == 0xFFFF)
1026 tda10048_writereg(state, TDA10048_UNCOR_CTRL, 0x80);
1031 static int tda10048_get_frontend(struct dvb_frontend *fe,
1032 struct dtv_frontend_properties *p)
1034 struct tda10048_state *state = fe->demodulator_priv;
1036 dprintk(1, "%s()\n", __func__);
1038 p->inversion = tda10048_readreg(state, TDA10048_CONF_C1_1)
1039 & 0x20 ? INVERSION_ON : INVERSION_OFF;
1041 return tda10048_get_tps(state, p);
1044 static int tda10048_get_tune_settings(struct dvb_frontend *fe,
1045 struct dvb_frontend_tune_settings *tune)
1047 tune->min_delay_ms = 1000;
1051 static void tda10048_release(struct dvb_frontend *fe)
1053 struct tda10048_state *state = fe->demodulator_priv;
1054 dprintk(1, "%s()\n", __func__);
1058 static void tda10048_establish_defaults(struct dvb_frontend *fe)
1060 struct tda10048_state *state = fe->demodulator_priv;
1061 struct tda10048_config *config = &state->config;
1063 /* Validate/default the config */
1064 if (config->dtv6_if_freq_khz == 0) {
1065 config->dtv6_if_freq_khz = TDA10048_IF_4300;
1066 printk(KERN_WARNING "%s() tda10048_config.dtv6_if_freq_khz is not set (defaulting to %d)\n",
1068 config->dtv6_if_freq_khz);
1071 if (config->dtv7_if_freq_khz == 0) {
1072 config->dtv7_if_freq_khz = TDA10048_IF_4300;
1073 printk(KERN_WARNING "%s() tda10048_config.dtv7_if_freq_khz is not set (defaulting to %d)\n",
1075 config->dtv7_if_freq_khz);
1078 if (config->dtv8_if_freq_khz == 0) {
1079 config->dtv8_if_freq_khz = TDA10048_IF_4300;
1080 printk(KERN_WARNING "%s() tda10048_config.dtv8_if_freq_khz is not set (defaulting to %d)\n",
1082 config->dtv8_if_freq_khz);
1085 if (config->clk_freq_khz == 0) {
1086 config->clk_freq_khz = TDA10048_CLK_16000;
1087 printk(KERN_WARNING "%s() tda10048_config.clk_freq_khz is not set (defaulting to %d)\n",
1089 config->clk_freq_khz);
1093 static const struct dvb_frontend_ops tda10048_ops;
1095 struct dvb_frontend *tda10048_attach(const struct tda10048_config *config,
1096 struct i2c_adapter *i2c)
1098 struct tda10048_state *state = NULL;
1100 dprintk(1, "%s()\n", __func__);
1102 /* allocate memory for the internal state */
1103 state = kzalloc(sizeof(struct tda10048_state), GFP_KERNEL);
1107 /* setup the state and clone the config */
1108 memcpy(&state->config, config, sizeof(*config));
1110 state->fwloaded = config->no_firmware;
1111 state->bandwidth = 8000000;
1113 /* check if the demod is present */
1114 if (tda10048_readreg(state, TDA10048_IDENTITY) != 0x048)
1117 /* create dvb_frontend */
1118 memcpy(&state->frontend.ops, &tda10048_ops,
1119 sizeof(struct dvb_frontend_ops));
1120 state->frontend.demodulator_priv = state;
1123 if (config->set_pll) {
1124 state->pll_mfactor = config->pll_m;
1125 state->pll_nfactor = config->pll_n;
1126 state->pll_pfactor = config->pll_p;
1128 state->pll_mfactor = 10;
1129 state->pll_nfactor = 3;
1130 state->pll_pfactor = 0;
1133 /* Establish any defaults the the user didn't pass */
1134 tda10048_establish_defaults(&state->frontend);
1136 /* Set the xtal and freq defaults */
1137 if (tda10048_set_if(&state->frontend, 8000000) != 0)
1140 /* Default bandwidth */
1141 if (tda10048_set_bandwidth(&state->frontend, 8000000) != 0)
1144 /* Leave the gate closed */
1145 tda10048_i2c_gate_ctrl(&state->frontend, 0);
1147 return &state->frontend;
1153 EXPORT_SYMBOL(tda10048_attach);
1155 static const struct dvb_frontend_ops tda10048_ops = {
1156 .delsys = { SYS_DVBT },
1158 .name = "NXP TDA10048HN DVB-T",
1159 .frequency_min = 177000000,
1160 .frequency_max = 858000000,
1161 .frequency_stepsize = 166666,
1162 .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
1163 FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO |
1164 FE_CAN_QPSK | FE_CAN_QAM_16 | FE_CAN_QAM_64 | FE_CAN_QAM_AUTO |
1165 FE_CAN_HIERARCHY_AUTO | FE_CAN_GUARD_INTERVAL_AUTO |
1166 FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_RECOVER
1169 .release = tda10048_release,
1170 .init = tda10048_init,
1171 .i2c_gate_ctrl = tda10048_i2c_gate_ctrl,
1172 .set_frontend = tda10048_set_frontend,
1173 .get_frontend = tda10048_get_frontend,
1174 .get_tune_settings = tda10048_get_tune_settings,
1175 .read_status = tda10048_read_status,
1176 .read_ber = tda10048_read_ber,
1177 .read_signal_strength = tda10048_read_signal_strength,
1178 .read_snr = tda10048_read_snr,
1179 .read_ucblocks = tda10048_read_ucblocks,
1182 module_param(debug, int, 0644);
1183 MODULE_PARM_DESC(debug, "Enable verbose debug messages");
1185 MODULE_DESCRIPTION("NXP TDA10048HN DVB-T Demodulator driver");
1186 MODULE_AUTHOR("Steven Toth");
1187 MODULE_LICENSE("GPL");