2 * Driver for Zarlink DVB-T MT352 demodulator
4 * Written by Holger Waechtler <holger@qanu.de>
5 * and Daniel Mack <daniel@qanu.de>
7 * AVerMedia AVerTV DVB-T 771 support by
8 * Wolfram Joost <dbox2@frokaschwei.de>
10 * Support for Samsung TDTC9251DH01C(M) tuner
11 * Copyright (C) 2004 Antonio Mancuso <antonio.mancuso@digitaltelevision.it>
12 * Amauri Celani <acelani@essegi.net>
14 * DVICO FusionHDTV DVB-T1 and DVICO FusionHDTV DVB-T Lite support by
15 * Christopher Pascoe <c.pascoe@itee.uq.edu.au>
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.=
33 #include <linux/kernel.h>
34 #include <linux/module.h>
35 #include <linux/moduleparam.h>
36 #include <linux/init.h>
37 #include <linux/delay.h>
38 #include <linux/string.h>
39 #include <linux/slab.h>
41 #include "dvb_frontend.h"
42 #include "mt352_priv.h"
46 struct i2c_adapter* i2c;
47 struct dvb_frontend frontend;
48 struct dvb_frontend_ops ops;
50 /* configuration settings */
51 struct mt352_config config;
55 #define dprintk(args...) \
57 if (debug) printk(KERN_DEBUG "mt352: " args); \
60 static int mt352_single_write(struct dvb_frontend *fe, u8 reg, u8 val)
62 struct mt352_state* state = fe->demodulator_priv;
63 u8 buf[2] = { reg, val };
64 struct i2c_msg msg = { .addr = state->config.demod_address, .flags = 0,
65 .buf = buf, .len = 2 };
66 int err = i2c_transfer(state->i2c, &msg, 1);
68 printk("mt352_write() to reg %x failed (err = %d)!\n", reg, err);
74 int mt352_write(struct dvb_frontend* fe, u8* ibuf, int ilen)
77 for (i=0; i < ilen-1; i++)
78 if ((err = mt352_single_write(fe,ibuf[0]+i,ibuf[i+1])))
84 static int mt352_read_register(struct mt352_state* state, u8 reg)
89 struct i2c_msg msg [] = { { .addr = state->config.demod_address,
91 .buf = b0, .len = 1 },
92 { .addr = state->config.demod_address,
94 .buf = b1, .len = 1 } };
96 ret = i2c_transfer(state->i2c, msg, 2);
99 printk("%s: readreg error (reg=%d, ret==%i)\n",
100 __FUNCTION__, reg, ret);
107 static int mt352_sleep(struct dvb_frontend* fe)
109 static u8 mt352_softdown[] = { CLOCK_CTL, 0x20, 0x08 };
111 mt352_write(fe, mt352_softdown, sizeof(mt352_softdown));
115 static void mt352_calc_nominal_rate(struct mt352_state* state,
116 enum fe_bandwidth bandwidth,
119 u32 adc_clock = 20480; /* 20.340 MHz */
123 case BANDWIDTH_6_MHZ:
126 case BANDWIDTH_7_MHZ:
129 case BANDWIDTH_8_MHZ:
134 if (state->config.adc_clock)
135 adc_clock = state->config.adc_clock;
137 value = 64 * bw * (1<<16) / (7 * 8);
138 value = value * 1000 / adc_clock;
139 dprintk("%s: bw %d, adc_clock %d => 0x%x\n",
140 __FUNCTION__, bw, adc_clock, value);
145 static void mt352_calc_input_freq(struct mt352_state* state,
148 int adc_clock = 20480; /* 20.480000 MHz */
149 int if2 = 36167; /* 36.166667 MHz */
152 if (state->config.adc_clock)
153 adc_clock = state->config.adc_clock;
154 if (state->config.if2)
155 if2 = state->config.if2;
157 ife = (2*adc_clock - if2);
158 value = -16374 * ife / adc_clock;
159 dprintk("%s: if2 %d, ife %d, adc_clock %d => %d / 0x%x\n",
160 __FUNCTION__, if2, ife, adc_clock, value, value & 0x3fff);
165 static int mt352_set_parameters(struct dvb_frontend* fe,
166 struct dvb_frontend_parameters *param)
168 struct mt352_state* state = fe->demodulator_priv;
169 unsigned char buf[13];
170 static unsigned char tuner_go[] = { 0x5d, 0x01 };
171 static unsigned char fsm_go[] = { 0x5e, 0x01 };
172 unsigned int tps = 0;
173 struct dvb_ofdm_parameters *op = ¶m->u.ofdm;
175 switch (op->code_rate_HP) {
195 switch (op->code_rate_LP) {
212 if (op->hierarchy_information == HIERARCHY_AUTO ||
213 op->hierarchy_information == HIERARCHY_NONE)
219 switch (op->constellation) {
233 switch (op->transmission_mode) {
234 case TRANSMISSION_MODE_2K:
235 case TRANSMISSION_MODE_AUTO:
237 case TRANSMISSION_MODE_8K:
244 switch (op->guard_interval) {
245 case GUARD_INTERVAL_1_32:
246 case GUARD_INTERVAL_AUTO:
248 case GUARD_INTERVAL_1_16:
251 case GUARD_INTERVAL_1_8:
254 case GUARD_INTERVAL_1_4:
261 switch (op->hierarchy_information) {
279 buf[0] = TPS_GIVEN_1; /* TPS_GIVEN_1 and following registers */
281 buf[1] = msb(tps); /* TPS_GIVEN_(1|0) */
284 buf[3] = 0x50; // old
285 // buf[3] = 0xf4; // pinnacle
287 mt352_calc_nominal_rate(state, op->bandwidth, buf+4);
288 mt352_calc_input_freq(state, buf+6);
290 // if there is no secondary tuner, call set_params to set up a potential
291 // tuner attached elsewhere
292 if (state->config.no_tuner) {
293 if (fe->ops->tuner_ops.set_params) {
294 fe->ops->tuner_ops.set_params(fe, param);
295 if (fe->ops->i2c_gate_ctrl) fe->ops->i2c_gate_ctrl(fe, 0);
298 /* start decoding only */
299 mt352_write(fe, fsm_go, 2);
302 // retrieve the pllbuf - we do this even if there is no
303 // secondary tuner simply so we have a record of what was sent for
305 if (fe->ops->tuner_ops.pllbuf) {
306 fe->ops->tuner_ops.pllbuf(fe, param, buf+8, 5);
308 mt352_write(fe, buf, sizeof(buf));
311 // send PLL and start tuning and then decoding
312 if (!state->config.no_tuner) {
313 mt352_write(fe, tuner_go, 2);
319 static int mt352_get_parameters(struct dvb_frontend* fe,
320 struct dvb_frontend_parameters *param)
322 struct mt352_state* state = fe->demodulator_priv;
326 struct dvb_ofdm_parameters *op = ¶m->u.ofdm;
327 static const u8 tps_fec_to_api[8] =
339 if ( (mt352_read_register(state,0x00) & 0xC0) != 0xC0 )
342 /* Use TPS_RECEIVED-registers, not the TPS_CURRENT-registers because
343 * the mt352 sometimes works with the wrong parameters
345 tps = (mt352_read_register(state, TPS_RECEIVED_1) << 8) | mt352_read_register(state, TPS_RECEIVED_0);
346 div = (mt352_read_register(state, CHAN_START_1) << 8) | mt352_read_register(state, CHAN_START_0);
347 trl = mt352_read_register(state, TRL_NOMINAL_RATE_1);
349 op->code_rate_HP = tps_fec_to_api[(tps >> 7) & 7];
350 op->code_rate_LP = tps_fec_to_api[(tps >> 4) & 7];
352 switch ( (tps >> 13) & 3)
355 op->constellation = QPSK;
358 op->constellation = QAM_16;
361 op->constellation = QAM_64;
364 op->constellation = QAM_AUTO;
368 op->transmission_mode = (tps & 0x01) ? TRANSMISSION_MODE_8K : TRANSMISSION_MODE_2K;
370 switch ( (tps >> 2) & 3)
373 op->guard_interval = GUARD_INTERVAL_1_32;
376 op->guard_interval = GUARD_INTERVAL_1_16;
379 op->guard_interval = GUARD_INTERVAL_1_8;
382 op->guard_interval = GUARD_INTERVAL_1_4;
385 op->guard_interval = GUARD_INTERVAL_AUTO;
389 switch ( (tps >> 10) & 7)
392 op->hierarchy_information = HIERARCHY_NONE;
395 op->hierarchy_information = HIERARCHY_1;
398 op->hierarchy_information = HIERARCHY_2;
401 op->hierarchy_information = HIERARCHY_4;
404 op->hierarchy_information = HIERARCHY_AUTO;
408 param->frequency = ( 500 * (div - IF_FREQUENCYx6) ) / 3 * 1000;
411 op->bandwidth = BANDWIDTH_8_MHZ;
412 else if (trl == 0x64)
413 op->bandwidth = BANDWIDTH_7_MHZ;
415 op->bandwidth = BANDWIDTH_6_MHZ;
418 if (mt352_read_register(state, STATUS_2) & 0x02)
419 param->inversion = INVERSION_OFF;
421 param->inversion = INVERSION_ON;
426 static int mt352_read_status(struct dvb_frontend* fe, fe_status_t* status)
428 struct mt352_state* state = fe->demodulator_priv;
433 * The MT352 design manual from Zarlink states (page 46-47):
435 * Notes about the TUNER_GO register:
437 * If the Read_Tuner_Byte (bit-1) is activated, then the tuner status
438 * byte is copied from the tuner to the STATUS_3 register and
439 * completion of the read operation is indicated by bit-5 of the
440 * INTERRUPT_3 register.
443 if ((s0 = mt352_read_register(state, STATUS_0)) < 0)
445 if ((s1 = mt352_read_register(state, STATUS_1)) < 0)
447 if ((s3 = mt352_read_register(state, STATUS_3)) < 0)
452 *status |= FE_HAS_CARRIER;
454 *status |= FE_HAS_VITERBI;
456 *status |= FE_HAS_LOCK;
458 *status |= FE_HAS_SYNC;
460 *status |= FE_HAS_SIGNAL;
462 if ((*status & (FE_HAS_CARRIER | FE_HAS_VITERBI | FE_HAS_SYNC)) !=
463 (FE_HAS_CARRIER | FE_HAS_VITERBI | FE_HAS_SYNC))
464 *status &= ~FE_HAS_LOCK;
469 static int mt352_read_ber(struct dvb_frontend* fe, u32* ber)
471 struct mt352_state* state = fe->demodulator_priv;
473 *ber = (mt352_read_register (state, RS_ERR_CNT_2) << 16) |
474 (mt352_read_register (state, RS_ERR_CNT_1) << 8) |
475 (mt352_read_register (state, RS_ERR_CNT_0));
480 static int mt352_read_signal_strength(struct dvb_frontend* fe, u16* strength)
482 struct mt352_state* state = fe->demodulator_priv;
484 /* align the 12 bit AGC gain with the most significant bits */
485 u16 signal = ((mt352_read_register(state, AGC_GAIN_1) & 0x0f) << 12) |
486 (mt352_read_register(state, AGC_GAIN_0) << 4);
488 /* inverse of gain is signal strength */
493 static int mt352_read_snr(struct dvb_frontend* fe, u16* snr)
495 struct mt352_state* state = fe->demodulator_priv;
497 u8 _snr = mt352_read_register (state, SNR);
498 *snr = (_snr << 8) | _snr;
503 static int mt352_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
505 struct mt352_state* state = fe->demodulator_priv;
507 *ucblocks = (mt352_read_register (state, RS_UBC_1) << 8) |
508 (mt352_read_register (state, RS_UBC_0));
513 static int mt352_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fe_tune_settings)
515 fe_tune_settings->min_delay_ms = 800;
516 fe_tune_settings->step_size = 0;
517 fe_tune_settings->max_drift = 0;
522 static int mt352_init(struct dvb_frontend* fe)
524 struct mt352_state* state = fe->demodulator_priv;
526 static u8 mt352_reset_attach [] = { RESET, 0xC0 };
528 dprintk("%s: hello\n",__FUNCTION__);
530 if ((mt352_read_register(state, CLOCK_CTL) & 0x10) == 0 ||
531 (mt352_read_register(state, CONFIG) & 0x20) == 0) {
533 /* Do a "hard" reset */
534 mt352_write(fe, mt352_reset_attach, sizeof(mt352_reset_attach));
535 return state->config.demod_init(fe);
541 static void mt352_release(struct dvb_frontend* fe)
543 struct mt352_state* state = fe->demodulator_priv;
547 static struct dvb_frontend_ops mt352_ops;
549 struct dvb_frontend* mt352_attach(const struct mt352_config* config,
550 struct i2c_adapter* i2c)
552 struct mt352_state* state = NULL;
554 /* allocate memory for the internal state */
555 state = kzalloc(sizeof(struct mt352_state), GFP_KERNEL);
556 if (state == NULL) goto error;
558 /* setup the state */
560 memcpy(&state->config,config,sizeof(struct mt352_config));
561 memcpy(&state->ops, &mt352_ops, sizeof(struct dvb_frontend_ops));
563 /* check if the demod is there */
564 if (mt352_read_register(state, CHIP_ID) != ID_MT352) goto error;
566 /* create dvb_frontend */
567 state->frontend.ops = &state->ops;
568 state->frontend.demodulator_priv = state;
569 return &state->frontend;
576 static struct dvb_frontend_ops mt352_ops = {
579 .name = "Zarlink MT352 DVB-T",
581 .frequency_min = 174000000,
582 .frequency_max = 862000000,
583 .frequency_stepsize = 166667,
584 .frequency_tolerance = 0,
585 .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 |
586 FE_CAN_FEC_3_4 | FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 |
588 FE_CAN_QPSK | FE_CAN_QAM_16 | FE_CAN_QAM_64 | FE_CAN_QAM_AUTO |
589 FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO |
590 FE_CAN_HIERARCHY_AUTO | FE_CAN_RECOVER |
594 .release = mt352_release,
597 .sleep = mt352_sleep,
599 .set_frontend = mt352_set_parameters,
600 .get_frontend = mt352_get_parameters,
601 .get_tune_settings = mt352_get_tune_settings,
603 .read_status = mt352_read_status,
604 .read_ber = mt352_read_ber,
605 .read_signal_strength = mt352_read_signal_strength,
606 .read_snr = mt352_read_snr,
607 .read_ucblocks = mt352_read_ucblocks,
610 module_param(debug, int, 0644);
611 MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off).");
613 MODULE_DESCRIPTION("Zarlink MT352 DVB-T Demodulator driver");
614 MODULE_AUTHOR("Holger Waechtler, Daniel Mack, Antonio Mancuso");
615 MODULE_LICENSE("GPL");
617 EXPORT_SYMBOL(mt352_attach);
618 EXPORT_SYMBOL(mt352_write);