| 
									
										
										
										
											2005-07-07 17:58:23 -07:00
										 |  |  | /* Frontend part of the Linux driver for the WideView/ Yakumo/ Hama/
 | 
					
						
							|  |  |  |  * Typhoon/ Yuan DVB-T USB2.0 receiver. | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2005 Patrick Boettcher <patrick.boettcher@desy.de> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	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, version 2. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * see Documentation/dvb/README.dvb-usb for more information | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include "dtt200u.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct dtt200u_fe_state { | 
					
						
							|  |  |  | 	struct dvb_usb_device *d; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	fe_status_t stat; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-26 15:44:27 -03:00
										 |  |  | 	struct dtv_frontend_properties fep; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	struct dvb_frontend frontend; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dtt200u_fe_read_status(struct dvb_frontend* fe, fe_status_t *stat) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct dtt200u_fe_state *state = fe->demodulator_priv; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	u8 st = GET_TUNE_STATUS, b[3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dvb_usb_generic_rw(state->d,&st,1,b,3,0); | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	switch (b[0]) { | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 		case 0x01: | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 			*stat = FE_HAS_SIGNAL | FE_HAS_CARRIER | | 
					
						
							|  |  |  | 				FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 		case 0x00: /* pending */ | 
					
						
							|  |  |  | 			*stat = FE_TIMEDOUT; /* during set_frontend */ | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 		case 0x02: /* failed */ | 
					
						
							|  |  |  | 			*stat = 0; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | static int dtt200u_fe_read_ber(struct dvb_frontend* fe, u32 *ber) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct dtt200u_fe_state *state = fe->demodulator_priv; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	u8 bw = GET_VIT_ERR_CNT,b[3]; | 
					
						
							|  |  |  | 	dvb_usb_generic_rw(state->d,&bw,1,b,3,0); | 
					
						
							|  |  |  | 	*ber = (b[0] << 16) | (b[1] << 8) | b[2]; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dtt200u_fe_read_unc_blocks(struct dvb_frontend* fe, u32 *unc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct dtt200u_fe_state *state = fe->demodulator_priv; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	u8 bw = GET_RS_UNCOR_BLK_CNT,b[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dvb_usb_generic_rw(state->d,&bw,1,b,2,0); | 
					
						
							|  |  |  | 	*unc = (b[0] << 8) | b[1]; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dtt200u_fe_read_signal_strength(struct dvb_frontend* fe, u16 *strength) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct dtt200u_fe_state *state = fe->demodulator_priv; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	u8 bw = GET_AGC, b; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	dvb_usb_generic_rw(state->d,&bw,1,&b,1,0); | 
					
						
							|  |  |  | 	*strength = (b << 8) | b; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dtt200u_fe_read_snr(struct dvb_frontend* fe, u16 *snr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct dtt200u_fe_state *state = fe->demodulator_priv; | 
					
						
							|  |  |  | 	u8 bw = GET_SNR,br; | 
					
						
							|  |  |  | 	dvb_usb_generic_rw(state->d,&bw,1,&br,1,0); | 
					
						
							|  |  |  | 	*snr = ~((br << 8) | br); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dtt200u_fe_init(struct dvb_frontend* fe) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct dtt200u_fe_state *state = fe->demodulator_priv; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	u8 b = SET_INIT; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	return dvb_usb_generic_write(state->d,&b,1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dtt200u_fe_sleep(struct dvb_frontend* fe) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return dtt200u_fe_init(fe); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dtt200u_fe_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings *tune) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	tune->min_delay_ms = 1500; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	tune->step_size = 0; | 
					
						
							|  |  |  | 	tune->max_drift = 0; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-26 15:44:27 -03:00
										 |  |  | static int dtt200u_fe_set_frontend(struct dvb_frontend *fe) | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-26 15:44:27 -03:00
										 |  |  | 	struct dtv_frontend_properties *fep = &fe->dtv_property_cache; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	struct dtt200u_fe_state *state = fe->demodulator_priv; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 	fe_status_t st; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	u16 freq = fep->frequency / 250000; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	u8 bwbuf[2] = { SET_BANDWIDTH, 0 },freqbuf[3] = { SET_RF_FREQ, 0, 0 }; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-26 15:44:27 -03:00
										 |  |  | 	switch (fep->bandwidth_hz) { | 
					
						
							|  |  |  | 	case 8000000: | 
					
						
							|  |  |  | 		bwbuf[1] = 8; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 7000000: | 
					
						
							|  |  |  | 		bwbuf[1] = 7; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 6000000: | 
					
						
							|  |  |  | 		bwbuf[1] = 6; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dvb_usb_generic_write(state->d,bwbuf,2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	freqbuf[1] = freq & 0xff; | 
					
						
							|  |  |  | 	freqbuf[2] = (freq >> 8) & 0xff; | 
					
						
							|  |  |  | 	dvb_usb_generic_write(state->d,freqbuf,3); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 	for (i = 0; i < 30; i++) { | 
					
						
							|  |  |  | 		msleep(20); | 
					
						
							|  |  |  | 		dtt200u_fe_read_status(fe, &st); | 
					
						
							|  |  |  | 		if (st & FE_TIMEDOUT) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												[media] dvb: don't require a parameter for get_frontend
Just like set_frontend, use the dvb cache properties for get_frontend.
This is more consistent, as both functions are now symetric. Also,
at the places get_frontend is called, it makes sense to update the
cache.
Most of this patch were generated by this small perl script:
	while (<>) { $file .= $_; }
	if ($file =~ m/\.get_frontend\s*=\s*([\d\w_]+)/) {
		my $get = $1;
		$file =~ s/($get)(\s*\([^\,\)]+)\,\s*struct\s+dtv_frontend_properties\s*\*\s*([_\d\w]+)\)\s*\{/\1\2)\n{\n\tstruct dtv_frontend_properties *\3 = &fe->dtv_property_cache;/g;
	}
	print $file;
Of course, the changes at dvb_frontend.[ch] were made by hand,
as well as the changes on a few other places, where get_frontend()
is called internally inside the driver.
On some places, get_frontend() were just a void function. Those
occurrences were removed, as the DVB core handles such cases.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
											
										 
											2011-12-30 11:30:21 -03:00
										 |  |  | static int dtt200u_fe_get_frontend(struct dvb_frontend* fe) | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
											
												[media] dvb: don't require a parameter for get_frontend
Just like set_frontend, use the dvb cache properties for get_frontend.
This is more consistent, as both functions are now symetric. Also,
at the places get_frontend is called, it makes sense to update the
cache.
Most of this patch were generated by this small perl script:
	while (<>) { $file .= $_; }
	if ($file =~ m/\.get_frontend\s*=\s*([\d\w_]+)/) {
		my $get = $1;
		$file =~ s/($get)(\s*\([^\,\)]+)\,\s*struct\s+dtv_frontend_properties\s*\*\s*([_\d\w]+)\)\s*\{/\1\2)\n{\n\tstruct dtv_frontend_properties *\3 = &fe->dtv_property_cache;/g;
	}
	print $file;
Of course, the changes at dvb_frontend.[ch] were made by hand,
as well as the changes on a few other places, where get_frontend()
is called internally inside the driver.
On some places, get_frontend() were just a void function. Those
occurrences were removed, as the DVB core handles such cases.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
											
										 
											2011-12-30 11:30:21 -03:00
										 |  |  | 	struct dtv_frontend_properties *fep = &fe->dtv_property_cache; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	struct dtt200u_fe_state *state = fe->demodulator_priv; | 
					
						
							| 
									
										
										
										
											2011-12-26 15:44:27 -03:00
										 |  |  | 	memcpy(fep, &state->fep, sizeof(struct dtv_frontend_properties)); | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void dtt200u_fe_release(struct dvb_frontend* fe) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct dtt200u_fe_state *state = (struct dtt200u_fe_state*) fe->demodulator_priv; | 
					
						
							|  |  |  | 	kfree(state); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct dvb_frontend_ops dtt200u_fe_ops; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct dvb_frontend* dtt200u_fe_attach(struct dvb_usb_device *d) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct dtt200u_fe_state* state = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* allocate memory for the internal state */ | 
					
						
							| 
									
										
										
										
											2006-01-11 19:40:56 -02:00
										 |  |  | 	state = kzalloc(sizeof(struct dtt200u_fe_state), GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	if (state == NULL) | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	deb_info("attaching frontend dtt200u\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	state->d = d; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-14 05:01:31 -03:00
										 |  |  | 	memcpy(&state->frontend.ops,&dtt200u_fe_ops,sizeof(struct dvb_frontend_ops)); | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	state->frontend.demodulator_priv = state; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-12 20:36:24 -03:00
										 |  |  | 	return &state->frontend; | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | error: | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct dvb_frontend_ops dtt200u_fe_ops = { | 
					
						
							| 
									
										
										
										
											2011-12-26 15:44:27 -03:00
										 |  |  | 	.delsys = { SYS_DVBT }, | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	.info = { | 
					
						
							| 
									
										
										
										
											2005-07-07 17:58:33 -07:00
										 |  |  | 		.name			= "WideView USB DVB-T", | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 		.frequency_min		= 44250000, | 
					
						
							|  |  |  | 		.frequency_max		= 867250000, | 
					
						
							|  |  |  | 		.frequency_stepsize	= 250000, | 
					
						
							|  |  |  | 		.caps = FE_CAN_INVERSION_AUTO | | 
					
						
							|  |  |  | 				FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 | | 
					
						
							|  |  |  | 				FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO | | 
					
						
							|  |  |  | 				FE_CAN_QPSK | FE_CAN_QAM_16 | FE_CAN_QAM_64 | FE_CAN_QAM_AUTO | | 
					
						
							|  |  |  | 				FE_CAN_TRANSMISSION_MODE_AUTO | | 
					
						
							|  |  |  | 				FE_CAN_GUARD_INTERVAL_AUTO | | 
					
						
							|  |  |  | 				FE_CAN_RECOVER | | 
					
						
							|  |  |  | 				FE_CAN_HIERARCHY_AUTO, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.release = dtt200u_fe_release, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.init = dtt200u_fe_init, | 
					
						
							|  |  |  | 	.sleep = dtt200u_fe_sleep, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-26 15:44:27 -03:00
										 |  |  | 	.set_frontend = dtt200u_fe_set_frontend, | 
					
						
							|  |  |  | 	.get_frontend = dtt200u_fe_get_frontend, | 
					
						
							| 
									
										
										
										
											2005-06-23 22:02:35 -07:00
										 |  |  | 	.get_tune_settings = dtt200u_fe_get_tune_settings, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.read_status = dtt200u_fe_read_status, | 
					
						
							|  |  |  | 	.read_ber = dtt200u_fe_read_ber, | 
					
						
							|  |  |  | 	.read_signal_strength = dtt200u_fe_read_signal_strength, | 
					
						
							|  |  |  | 	.read_snr = dtt200u_fe_read_snr, | 
					
						
							|  |  |  | 	.read_ucblocks = dtt200u_fe_read_unc_blocks, | 
					
						
							|  |  |  | }; |