2 * mxl111sf-demod.c - driver for the MaxLinear MXL111SF DVB-T demodulator
4 * Copyright (C) 2010-2014 Michael Krufky <mkrufky@linuxtv.org>
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.
21 #include "mxl111sf-demod.h"
22 #include "mxl111sf-reg.h"
25 static int mxl111sf_demod_debug
;
26 module_param_named(debug
, mxl111sf_demod_debug
, int, 0644);
27 MODULE_PARM_DESC(debug
, "set debugging level (1=info (or-able)).");
29 #define mxl_dbg(fmt, arg...) \
30 if (mxl111sf_demod_debug) \
31 mxl_printk(KERN_DEBUG, fmt, ##arg)
33 /* ------------------------------------------------------------------------ */
35 struct mxl111sf_demod_state
{
36 struct mxl111sf_state
*mxl_state
;
38 struct mxl111sf_demod_config
*cfg
;
40 struct dvb_frontend fe
;
43 /* ------------------------------------------------------------------------ */
45 static int mxl111sf_demod_read_reg(struct mxl111sf_demod_state
*state
,
48 return (state
->cfg
->read_reg
) ?
49 state
->cfg
->read_reg(state
->mxl_state
, addr
, data
) :
53 static int mxl111sf_demod_write_reg(struct mxl111sf_demod_state
*state
,
56 return (state
->cfg
->write_reg
) ?
57 state
->cfg
->write_reg(state
->mxl_state
, addr
, data
) :
62 int mxl111sf_demod_program_regs(struct mxl111sf_demod_state
*state
,
63 struct mxl111sf_reg_ctrl_info
*ctrl_reg_info
)
65 return (state
->cfg
->program_regs
) ?
66 state
->cfg
->program_regs(state
->mxl_state
, ctrl_reg_info
) :
70 /* ------------------------------------------------------------------------ */
74 int mxl1x1sf_demod_get_tps_code_rate(struct mxl111sf_demod_state
*state
,
75 fe_code_rate_t
*code_rate
)
78 int ret
= mxl111sf_demod_read_reg(state
, V6_CODE_RATE_TPS_REG
, &val
);
79 /* bit<2:0> - 000:1/2, 001:2/3, 010:3/4, 011:5/6, 100:7/8 */
83 switch (val
& V6_CODE_RATE_TPS_MASK
) {
105 int mxl1x1sf_demod_get_tps_modulation(struct mxl111sf_demod_state
*state
,
106 fe_modulation_t
*modulation
)
109 int ret
= mxl111sf_demod_read_reg(state
, V6_MODORDER_TPS_REG
, &val
);
110 /* Constellation, 00 : QPSK, 01 : 16QAM, 10:64QAM */
114 switch ((val
& V6_PARAM_CONSTELLATION_MASK
) >> 4) {
119 *modulation
= QAM_16
;
122 *modulation
= QAM_64
;
130 int mxl1x1sf_demod_get_tps_guard_fft_mode(struct mxl111sf_demod_state
*state
,
131 fe_transmit_mode_t
*fft_mode
)
134 int ret
= mxl111sf_demod_read_reg(state
, V6_MODE_TPS_REG
, &val
);
135 /* FFT Mode, 00:2K, 01:8K, 10:4K */
139 switch ((val
& V6_PARAM_FFT_MODE_MASK
) >> 2) {
141 *fft_mode
= TRANSMISSION_MODE_2K
;
144 *fft_mode
= TRANSMISSION_MODE_8K
;
147 *fft_mode
= TRANSMISSION_MODE_4K
;
155 int mxl1x1sf_demod_get_tps_guard_interval(struct mxl111sf_demod_state
*state
,
156 fe_guard_interval_t
*guard
)
159 int ret
= mxl111sf_demod_read_reg(state
, V6_CP_TPS_REG
, &val
);
160 /* 00:1/32, 01:1/16, 10:1/8, 11:1/4 */
164 switch ((val
& V6_PARAM_GI_MASK
) >> 4) {
166 *guard
= GUARD_INTERVAL_1_32
;
169 *guard
= GUARD_INTERVAL_1_16
;
172 *guard
= GUARD_INTERVAL_1_8
;
175 *guard
= GUARD_INTERVAL_1_4
;
183 int mxl1x1sf_demod_get_tps_hierarchy(struct mxl111sf_demod_state
*state
,
184 fe_hierarchy_t
*hierarchy
)
187 int ret
= mxl111sf_demod_read_reg(state
, V6_TPS_HIERACHY_REG
, &val
);
188 /* bit<6:4> - 000:Non hierarchy, 001:1, 010:2, 011:4 */
192 switch ((val
& V6_TPS_HIERARCHY_INFO_MASK
) >> 6) {
194 *hierarchy
= HIERARCHY_NONE
;
197 *hierarchy
= HIERARCHY_1
;
200 *hierarchy
= HIERARCHY_2
;
203 *hierarchy
= HIERARCHY_4
;
210 /* ------------------------------------------------------------------------ */
214 int mxl1x1sf_demod_get_sync_lock_status(struct mxl111sf_demod_state
*state
,
218 int ret
= mxl111sf_demod_read_reg(state
, V6_SYNC_LOCK_REG
, &val
);
221 *sync_lock
= (val
& SYNC_LOCK_MASK
) >> 4;
227 int mxl1x1sf_demod_get_rs_lock_status(struct mxl111sf_demod_state
*state
,
231 int ret
= mxl111sf_demod_read_reg(state
, V6_RS_LOCK_DET_REG
, &val
);
234 *rs_lock
= (val
& RS_LOCK_DET_MASK
) >> 3;
240 int mxl1x1sf_demod_get_tps_lock_status(struct mxl111sf_demod_state
*state
,
244 int ret
= mxl111sf_demod_read_reg(state
, V6_TPS_LOCK_REG
, &val
);
247 *tps_lock
= (val
& V6_PARAM_TPS_LOCK_MASK
) >> 6;
253 int mxl1x1sf_demod_get_fec_lock_status(struct mxl111sf_demod_state
*state
,
257 int ret
= mxl111sf_demod_read_reg(state
, V6_IRQ_STATUS_REG
, &val
);
260 *fec_lock
= (val
& IRQ_MASK_FEC_LOCK
) >> 4;
267 int mxl1x1sf_demod_get_cp_lock_status(struct mxl111sf_demod_state
*state
,
271 int ret
= mxl111sf_demod_read_reg(state
, V6_CP_LOCK_DET_REG
, &val
);
274 *cp_lock
= (val
& V6_CP_LOCK_DET_MASK
) >> 2;
280 static int mxl1x1sf_demod_reset_irq_status(struct mxl111sf_demod_state
*state
)
282 return mxl111sf_demod_write_reg(state
, 0x0e, 0xff);
285 /* ------------------------------------------------------------------------ */
287 static int mxl111sf_demod_set_frontend(struct dvb_frontend
*fe
)
289 struct mxl111sf_demod_state
*state
= fe
->demodulator_priv
;
292 struct mxl111sf_reg_ctrl_info phy_pll_patch
[] = {
293 {0x00, 0xff, 0x01}, /* change page to 1 */
298 {0x00, 0xff, 0x00}, /* change page to 0 */
304 if (fe
->ops
.tuner_ops
.set_params
) {
305 ret
= fe
->ops
.tuner_ops
.set_params(fe
);
310 ret
= mxl111sf_demod_program_regs(state
, phy_pll_patch
);
313 ret
= mxl1x1sf_demod_reset_irq_status(state
);
320 /* ------------------------------------------------------------------------ */
323 /* resets TS Packet error count */
324 /* After setting 7th bit of V5_PER_COUNT_RESET_REG, it should be reset to 0. */
326 int mxl1x1sf_demod_reset_packet_error_count(struct mxl111sf_demod_state
*state
)
328 struct mxl111sf_reg_ctrl_info reset_per_count
[] = {
333 return mxl111sf_demod_program_regs(state
, reset_per_count
);
337 /* returns TS Packet error count */
338 /* PER Count = FEC_PER_COUNT * (2 ** (FEC_PER_SCALE * 4)) */
339 static int mxl111sf_demod_read_ucblocks(struct dvb_frontend
*fe
, u32
*ucblocks
)
341 struct mxl111sf_demod_state
*state
= fe
->demodulator_priv
;
342 u32 fec_per_count
, fec_per_scale
;
348 /* FEC_PER_COUNT Register */
349 ret
= mxl111sf_demod_read_reg(state
, V6_FEC_PER_COUNT_REG
, &val
);
355 /* FEC_PER_SCALE Register */
356 ret
= mxl111sf_demod_read_reg(state
, V6_FEC_PER_SCALE_REG
, &val
);
360 val
&= V6_FEC_PER_SCALE_MASK
;
363 fec_per_scale
= 1 << val
;
365 fec_per_count
*= fec_per_scale
;
367 *ucblocks
= fec_per_count
;
372 #ifdef MXL111SF_DEMOD_ENABLE_CALCULATIONS
373 /* FIXME: leaving this enabled breaks the build on some architectures,
374 * and we shouldn't have any floating point math in the kernel, anyway.
376 * These macros need to be re-written, but it's harmless to simply
377 * return zero for now. */
378 #define CALCULATE_BER(avg_errors, count) \
379 ((u32)(avg_errors * 4)/(count*64*188*8))
380 #define CALCULATE_SNR(data) \
381 ((u32)((10 * (u32)data / 64) - 2.5))
383 #define CALCULATE_BER(avg_errors, count) 0
384 #define CALCULATE_SNR(data) 0
387 static int mxl111sf_demod_read_ber(struct dvb_frontend
*fe
, u32
*ber
)
389 struct mxl111sf_demod_state
*state
= fe
->demodulator_priv
;
395 ret
= mxl111sf_demod_read_reg(state
, V6_RS_AVG_ERRORS_LSB_REG
, &val1
);
398 ret
= mxl111sf_demod_read_reg(state
, V6_RS_AVG_ERRORS_MSB_REG
, &val2
);
401 ret
= mxl111sf_demod_read_reg(state
, V6_N_ACCUMULATE_REG
, &val3
);
405 *ber
= CALCULATE_BER((val1
| (val2
<< 8)), val3
);
410 static int mxl111sf_demod_calc_snr(struct mxl111sf_demod_state
*state
,
418 ret
= mxl111sf_demod_read_reg(state
, V6_SNR_RB_LSB_REG
, &val1
);
421 ret
= mxl111sf_demod_read_reg(state
, V6_SNR_RB_MSB_REG
, &val2
);
425 *snr
= CALCULATE_SNR(val1
| ((val2
& 0x03) << 8));
430 static int mxl111sf_demod_read_snr(struct dvb_frontend
*fe
, u16
*snr
)
432 struct mxl111sf_demod_state
*state
= fe
->demodulator_priv
;
434 int ret
= mxl111sf_demod_calc_snr(state
, snr
);
438 *snr
/= 10; /* 0.1 dB */
443 static int mxl111sf_demod_read_status(struct dvb_frontend
*fe
,
446 struct mxl111sf_demod_state
*state
= fe
->demodulator_priv
;
447 int ret
, locked
, cr_lock
, sync_lock
, fec_lock
;
451 ret
= mxl1x1sf_demod_get_rs_lock_status(state
, &locked
);
454 ret
= mxl1x1sf_demod_get_tps_lock_status(state
, &cr_lock
);
457 ret
= mxl1x1sf_demod_get_sync_lock_status(state
, &sync_lock
);
460 ret
= mxl1x1sf_demod_get_fec_lock_status(state
, &fec_lock
);
465 *status
|= FE_HAS_SIGNAL
;
467 *status
|= FE_HAS_CARRIER
;
469 *status
|= FE_HAS_SYNC
;
470 if (fec_lock
) /* false positives? */
471 *status
|= FE_HAS_VITERBI
;
473 if ((locked
) && (cr_lock
) && (sync_lock
))
474 *status
|= FE_HAS_LOCK
;
479 static int mxl111sf_demod_read_signal_strength(struct dvb_frontend
*fe
,
480 u16
*signal_strength
)
482 struct mxl111sf_demod_state
*state
= fe
->demodulator_priv
;
483 fe_modulation_t modulation
;
486 mxl111sf_demod_calc_snr(state
, &snr
);
487 mxl1x1sf_demod_get_tps_modulation(state
, &modulation
);
489 switch (modulation
) {
491 *signal_strength
= (snr
>= 1300) ?
492 min(65535, snr
* 44) : snr
* 38;
495 *signal_strength
= (snr
>= 1500) ?
496 min(65535, snr
* 38) : snr
* 33;
499 *signal_strength
= (snr
>= 2000) ?
500 min(65535, snr
* 29) : snr
* 25;
503 *signal_strength
= 0;
510 static int mxl111sf_demod_get_frontend(struct dvb_frontend
*fe
)
512 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
513 struct mxl111sf_demod_state
*state
= fe
->demodulator_priv
;
517 p
->inversion
= /* FIXME */ ? INVERSION_ON
: INVERSION_OFF
;
519 if (fe
->ops
.tuner_ops
.get_bandwidth
)
520 fe
->ops
.tuner_ops
.get_bandwidth(fe
, &p
->bandwidth_hz
);
521 if (fe
->ops
.tuner_ops
.get_frequency
)
522 fe
->ops
.tuner_ops
.get_frequency(fe
, &p
->frequency
);
523 mxl1x1sf_demod_get_tps_code_rate(state
, &p
->code_rate_HP
);
524 mxl1x1sf_demod_get_tps_code_rate(state
, &p
->code_rate_LP
);
525 mxl1x1sf_demod_get_tps_modulation(state
, &p
->modulation
);
526 mxl1x1sf_demod_get_tps_guard_fft_mode(state
,
527 &p
->transmission_mode
);
528 mxl1x1sf_demod_get_tps_guard_interval(state
,
530 mxl1x1sf_demod_get_tps_hierarchy(state
,
537 int mxl111sf_demod_get_tune_settings(struct dvb_frontend
*fe
,
538 struct dvb_frontend_tune_settings
*tune
)
540 tune
->min_delay_ms
= 1000;
544 static void mxl111sf_demod_release(struct dvb_frontend
*fe
)
546 struct mxl111sf_demod_state
*state
= fe
->demodulator_priv
;
549 fe
->demodulator_priv
= NULL
;
552 static struct dvb_frontend_ops mxl111sf_demod_ops
= {
553 .delsys
= { SYS_DVBT
},
555 .name
= "MaxLinear MxL111SF DVB-T demodulator",
556 .frequency_min
= 177000000,
557 .frequency_max
= 858000000,
558 .frequency_stepsize
= 166666,
559 .caps
= FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
560 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
561 FE_CAN_QPSK
| FE_CAN_QAM_16
| FE_CAN_QAM_64
|
563 FE_CAN_HIERARCHY_AUTO
| FE_CAN_GUARD_INTERVAL_AUTO
|
564 FE_CAN_TRANSMISSION_MODE_AUTO
| FE_CAN_RECOVER
566 .release
= mxl111sf_demod_release
,
568 .init
= mxl111sf_init
,
569 .i2c_gate_ctrl
= mxl111sf_i2c_gate_ctrl
,
571 .set_frontend
= mxl111sf_demod_set_frontend
,
572 .get_frontend
= mxl111sf_demod_get_frontend
,
573 .get_tune_settings
= mxl111sf_demod_get_tune_settings
,
574 .read_status
= mxl111sf_demod_read_status
,
575 .read_signal_strength
= mxl111sf_demod_read_signal_strength
,
576 .read_ber
= mxl111sf_demod_read_ber
,
577 .read_snr
= mxl111sf_demod_read_snr
,
578 .read_ucblocks
= mxl111sf_demod_read_ucblocks
,
581 struct dvb_frontend
*mxl111sf_demod_attach(struct mxl111sf_state
*mxl_state
,
582 struct mxl111sf_demod_config
*cfg
)
584 struct mxl111sf_demod_state
*state
= NULL
;
588 state
= kzalloc(sizeof(struct mxl111sf_demod_state
), GFP_KERNEL
);
592 state
->mxl_state
= mxl_state
;
595 memcpy(&state
->fe
.ops
, &mxl111sf_demod_ops
,
596 sizeof(struct dvb_frontend_ops
));
598 state
->fe
.demodulator_priv
= state
;
601 EXPORT_SYMBOL_GPL(mxl111sf_demod_attach
);
603 MODULE_DESCRIPTION("MaxLinear MxL111SF DVB-T demodulator driver");
604 MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
605 MODULE_LICENSE("GPL");
606 MODULE_VERSION("0.1");