⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 l64781.c

📁 trident tm5600的linux驱动
💻 C
📖 第 1 页 / 共 2 页
字号:
/*    driver for LSI L64781 COFDM demodulator    Copyright (C) 2001 Holger Waechtler for Convergence Integrated Media GmbH		       Marko Kohtala <marko.kohtala@luukku.com>    This program is free software; you can redistribute it and/or modify    it under the terms of the GNU General Public License as published by    the Free Software Foundation; either version 2 of the License, or    (at your option) any later version.    This program is distributed in the hope that it will be useful,    but WITHOUT ANY WARRANTY; without even the implied warranty of    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    GNU General Public License for more details.    You should have received a copy of the GNU General Public License    along with this program; if not, write to the Free Software    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.*/#include <linux/init.h>#include <linux/kernel.h>#include <linux/module.h>#include <linux/string.h>#include <linux/slab.h>#include "dvb_frontend.h"#include "l64781.h"struct l64781_state {	struct i2c_adapter* i2c;	const struct l64781_config* config;	struct dvb_frontend frontend;	/* private demodulator data */	unsigned int first:1;};#define dprintk(args...) \	do { \		if (debug) printk(KERN_DEBUG "l64781: " args); \	} while (0)static int debug;module_param(debug, int, 0644);MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off).");static int l64781_writereg (struct l64781_state* state, u8 reg, u8 data){	int ret;	u8 buf [] = { reg, data };	struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf, .len = 2 };	if ((ret = i2c_transfer(state->i2c, &msg, 1)) != 1)		dprintk ("%s: write_reg error (reg == %02x) = %02x!\n",			 __func__, reg, ret);	return (ret != 1) ? -1 : 0;}static int l64781_readreg (struct l64781_state* state, u8 reg){	int ret;	u8 b0 [] = { reg };	u8 b1 [] = { 0 };	struct i2c_msg msg [] = { { .addr = state->config->demod_address, .flags = 0, .buf = b0, .len = 1 },			   { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b1, .len = 1 } };	ret = i2c_transfer(state->i2c, msg, 2);	if (ret != 2) return ret;	return b1[0];}static void apply_tps (struct l64781_state* state){	l64781_writereg (state, 0x2a, 0x00);	l64781_writereg (state, 0x2a, 0x01);	/* This here is a little bit questionable because it enables	   the automatic update of TPS registers. I think we'd need to	   handle the IRQ from FE to update some other registers as	   well, or at least implement some magic to tuning to correct	   to the TPS received from transmission. */	l64781_writereg (state, 0x2a, 0x02);}static void reset_afc (struct l64781_state* state){	/* Set AFC stall for the AFC_INIT_FRQ setting, TIM_STALL for	   timing offset */	l64781_writereg (state, 0x07, 0x9e); /* stall AFC */	l64781_writereg (state, 0x08, 0);    /* AFC INIT FREQ */	l64781_writereg (state, 0x09, 0);	l64781_writereg (state, 0x0a, 0);	l64781_writereg (state, 0x07, 0x8e);	l64781_writereg (state, 0x0e, 0);    /* AGC gain to zero in beginning */	l64781_writereg (state, 0x11, 0x80); /* stall TIM */	l64781_writereg (state, 0x10, 0);    /* TIM_OFFSET_LSB */	l64781_writereg (state, 0x12, 0);	l64781_writereg (state, 0x13, 0);	l64781_writereg (state, 0x11, 0x00);}static int reset_and_configure (struct l64781_state* state){	u8 buf [] = { 0x06 };	struct i2c_msg msg = { .addr = 0x00, .flags = 0, .buf = buf, .len = 1 };	// NOTE: this is correct in writing to address 0x00	return (i2c_transfer(state->i2c, &msg, 1) == 1) ? 0 : -ENODEV;}static int apply_frontend_param (struct dvb_frontend* fe, struct dvb_frontend_parameters *param){	struct l64781_state* state = fe->demodulator_priv;	/* The coderates for FEC_NONE, FEC_4_5 and FEC_FEC_6_7 are arbitrary */	static const u8 fec_tab[] = { 7, 0, 1, 2, 9, 3, 10, 4 };	/* QPSK, QAM_16, QAM_64 */	static const u8 qam_tab [] = { 2, 4, 0, 6 };	static const u8 bw_tab [] = { 8, 7, 6 };  /* 8Mhz, 7MHz, 6MHz */	static const u8 guard_tab [] = { 1, 2, 4, 8 };	/* The Grundig 29504-401.04 Tuner comes with 18.432MHz crystal. */	static const u32 ppm = 8000;	struct dvb_ofdm_parameters *p = &param->u.ofdm;	u32 ddfs_offset_fixed;/*	u32 ddfs_offset_variable = 0x6000-((1000000UL+ppm)/ *//*			bw_tab[p->bandWidth]<<10)/15625; */	u32 init_freq;	u32 spi_bias;	u8 val0x04;	u8 val0x05;	u8 val0x06;	int bw = p->bandwidth - BANDWIDTH_8_MHZ;	if (fe->ops.tuner_ops.set_params) {		fe->ops.tuner_ops.set_params(fe, param);		if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0);	}	if (param->inversion != INVERSION_ON &&	    param->inversion != INVERSION_OFF)		return -EINVAL;	if (bw < 0 || bw > 2)		return -EINVAL;	if (p->code_rate_HP != FEC_1_2 && p->code_rate_HP != FEC_2_3 &&	    p->code_rate_HP != FEC_3_4 && p->code_rate_HP != FEC_5_6 &&	    p->code_rate_HP != FEC_7_8)		return -EINVAL;	if (p->hierarchy_information != HIERARCHY_NONE &&	    (p->code_rate_LP != FEC_1_2 && p->code_rate_LP != FEC_2_3 &&	     p->code_rate_LP != FEC_3_4 && p->code_rate_LP != FEC_5_6 &&	     p->code_rate_LP != FEC_7_8))		return -EINVAL;	if (p->constellation != QPSK && p->constellation != QAM_16 &&	    p->constellation != QAM_64)		return -EINVAL;	if (p->transmission_mode != TRANSMISSION_MODE_2K &&	    p->transmission_mode != TRANSMISSION_MODE_8K)		return -EINVAL;	if (p->guard_interval < GUARD_INTERVAL_1_32 ||	    p->guard_interval > GUARD_INTERVAL_1_4)		return -EINVAL;	if (p->hierarchy_information < HIERARCHY_NONE ||	    p->hierarchy_information > HIERARCHY_4)		return -EINVAL;	ddfs_offset_fixed = 0x4000-(ppm<<16)/bw_tab[p->bandwidth]/1000000;	/* This works up to 20000 ppm, it overflows if too large ppm! */	init_freq = (((8UL<<25) + (8UL<<19) / 25*ppm / (15625/25)) /			bw_tab[p->bandwidth] & 0xFFFFFF);	/* SPI bias calculation is slightly modified to fit in 32bit */	/* will work for high ppm only... */	spi_bias = 378 * (1 << 10);	spi_bias *= 16;	spi_bias *= bw_tab[p->bandwidth];	spi_bias *= qam_tab[p->constellation];	spi_bias /= p->code_rate_HP + 1;	spi_bias /= (guard_tab[p->guard_interval] + 32);	spi_bias *= 1000ULL;	spi_bias /= 1000ULL + ppm/1000;	spi_bias *= p->code_rate_HP;	val0x04 = (p->transmission_mode << 2) | p->guard_interval;	val0x05 = fec_tab[p->code_rate_HP];	if (p->hierarchy_information != HIERARCHY_NONE)		val0x05 |= (p->code_rate_LP - FEC_1_2) << 3;	val0x06 = (p->hierarchy_information << 2) | p->constellation;	l64781_writereg (state, 0x04, val0x04);	l64781_writereg (state, 0x05, val0x05);	l64781_writereg (state, 0x06, val0x06);	reset_afc (state);	/* Technical manual section 2.6.1, TIM_IIR_GAIN optimal values */	l64781_writereg (state, 0x15,			 p->transmission_mode == TRANSMISSION_MODE_2K ? 1 : 3);	l64781_writereg (state, 0x16, init_freq & 0xff);	l64781_writereg (state, 0x17, (init_freq >> 8) & 0xff);	l64781_writereg (state, 0x18, (init_freq >> 16) & 0xff);	l64781_writereg (state, 0x1b, spi_bias & 0xff);	l64781_writereg (state, 0x1c, (spi_bias >> 8) & 0xff);	l64781_writereg (state, 0x1d, ((spi_bias >> 16) & 0x7f) |		(param->inversion == INVERSION_ON ? 0x80 : 0x00));	l64781_writereg (state, 0x22, ddfs_offset_fixed & 0xff);	l64781_writereg (state, 0x23, (ddfs_offset_fixed >> 8) & 0x3f);	l64781_readreg (state, 0x00);  /*  clear interrupt registers... */	l64781_readreg (state, 0x01);  /*  dto. */	apply_tps (state);	return 0;}static int get_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters* param){	struct l64781_state* state = fe->demodulator_priv;	int tmp;	tmp = l64781_readreg(state, 0x04);	switch(tmp & 3) {	case 0:		param->u.ofdm.guard_interval = GUARD_INTERVAL_1_32;		break;	case 1:		param->u.ofdm.guard_interval = GUARD_INTERVAL_1_16;		break;	case 2:		param->u.ofdm.guard_interval = GUARD_INTERVAL_1_8;		break;	case 3:		param->u.ofdm.guard_interval = GUARD_INTERVAL_1_4;		break;	}	switch((tmp >> 2) & 3) {	case 0:		param->u.ofdm.transmission_mode = TRANSMISSION_MODE_2K;		break;	case 1:		param->u.ofdm.transmission_mode = TRANSMISSION_MODE_8K;		break;	default:		printk("Unexpected value for transmission_mode\n");	}	tmp = l64781_readreg(state, 0x05);	switch(tmp & 7) {	case 0:		param->u.ofdm.code_rate_HP = FEC_1_2;		break;	case 1:		param->u.ofdm.code_rate_HP = FEC_2_3;		break;	case 2:		param->u.ofdm.code_rate_HP = FEC_3_4;		break;	case 3:		param->u.ofdm.code_rate_HP = FEC_5_6;		break;	case 4:		param->u.ofdm.code_rate_HP = FEC_7_8;		break;	default:		printk("Unexpected value for code_rate_HP\n");	}	switch((tmp >> 3) & 7) {	case 0:		param->u.ofdm.code_rate_LP = FEC_1_2;		break;	case 1:		param->u.ofdm.code_rate_LP = FEC_2_3;		break;	case 2:		param->u.ofdm.code_rate_LP = FEC_3_4;		break;	case 3:		param->u.ofdm.code_rate_LP = FEC_5_6;		break;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -