1 /* DVB USB compliant Linux driver for the
2 * - GENPIX 8pks/qpsk/DCII USB2.0 DVB-S module
4 * Copyright (C) 2006,2007 Alan Nisota (alannisota@gmail.com)
5 * Copyright (C) 2006,2007 Genpix Electronics (genpix@genpix-electronics.com)
7 * Thanks to GENPIX for the sample code used to implement this module.
9 * This module is based off the vp7045 and vp702x modules
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation, version 2.
15 * see Documentation/dvb/README.dvb-usb for more information
19 struct gp8psk_fe_state
{
20 struct dvb_frontend fe
;
21 struct dvb_usb_device
*d
;
24 unsigned long next_status_check
;
25 unsigned long status_check_interval
;
28 static int gp8psk_tuned_to_DCII(struct dvb_frontend
*fe
)
30 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
32 gp8psk_usb_in_op(st
->d
, GET_8PSK_CONFIG
, 0, 0, &status
, 1);
33 return status
& bmDCtuned
;
36 static int gp8psk_set_tuner_mode(struct dvb_frontend
*fe
, int mode
)
38 struct gp8psk_fe_state
*state
= fe
->demodulator_priv
;
39 return gp8psk_usb_out_op(state
->d
, SET_8PSK_CONFIG
, mode
, 0, NULL
, 0);
42 static int gp8psk_fe_update_status(struct gp8psk_fe_state
*st
)
45 if (time_after(jiffies
,st
->next_status_check
)) {
46 gp8psk_usb_in_op(st
->d
, GET_SIGNAL_LOCK
, 0,0,&st
->lock
,1);
47 gp8psk_usb_in_op(st
->d
, GET_SIGNAL_STRENGTH
, 0,0,buf
,6);
48 st
->snr
= (buf
[1]) << 8 | buf
[0];
49 st
->next_status_check
= jiffies
+ (st
->status_check_interval
*HZ
)/1000;
54 static int gp8psk_fe_read_status(struct dvb_frontend
* fe
, fe_status_t
*status
)
56 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
57 gp8psk_fe_update_status(st
);
60 *status
= FE_HAS_LOCK
| FE_HAS_SYNC
| FE_HAS_VITERBI
| FE_HAS_SIGNAL
| FE_HAS_CARRIER
;
64 if (*status
& FE_HAS_LOCK
)
65 st
->status_check_interval
= 1000;
67 st
->status_check_interval
= 100;
71 /* not supported by this Frontend */
72 static int gp8psk_fe_read_ber(struct dvb_frontend
* fe
, u32
*ber
)
79 /* not supported by this Frontend */
80 static int gp8psk_fe_read_unc_blocks(struct dvb_frontend
* fe
, u32
*unc
)
87 static int gp8psk_fe_read_snr(struct dvb_frontend
* fe
, u16
*snr
)
89 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
90 gp8psk_fe_update_status(st
);
91 /* snr is reported in dBu*256 */
96 static int gp8psk_fe_read_signal_strength(struct dvb_frontend
* fe
, u16
*strength
)
98 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
99 gp8psk_fe_update_status(st
);
100 /* snr is reported in dBu*256 */
101 /* snr / 38.4 ~= 100% strength */
102 /* snr * 17 returns 100% strength as 65535 */
106 *strength
= (st
->snr
<< 4) + st
->snr
; /* snr*17 */
110 static int gp8psk_fe_get_tune_settings(struct dvb_frontend
* fe
, struct dvb_frontend_tune_settings
*tune
)
112 tune
->min_delay_ms
= 200;
116 static int gp8psk_fe_set_property(struct dvb_frontend
*fe
,
117 struct dtv_property
*tvp
)
119 deb_fe("%s(..)\n", __func__
);
123 static int gp8psk_fe_get_property(struct dvb_frontend
*fe
,
124 struct dtv_property
*tvp
)
126 deb_fe("%s(..)\n", __func__
);
131 static int gp8psk_fe_set_frontend(struct dvb_frontend
* fe
,
132 struct dvb_frontend_parameters
*fep
)
134 struct gp8psk_fe_state
*state
= fe
->demodulator_priv
;
135 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
137 u32 freq
= fep
->frequency
* 1000;
138 int gp_product_id
= le16_to_cpu(state
->d
->udev
->descriptor
.idProduct
);
140 deb_fe("%s()\n", __func__
);
142 cmd
[4] = freq
& 0xff;
143 cmd
[5] = (freq
>> 8) & 0xff;
144 cmd
[6] = (freq
>> 16) & 0xff;
145 cmd
[7] = (freq
>> 24) & 0xff;
147 switch (c
->delivery_system
) {
149 /* Only QPSK is supported for DVB-S */
150 if (c
->modulation
!= QPSK
) {
151 deb_fe("%s: unsupported modulation selected (%d)\n",
152 __func__
, c
->modulation
);
155 c
->fec_inner
= FEC_AUTO
;
158 deb_fe("%s: DVB-S2 delivery system selected\n", __func__
);
162 deb_fe("%s: unsupported delivery system selected (%d)\n",
163 __func__
, c
->delivery_system
);
167 cmd
[0] = c
->symbol_rate
& 0xff;
168 cmd
[1] = (c
->symbol_rate
>> 8) & 0xff;
169 cmd
[2] = (c
->symbol_rate
>> 16) & 0xff;
170 cmd
[3] = (c
->symbol_rate
>> 24) & 0xff;
171 switch (c
->modulation
) {
173 if (gp_product_id
== USB_PID_GENPIX_8PSK_REV_1_WARM
)
174 if (gp8psk_tuned_to_DCII(fe
))
175 gp8psk_bcm4500_reload(state
->d
);
176 switch (c
->fec_inner
) {
192 cmd
[8] = ADV_MOD_DVB_QPSK
;
194 case PSK_8
: /* PSK_8 is for compatibility with DN */
195 cmd
[8] = ADV_MOD_TURBO_8PSK
;
196 switch (c
->fec_inner
) {
211 case QAM_16
: /* QAM_16 is for compatibility with DN */
212 cmd
[8] = ADV_MOD_TURBO_16QAM
;
215 default: /* Unknown modulation */
216 deb_fe("%s: unsupported modulation selected (%d)\n",
217 __func__
, c
->modulation
);
221 if (gp_product_id
== USB_PID_GENPIX_8PSK_REV_1_WARM
)
222 gp8psk_set_tuner_mode(fe
, 0);
223 gp8psk_usb_out_op(state
->d
, TUNE_8PSK
, 0, 0, cmd
, 10);
226 state
->next_status_check
= jiffies
;
227 state
->status_check_interval
= 200;
232 static int gp8psk_fe_send_diseqc_msg (struct dvb_frontend
* fe
,
233 struct dvb_diseqc_master_cmd
*m
)
235 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
237 deb_fe("%s\n",__func__
);
239 if (gp8psk_usb_out_op(st
->d
,SEND_DISEQC_COMMAND
, m
->msg
[0], 0,
240 m
->msg
, m
->msg_len
)) {
246 static int gp8psk_fe_send_diseqc_burst (struct dvb_frontend
* fe
,
247 fe_sec_mini_cmd_t burst
)
249 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
252 deb_fe("%s\n",__func__
);
254 /* These commands are certainly wrong */
255 cmd
= (burst
== SEC_MINI_A
) ? 0x00 : 0x01;
257 if (gp8psk_usb_out_op(st
->d
,SEND_DISEQC_COMMAND
, cmd
, 0,
264 static int gp8psk_fe_set_tone (struct dvb_frontend
* fe
, fe_sec_tone_mode_t tone
)
266 struct gp8psk_fe_state
* state
= fe
->demodulator_priv
;
268 if (gp8psk_usb_out_op(state
->d
,SET_22KHZ_TONE
,
269 (tone
== SEC_TONE_ON
), 0, NULL
, 0)) {
275 static int gp8psk_fe_set_voltage (struct dvb_frontend
* fe
, fe_sec_voltage_t voltage
)
277 struct gp8psk_fe_state
* state
= fe
->demodulator_priv
;
279 if (gp8psk_usb_out_op(state
->d
,SET_LNB_VOLTAGE
,
280 voltage
== SEC_VOLTAGE_18
, 0, NULL
, 0)) {
286 static int gp8psk_fe_enable_high_lnb_voltage(struct dvb_frontend
* fe
, long onoff
)
288 struct gp8psk_fe_state
* state
= fe
->demodulator_priv
;
289 return gp8psk_usb_out_op(state
->d
, USE_EXTRA_VOLT
, onoff
, 0,NULL
,0);
292 static int gp8psk_fe_send_legacy_dish_cmd (struct dvb_frontend
* fe
, unsigned long sw_cmd
)
294 struct gp8psk_fe_state
* state
= fe
->demodulator_priv
;
295 u8 cmd
= sw_cmd
& 0x7f;
297 if (gp8psk_usb_out_op(state
->d
,SET_DN_SWITCH
, cmd
, 0,
301 if (gp8psk_usb_out_op(state
->d
,SET_LNB_VOLTAGE
, !!(sw_cmd
& 0x80),
309 static void gp8psk_fe_release(struct dvb_frontend
* fe
)
311 struct gp8psk_fe_state
*state
= fe
->demodulator_priv
;
315 static struct dvb_frontend_ops gp8psk_fe_ops
;
317 struct dvb_frontend
* gp8psk_fe_attach(struct dvb_usb_device
*d
)
319 struct gp8psk_fe_state
*s
= kzalloc(sizeof(struct gp8psk_fe_state
), GFP_KERNEL
);
324 memcpy(&s
->fe
.ops
, &gp8psk_fe_ops
, sizeof(struct dvb_frontend_ops
));
325 s
->fe
.demodulator_priv
= s
;
335 static struct dvb_frontend_ops gp8psk_fe_ops
= {
337 .name
= "Genpix 8psk-to-USB2 DVB-S",
339 .frequency_min
= 800000,
340 .frequency_max
= 2250000,
341 .frequency_stepsize
= 100,
342 .symbol_rate_min
= 1000000,
343 .symbol_rate_max
= 45000000,
344 .symbol_rate_tolerance
= 500, /* ppm */
345 .caps
= FE_CAN_INVERSION_AUTO
|
346 FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
347 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
349 * FE_CAN_QAM_16 is for compatibility
350 * (Myth incorrectly detects Turbo-QPSK as plain QAM-16)
352 FE_CAN_QPSK
| FE_CAN_QAM_16
355 .release
= gp8psk_fe_release
,
360 .set_property
= gp8psk_fe_set_property
,
361 .get_property
= gp8psk_fe_get_property
,
362 .set_frontend
= gp8psk_fe_set_frontend
,
364 .get_tune_settings
= gp8psk_fe_get_tune_settings
,
366 .read_status
= gp8psk_fe_read_status
,
367 .read_ber
= gp8psk_fe_read_ber
,
368 .read_signal_strength
= gp8psk_fe_read_signal_strength
,
369 .read_snr
= gp8psk_fe_read_snr
,
370 .read_ucblocks
= gp8psk_fe_read_unc_blocks
,
372 .diseqc_send_master_cmd
= gp8psk_fe_send_diseqc_msg
,
373 .diseqc_send_burst
= gp8psk_fe_send_diseqc_burst
,
374 .set_tone
= gp8psk_fe_set_tone
,
375 .set_voltage
= gp8psk_fe_set_voltage
,
376 .dishnetwork_send_legacy_command
= gp8psk_fe_send_legacy_dish_cmd
,
377 .enable_high_lnb_voltage
= gp8psk_fe_enable_high_lnb_voltage