2 * TerraTec Cinergy T2/qanu USB2 DVB-T adapter.
4 * Copyright (C) 2007 Tomi Orava (tomimo@ncircle.nullnet.fi)
6 * Based on the dvb-usb-framework code and the
7 * original Terratec Cinergy T2 driver by:
9 * Copyright (C) 2004 Daniel Mack <daniel@qanu.de> and
10 * Holger Waechtler <holger@qanu.de>
12 * Protocol Spec published on http://qanu.de/specs/terratec_cinergyT2.pdf
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 #include "cinergyT2.h"
34 * convert linux-dvb frontend parameter set into TPS.
35 * See ETSI ETS-300744, section 4.6.2, table 9 for details.
37 * This function is probably reusable and may better get placed in a support
40 * We replace errornous fields by default TPS fields (the ones with value 0).
43 static uint16_t compute_tps(struct dtv_frontend_properties
*op
)
47 switch (op
->code_rate_HP
) {
63 /* tps |= (0 << 7) */;
66 switch (op
->code_rate_LP
) {
82 /* tps |= (0 << 4) */;
85 switch (op
->modulation
) {
94 /* tps |= (0 << 13) */;
97 switch (op
->transmission_mode
) {
98 case TRANSMISSION_MODE_8K
:
101 case TRANSMISSION_MODE_2K
:
103 /* tps |= (0 << 0) */;
106 switch (op
->guard_interval
) {
107 case GUARD_INTERVAL_1_16
:
110 case GUARD_INTERVAL_1_8
:
113 case GUARD_INTERVAL_1_4
:
116 case GUARD_INTERVAL_1_32
:
118 /* tps |= (0 << 2) */;
121 switch (op
->hierarchy
) {
133 /* tps |= (0 << 10) */;
139 struct cinergyt2_fe_state
{
140 struct dvb_frontend fe
;
141 struct dvb_usb_device
*d
;
143 unsigned char data
[64];
144 struct mutex data_mutex
;
146 struct dvbt_get_status_msg status
;
149 static int cinergyt2_fe_read_status(struct dvb_frontend
*fe
,
150 enum fe_status
*status
)
152 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
155 mutex_lock(&state
->data_mutex
);
156 state
->data
[0] = CINERGYT2_EP1_GET_TUNER_STATUS
;
158 ret
= dvb_usb_generic_rw(state
->d
, state
->data
, 1,
159 state
->data
, sizeof(state
->status
), 0);
161 memcpy(&state
->status
, state
->data
, sizeof(state
->status
));
162 mutex_unlock(&state
->data_mutex
);
169 if (0xffff - le16_to_cpu(state
->status
.gain
) > 30)
170 *status
|= FE_HAS_SIGNAL
;
171 if (state
->status
.lock_bits
& (1 << 6))
172 *status
|= FE_HAS_LOCK
;
173 if (state
->status
.lock_bits
& (1 << 5))
174 *status
|= FE_HAS_SYNC
;
175 if (state
->status
.lock_bits
& (1 << 4))
176 *status
|= FE_HAS_CARRIER
;
177 if (state
->status
.lock_bits
& (1 << 1))
178 *status
|= FE_HAS_VITERBI
;
180 if ((*status
& (FE_HAS_CARRIER
| FE_HAS_VITERBI
| FE_HAS_SYNC
)) !=
181 (FE_HAS_CARRIER
| FE_HAS_VITERBI
| FE_HAS_SYNC
))
182 *status
&= ~FE_HAS_LOCK
;
187 static int cinergyt2_fe_read_ber(struct dvb_frontend
*fe
, u32
*ber
)
189 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
191 *ber
= le32_to_cpu(state
->status
.viterbi_error_rate
);
195 static int cinergyt2_fe_read_unc_blocks(struct dvb_frontend
*fe
, u32
*unc
)
197 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
199 *unc
= le32_to_cpu(state
->status
.uncorrected_block_count
);
203 static int cinergyt2_fe_read_signal_strength(struct dvb_frontend
*fe
,
206 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
208 *strength
= (0xffff - le16_to_cpu(state
->status
.gain
));
212 static int cinergyt2_fe_read_snr(struct dvb_frontend
*fe
, u16
*snr
)
214 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
216 *snr
= (state
->status
.snr
<< 8) | state
->status
.snr
;
220 static int cinergyt2_fe_init(struct dvb_frontend
*fe
)
225 static int cinergyt2_fe_sleep(struct dvb_frontend
*fe
)
227 deb_info("cinergyt2_fe_sleep() Called\n");
231 static int cinergyt2_fe_get_tune_settings(struct dvb_frontend
*fe
,
232 struct dvb_frontend_tune_settings
*tune
)
234 tune
->min_delay_ms
= 800;
238 static int cinergyt2_fe_set_frontend(struct dvb_frontend
*fe
)
240 struct dtv_frontend_properties
*fep
= &fe
->dtv_property_cache
;
241 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
242 struct dvbt_set_parameters_msg
*param
;
245 mutex_lock(&state
->data_mutex
);
247 param
= (void *)state
->data
;
248 param
->cmd
= CINERGYT2_EP1_SET_TUNER_PARAMETERS
;
249 param
->tps
= cpu_to_le16(compute_tps(fep
));
250 param
->freq
= cpu_to_le32(fep
->frequency
/ 1000);
253 switch (fep
->bandwidth_hz
) {
256 param
->bandwidth
= 8;
259 param
->bandwidth
= 7;
262 param
->bandwidth
= 6;
266 err
= dvb_usb_generic_rw(state
->d
, state
->data
, sizeof(*param
),
269 err("cinergyt2_fe_set_frontend() Failed! err=%d\n", err
);
271 mutex_unlock(&state
->data_mutex
);
272 return (err
< 0) ? err
: 0;
275 static void cinergyt2_fe_release(struct dvb_frontend
*fe
)
277 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
281 static const struct dvb_frontend_ops cinergyt2_fe_ops
;
283 struct dvb_frontend
*cinergyt2_fe_attach(struct dvb_usb_device
*d
)
285 struct cinergyt2_fe_state
*s
= kzalloc(sizeof(
286 struct cinergyt2_fe_state
), GFP_KERNEL
);
291 memcpy(&s
->fe
.ops
, &cinergyt2_fe_ops
, sizeof(struct dvb_frontend_ops
));
292 s
->fe
.demodulator_priv
= s
;
293 mutex_init(&s
->data_mutex
);
298 static const struct dvb_frontend_ops cinergyt2_fe_ops
= {
299 .delsys
= { SYS_DVBT
},
302 .frequency_min
= 174000000,
303 .frequency_max
= 862000000,
304 .frequency_stepsize
= 166667,
305 .caps
= FE_CAN_INVERSION_AUTO
| FE_CAN_FEC_1_2
306 | FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
307 | FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
308 | FE_CAN_FEC_AUTO
| FE_CAN_QPSK
309 | FE_CAN_QAM_16
| FE_CAN_QAM_64
311 | FE_CAN_TRANSMISSION_MODE_AUTO
312 | FE_CAN_GUARD_INTERVAL_AUTO
313 | FE_CAN_HIERARCHY_AUTO
318 .release
= cinergyt2_fe_release
,
320 .init
= cinergyt2_fe_init
,
321 .sleep
= cinergyt2_fe_sleep
,
323 .set_frontend
= cinergyt2_fe_set_frontend
,
324 .get_tune_settings
= cinergyt2_fe_get_tune_settings
,
326 .read_status
= cinergyt2_fe_read_status
,
327 .read_ber
= cinergyt2_fe_read_ber
,
328 .read_signal_strength
= cinergyt2_fe_read_signal_strength
,
329 .read_snr
= cinergyt2_fe_read_snr
,
330 .read_ucblocks
= cinergyt2_fe_read_unc_blocks
,