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.
26 #include "cinergyT2.h"
30 * convert linux-dvb frontend parameter set into TPS.
31 * See ETSI ETS-300744, section 4.6.2, table 9 for details.
33 * This function is probably reusable and may better get placed in a support
36 * We replace errornous fields by default TPS fields (the ones with value 0).
39 static uint16_t compute_tps(struct dtv_frontend_properties
*op
)
43 switch (op
->code_rate_HP
) {
59 /* tps |= (0 << 7) */;
62 switch (op
->code_rate_LP
) {
78 /* tps |= (0 << 4) */;
81 switch (op
->modulation
) {
90 /* tps |= (0 << 13) */;
93 switch (op
->transmission_mode
) {
94 case TRANSMISSION_MODE_8K
:
97 case TRANSMISSION_MODE_2K
:
99 /* tps |= (0 << 0) */;
102 switch (op
->guard_interval
) {
103 case GUARD_INTERVAL_1_16
:
106 case GUARD_INTERVAL_1_8
:
109 case GUARD_INTERVAL_1_4
:
112 case GUARD_INTERVAL_1_32
:
114 /* tps |= (0 << 2) */;
117 switch (op
->hierarchy
) {
129 /* tps |= (0 << 10) */;
135 struct cinergyt2_fe_state
{
136 struct dvb_frontend fe
;
137 struct dvb_usb_device
*d
;
139 unsigned char data
[64];
140 struct mutex data_mutex
;
142 struct dvbt_get_status_msg status
;
145 static int cinergyt2_fe_read_status(struct dvb_frontend
*fe
,
146 enum fe_status
*status
)
148 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
151 mutex_lock(&state
->data_mutex
);
152 state
->data
[0] = CINERGYT2_EP1_GET_TUNER_STATUS
;
154 ret
= dvb_usb_generic_rw(state
->d
, state
->data
, 1,
155 state
->data
, sizeof(state
->status
), 0);
157 memcpy(&state
->status
, state
->data
, sizeof(state
->status
));
158 mutex_unlock(&state
->data_mutex
);
165 if (0xffff - le16_to_cpu(state
->status
.gain
) > 30)
166 *status
|= FE_HAS_SIGNAL
;
167 if (state
->status
.lock_bits
& (1 << 6))
168 *status
|= FE_HAS_LOCK
;
169 if (state
->status
.lock_bits
& (1 << 5))
170 *status
|= FE_HAS_SYNC
;
171 if (state
->status
.lock_bits
& (1 << 4))
172 *status
|= FE_HAS_CARRIER
;
173 if (state
->status
.lock_bits
& (1 << 1))
174 *status
|= FE_HAS_VITERBI
;
176 if ((*status
& (FE_HAS_CARRIER
| FE_HAS_VITERBI
| FE_HAS_SYNC
)) !=
177 (FE_HAS_CARRIER
| FE_HAS_VITERBI
| FE_HAS_SYNC
))
178 *status
&= ~FE_HAS_LOCK
;
183 static int cinergyt2_fe_read_ber(struct dvb_frontend
*fe
, u32
*ber
)
185 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
187 *ber
= le32_to_cpu(state
->status
.viterbi_error_rate
);
191 static int cinergyt2_fe_read_unc_blocks(struct dvb_frontend
*fe
, u32
*unc
)
193 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
195 *unc
= le32_to_cpu(state
->status
.uncorrected_block_count
);
199 static int cinergyt2_fe_read_signal_strength(struct dvb_frontend
*fe
,
202 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
204 *strength
= (0xffff - le16_to_cpu(state
->status
.gain
));
208 static int cinergyt2_fe_read_snr(struct dvb_frontend
*fe
, u16
*snr
)
210 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
212 *snr
= (state
->status
.snr
<< 8) | state
->status
.snr
;
216 static int cinergyt2_fe_init(struct dvb_frontend
*fe
)
221 static int cinergyt2_fe_sleep(struct dvb_frontend
*fe
)
223 deb_info("cinergyt2_fe_sleep() Called\n");
227 static int cinergyt2_fe_get_tune_settings(struct dvb_frontend
*fe
,
228 struct dvb_frontend_tune_settings
*tune
)
230 tune
->min_delay_ms
= 800;
234 static int cinergyt2_fe_set_frontend(struct dvb_frontend
*fe
)
236 struct dtv_frontend_properties
*fep
= &fe
->dtv_property_cache
;
237 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
238 struct dvbt_set_parameters_msg
*param
;
241 mutex_lock(&state
->data_mutex
);
243 param
= (void *)state
->data
;
244 param
->cmd
= CINERGYT2_EP1_SET_TUNER_PARAMETERS
;
245 param
->tps
= cpu_to_le16(compute_tps(fep
));
246 param
->freq
= cpu_to_le32(fep
->frequency
/ 1000);
249 switch (fep
->bandwidth_hz
) {
252 param
->bandwidth
= 8;
255 param
->bandwidth
= 7;
258 param
->bandwidth
= 6;
262 err
= dvb_usb_generic_rw(state
->d
, state
->data
, sizeof(*param
),
265 err("cinergyt2_fe_set_frontend() Failed! err=%d\n", err
);
267 mutex_unlock(&state
->data_mutex
);
268 return (err
< 0) ? err
: 0;
271 static void cinergyt2_fe_release(struct dvb_frontend
*fe
)
273 struct cinergyt2_fe_state
*state
= fe
->demodulator_priv
;
277 static const struct dvb_frontend_ops cinergyt2_fe_ops
;
279 struct dvb_frontend
*cinergyt2_fe_attach(struct dvb_usb_device
*d
)
281 struct cinergyt2_fe_state
*s
= kzalloc(sizeof(
282 struct cinergyt2_fe_state
), GFP_KERNEL
);
287 memcpy(&s
->fe
.ops
, &cinergyt2_fe_ops
, sizeof(struct dvb_frontend_ops
));
288 s
->fe
.demodulator_priv
= s
;
289 mutex_init(&s
->data_mutex
);
294 static const struct dvb_frontend_ops cinergyt2_fe_ops
= {
295 .delsys
= { SYS_DVBT
},
298 .frequency_min_hz
= 174 * MHz
,
299 .frequency_max_hz
= 862 * MHz
,
300 .frequency_stepsize_hz
= 166667,
301 .caps
= FE_CAN_INVERSION_AUTO
| FE_CAN_FEC_1_2
302 | FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
303 | FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
304 | FE_CAN_FEC_AUTO
| FE_CAN_QPSK
305 | FE_CAN_QAM_16
| FE_CAN_QAM_64
307 | FE_CAN_TRANSMISSION_MODE_AUTO
308 | FE_CAN_GUARD_INTERVAL_AUTO
309 | FE_CAN_HIERARCHY_AUTO
314 .release
= cinergyt2_fe_release
,
316 .init
= cinergyt2_fe_init
,
317 .sleep
= cinergyt2_fe_sleep
,
319 .set_frontend
= cinergyt2_fe_set_frontend
,
320 .get_tune_settings
= cinergyt2_fe_get_tune_settings
,
322 .read_status
= cinergyt2_fe_read_status
,
323 .read_ber
= cinergyt2_fe_read_ber
,
324 .read_signal_strength
= cinergyt2_fe_read_signal_strength
,
325 .read_snr
= cinergyt2_fe_read_snr
,
326 .read_ucblocks
= cinergyt2_fe_read_unc_blocks
,