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

📄 tda8290.c

📁 linux 内核源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
	} else if (params->std & V4L2_STD_PAL_I) {		priv->sgIF = 124;		priv->tda8290_easy_mode = 0x08;		mode = "I";	} else if (params->std & V4L2_STD_DK) {		priv->sgIF = 124;		priv->tda8290_easy_mode = 0x10;		mode = "DK";	} else if (params->std & V4L2_STD_SECAM_L) {		priv->sgIF = 124;		priv->tda8290_easy_mode = 0x20;		mode = "L";	} else if (params->std & V4L2_STD_SECAM_LC) {		priv->sgIF = 20;		priv->tda8290_easy_mode = 0x40;		mode = "LC";	} else {		priv->sgIF = 124;		priv->tda8290_easy_mode = 0x10;		mode = "xx";	}	if (params->mode == V4L2_TUNER_RADIO)		priv->sgIF = 88; /* if frequency is 5.5 MHz */	tuner_dbg("setting tda8290 to system %s\n", mode);}static int tda8290_set_params(struct dvb_frontend *fe,			      struct analog_parameters *params){	struct tda8290_priv *priv = fe->tuner_priv;	unsigned char soft_reset[]  = { 0x00, 0x00 };	unsigned char easy_mode[]   = { 0x01, priv->tda8290_easy_mode };	unsigned char expert_mode[] = { 0x01, 0x80 };	unsigned char agc_out_on[]  = { 0x02, 0x00 };	unsigned char gainset_off[] = { 0x28, 0x14 };	unsigned char if_agc_spd[]  = { 0x0f, 0x88 };	unsigned char adc_head_6[]  = { 0x05, 0x04 };	unsigned char adc_head_9[]  = { 0x05, 0x02 };	unsigned char adc_head_12[] = { 0x05, 0x01 };	unsigned char pll_bw_nom[]  = { 0x0d, 0x47 };	unsigned char pll_bw_low[]  = { 0x0d, 0x27 };	unsigned char gainset_2[]   = { 0x28, 0x64 };	unsigned char agc_rst_on[]  = { 0x0e, 0x0b };	unsigned char agc_rst_off[] = { 0x0e, 0x09 };	unsigned char if_agc_set[]  = { 0x0f, 0x81 };	unsigned char addr_adc_sat  = 0x1a;	unsigned char addr_agc_stat = 0x1d;	unsigned char addr_pll_stat = 0x1b;	unsigned char adc_sat, agc_stat,		      pll_stat;	int i;	set_audio(fe, params);	if (priv->lna_cfg)		tuner_dbg("tda827xa config is 0x%02x\n", *priv->lna_cfg);	tuner_i2c_xfer_send(&priv->i2c_props, easy_mode, 2);	tuner_i2c_xfer_send(&priv->i2c_props, agc_out_on, 2);	tuner_i2c_xfer_send(&priv->i2c_props, soft_reset, 2);	msleep(1);	expert_mode[1] = priv->tda8290_easy_mode + 0x80;	tuner_i2c_xfer_send(&priv->i2c_props, expert_mode, 2);	tuner_i2c_xfer_send(&priv->i2c_props, gainset_off, 2);	tuner_i2c_xfer_send(&priv->i2c_props, if_agc_spd, 2);	if (priv->tda8290_easy_mode & 0x60)		tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);	else		tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);	tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);	tda8290_i2c_bridge(fe, 1);	if (priv->tda827x_ver != 0)		tda827xa_set_analog_params(fe, params);	else		tda827x_set_analog_params(fe, params);	for (i = 0; i < 3; i++) {		tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);		tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);		if (pll_stat & 0x80) {			tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);			tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);			tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);			tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);			tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat);			break;		} else {			tuner_dbg("tda8290 not locked, no signal?\n");			msleep(100);		}	}	/* adjust headroom resp. gain */	if ((agc_stat > 115) || (!(pll_stat & 0x80) && (adc_sat < 20))) {		tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n",			   agc_stat, adc_sat, pll_stat & 0x80);		tuner_i2c_xfer_send(&priv->i2c_props, gainset_2, 2);		msleep(100);		tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);		tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);		tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);		tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);		if ((agc_stat > 115) || !(pll_stat & 0x80)) {			tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",				   agc_stat, pll_stat & 0x80);			if (priv->tda827x_ver != 0)				tda827xa_agcf(fe);			else				tda827x_agcf(fe);			msleep(100);			tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);			tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);			tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);			tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);			if((agc_stat > 115) || !(pll_stat & 0x80)) {				tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat);				tuner_i2c_xfer_send(&priv->i2c_props, adc_head_12, 2);				tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_low, 2);				msleep(100);			}		}	}	/* l/ l' deadlock? */	if(priv->tda8290_easy_mode & 0x60) {		tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);		tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);		tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);		tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);		if ((adc_sat > 20) || !(pll_stat & 0x80)) {			tuner_dbg("trying to resolve SECAM L deadlock\n");			tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);			msleep(40);			tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);		}	}	tda8290_i2c_bridge(fe, 0);	tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);	priv->frequency = (V4L2_TUNER_RADIO == params->mode) ?		params->frequency * 125 / 2 : params->frequency * 62500;	return 0;}/*---------------------------------------------------------------------*/static int tda8290_has_signal(struct dvb_frontend *fe){	struct tda8290_priv *priv = fe->tuner_priv;	int ret;	unsigned char i2c_get_afc[1] = { 0x1B };	unsigned char afc = 0;	/* for now, report based on afc status */	tuner_i2c_xfer_send(&priv->i2c_props, i2c_get_afc, ARRAY_SIZE(i2c_get_afc));	tuner_i2c_xfer_recv(&priv->i2c_props, &afc, 1);	ret = (afc & 0x80) ? 65535 : 0;	tuner_dbg("AFC status: %d\n", ret);	return ret;}static int tda8290_get_status(struct dvb_frontend *fe, u32 *status){	*status = 0;	if (tda8290_has_signal(fe))		*status = TUNER_STATUS_LOCKED;	return 0;}static int tda8290_get_rf_strength(struct dvb_frontend *fe, u16 *strength){	*strength = tda8290_has_signal(fe);	return 0;}/*---------------------------------------------------------------------*/static int tda8290_standby(struct dvb_frontend *fe){	struct tda8290_priv *priv = fe->tuner_priv;	unsigned char cb1[] = { 0x30, 0xD0 };	unsigned char tda8290_standby[] = { 0x00, 0x02 };	unsigned char tda8290_agc_tri[] = { 0x02, 0x20 };	struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0, .buf=cb1, .len = 2};	tda8290_i2c_bridge(fe, 1);	if (priv->tda827x_ver != 0)		cb1[1] = 0x90;	i2c_transfer(priv->i2c_props.adap, &msg, 1);	tda8290_i2c_bridge(fe, 0);	tuner_i2c_xfer_send(&priv->i2c_props, tda8290_agc_tri, 2);	tuner_i2c_xfer_send(&priv->i2c_props, tda8290_standby, 2);	return 0;}static void tda8290_init_if(struct dvb_frontend *fe){	struct tda8290_priv *priv = fe->tuner_priv;	unsigned char set_VS[] = { 0x30, 0x6F };	unsigned char set_GP00_CF[] = { 0x20, 0x01 };	unsigned char set_GP01_CF[] = { 0x20, 0x0B };	if ((priv->lna_cfg) &&	    ((*priv->lna_cfg == 1) || (*priv->lna_cfg == 2)))		tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);	else		tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);	tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);}static void tda8290_init_tuner(struct dvb_frontend *fe){	struct tda8290_priv *priv = fe->tuner_priv;	unsigned char tda8275_init[]  = { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,					  0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };	unsigned char tda8275a_init[] = { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,					  0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };	struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0,			      .buf=tda8275_init, .len = 14};	if (priv->tda827x_ver != 0)		msg.buf = tda8275a_init;	tda8290_i2c_bridge(fe, 1);	i2c_transfer(priv->i2c_props.adap, &msg, 1);	tda8290_i2c_bridge(fe, 0);}/*---------------------------------------------------------------------*/static int tda8290_release(struct dvb_frontend *fe){	kfree(fe->tuner_priv);	fe->tuner_priv = NULL;	return 0;}static int tda8290_get_frequency(struct dvb_frontend *fe, u32 *frequency){	struct tda8290_priv *priv = fe->tuner_priv;	*frequency = priv->frequency;	return 0;}static struct dvb_tuner_ops tda8290_tuner_ops = {	.sleep             = tda8290_standby,	.set_analog_params = tda8290_set_params,	.release           = tda8290_release,	.get_frequency     = tda8290_get_frequency,	.get_status        = tda8290_get_status,	.get_rf_strength   = tda8290_get_rf_strength,};struct dvb_frontend *tda8290_attach(struct dvb_frontend *fe,				    struct i2c_adapter* i2c_adap,				    u8 i2c_addr,				    struct tda8290_config *cfg){	struct tda8290_priv *priv = NULL;	u8 data;	int i, ret, tuners_found;	u32 tuner_addrs;	struct i2c_msg msg = {.flags=I2C_M_RD, .buf=&data, .len = 1};	priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);	if (priv == NULL)		return NULL;	fe->tuner_priv = priv;	priv->i2c_props.addr = i2c_addr;	priv->i2c_props.adap = i2c_adap;	if (cfg) {		priv->lna_cfg        = cfg->lna_cfg;		priv->tuner_callback = cfg->tuner_callback;	}	tda8290_i2c_bridge(fe, 1);	/* probe for tuner chip */	tuners_found = 0;	tuner_addrs = 0;	for (i=0x60; i<= 0x63; i++) {		msg.addr = i;		ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);		if (ret == 1) {			tuners_found++;			tuner_addrs = (tuner_addrs << 8) + i;		}	}	/* if there is more than one tuner, we expect the right one is	   behind the bridge and we choose the highest address that doesn't	   give a response now	 */	tda8290_i2c_bridge(fe, 0);	if(tuners_found > 1)		for (i = 0; i < tuners_found; i++) {			msg.addr = tuner_addrs  & 0xff;			ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);			if(ret == 1)				tuner_addrs = tuner_addrs >> 8;			else				break;		}	if (tuner_addrs == 0) {		tuner_addrs = 0x61;		tuner_info("could not clearly identify tuner address, defaulting to %x\n",			     tuner_addrs);	} else {		tuner_addrs = tuner_addrs & 0xff;		tuner_info("setting tuner address to %x\n", tuner_addrs);	}	priv->tda827x_addr = tuner_addrs;	msg.addr = tuner_addrs;	tda8290_i2c_bridge(fe, 1);	ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);	if( ret != 1)		tuner_warn("TDA827x access failed!\n");	memcpy(&fe->ops.tuner_ops, &tda8290_tuner_ops,	       sizeof(struct dvb_tuner_ops));	if ((data & 0x3c) == 0) {		strlcpy(fe->ops.tuner_ops.info.name, "tda8290+75",			sizeof(fe->ops.tuner_ops.info.name));		fe->ops.tuner_ops.info.frequency_min  =  55000000;		fe->ops.tuner_ops.info.frequency_max  = 860000000;		fe->ops.tuner_ops.info.frequency_step =    250000;		priv->tda827x_ver = 0;	} else {		strlcpy(fe->ops.tuner_ops.info.name, "tda8290+75a",			sizeof(fe->ops.tuner_ops.info.name));		fe->ops.tuner_ops.info.frequency_min  =  44000000;		fe->ops.tuner_ops.info.frequency_max  = 906000000;		fe->ops.tuner_ops.info.frequency_step =     62500;		priv->tda827x_ver = 2;	}	priv->tda827x_lpsel = 0;	tda8290_init_tuner(fe);	tda8290_init_if(fe);	return fe;}int tda8290_probe(struct i2c_adapter* i2c_adap, u8 i2c_addr){	struct tuner_i2c_props i2c_props = {		.adap = i2c_adap,		.addr = i2c_addr	};	unsigned char soft_reset[]   = { 0x00, 0x00 };	unsigned char easy_mode_b[]  = { 0x01, 0x02 };	unsigned char easy_mode_g[]  = { 0x01, 0x04 };	unsigned char restore_9886[] = { 0x00, 0xd6, 0x30 };	unsigned char addr_dto_lsb = 0x07;	unsigned char data;	tuner_i2c_xfer_send(&i2c_props, easy_mode_b, 2);	tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);	tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);	tuner_i2c_xfer_recv(&i2c_props, &data, 1);	if (data == 0) {		tuner_i2c_xfer_send(&i2c_props, easy_mode_g, 2);		tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);		tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);		tuner_i2c_xfer_recv(&i2c_props, &data, 1);		if (data == 0x7b) {			return 0;		}	}	tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);	return -1;}EXPORT_SYMBOL_GPL(tda8290_probe);EXPORT_SYMBOL_GPL(tda8290_attach);MODULE_DESCRIPTION("Philips TDA8290 + TDA8275 / TDA8275a tuner driver");MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann");MODULE_LICENSE("GPL");/* * Overrides for Emacs so that we follow Linus's tabbing style. * --------------------------------------------------------------------------- * Local variables: * c-basic-offset: 8 * End: */

⌨️ 快捷键说明

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