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
,
55 enum fe_status
*status
)
57 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
58 gp8psk_fe_update_status(st
);
61 *status
= FE_HAS_LOCK
| FE_HAS_SYNC
| FE_HAS_VITERBI
| FE_HAS_SIGNAL
| FE_HAS_CARRIER
;
65 if (*status
& FE_HAS_LOCK
)
66 st
->status_check_interval
= 1000;
68 st
->status_check_interval
= 100;
72 /* not supported by this Frontend */
73 static int gp8psk_fe_read_ber(struct dvb_frontend
* fe
, u32
*ber
)
80 /* not supported by this Frontend */
81 static int gp8psk_fe_read_unc_blocks(struct dvb_frontend
* fe
, u32
*unc
)
88 static int gp8psk_fe_read_snr(struct dvb_frontend
* fe
, u16
*snr
)
90 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
91 gp8psk_fe_update_status(st
);
92 /* snr is reported in dBu*256 */
97 static int gp8psk_fe_read_signal_strength(struct dvb_frontend
* fe
, u16
*strength
)
99 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
100 gp8psk_fe_update_status(st
);
101 /* snr is reported in dBu*256 */
102 /* snr / 38.4 ~= 100% strength */
103 /* snr * 17 returns 100% strength as 65535 */
107 *strength
= (st
->snr
<< 4) + st
->snr
; /* snr*17 */
111 static int gp8psk_fe_get_tune_settings(struct dvb_frontend
* fe
, struct dvb_frontend_tune_settings
*tune
)
113 tune
->min_delay_ms
= 800;
117 static int gp8psk_fe_set_frontend(struct dvb_frontend
*fe
)
119 struct gp8psk_fe_state
*state
= fe
->demodulator_priv
;
120 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
122 u32 freq
= c
->frequency
* 1000;
123 int gp_product_id
= le16_to_cpu(state
->d
->udev
->descriptor
.idProduct
);
125 deb_fe("%s()\n", __func__
);
127 cmd
[4] = freq
& 0xff;
128 cmd
[5] = (freq
>> 8) & 0xff;
129 cmd
[6] = (freq
>> 16) & 0xff;
130 cmd
[7] = (freq
>> 24) & 0xff;
132 /* backwards compatibility: DVB-S + 8-PSK were used for Turbo-FEC */
133 if (c
->delivery_system
== SYS_DVBS
&& c
->modulation
== PSK_8
)
134 c
->delivery_system
= SYS_TURBO
;
136 switch (c
->delivery_system
) {
138 if (c
->modulation
!= QPSK
) {
139 deb_fe("%s: unsupported modulation selected (%d)\n",
140 __func__
, c
->modulation
);
143 c
->fec_inner
= FEC_AUTO
;
145 case SYS_DVBS2
: /* kept for backwards compatibility */
146 deb_fe("%s: DVB-S2 delivery system selected\n", __func__
);
149 deb_fe("%s: Turbo-FEC delivery system selected\n", __func__
);
153 deb_fe("%s: unsupported delivery system selected (%d)\n",
154 __func__
, c
->delivery_system
);
158 cmd
[0] = c
->symbol_rate
& 0xff;
159 cmd
[1] = (c
->symbol_rate
>> 8) & 0xff;
160 cmd
[2] = (c
->symbol_rate
>> 16) & 0xff;
161 cmd
[3] = (c
->symbol_rate
>> 24) & 0xff;
162 switch (c
->modulation
) {
164 if (gp_product_id
== USB_PID_GENPIX_8PSK_REV_1_WARM
)
165 if (gp8psk_tuned_to_DCII(fe
))
166 gp8psk_bcm4500_reload(state
->d
);
167 switch (c
->fec_inner
) {
183 if (c
->delivery_system
== SYS_TURBO
)
184 cmd
[8] = ADV_MOD_TURBO_QPSK
;
186 cmd
[8] = ADV_MOD_DVB_QPSK
;
188 case PSK_8
: /* PSK_8 is for compatibility with DN */
189 cmd
[8] = ADV_MOD_TURBO_8PSK
;
190 switch (c
->fec_inner
) {
205 case QAM_16
: /* QAM_16 is for compatibility with DN */
206 cmd
[8] = ADV_MOD_TURBO_16QAM
;
209 default: /* Unknown modulation */
210 deb_fe("%s: unsupported modulation selected (%d)\n",
211 __func__
, c
->modulation
);
215 if (gp_product_id
== USB_PID_GENPIX_8PSK_REV_1_WARM
)
216 gp8psk_set_tuner_mode(fe
, 0);
217 gp8psk_usb_out_op(state
->d
, TUNE_8PSK
, 0, 0, cmd
, 10);
220 state
->next_status_check
= jiffies
;
221 state
->status_check_interval
= 200;
226 static int gp8psk_fe_send_diseqc_msg (struct dvb_frontend
* fe
,
227 struct dvb_diseqc_master_cmd
*m
)
229 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
231 deb_fe("%s\n",__func__
);
233 if (gp8psk_usb_out_op(st
->d
,SEND_DISEQC_COMMAND
, m
->msg
[0], 0,
234 m
->msg
, m
->msg_len
)) {
240 static int gp8psk_fe_send_diseqc_burst(struct dvb_frontend
*fe
,
241 enum fe_sec_mini_cmd burst
)
243 struct gp8psk_fe_state
*st
= fe
->demodulator_priv
;
246 deb_fe("%s\n",__func__
);
248 /* These commands are certainly wrong */
249 cmd
= (burst
== SEC_MINI_A
) ? 0x00 : 0x01;
251 if (gp8psk_usb_out_op(st
->d
,SEND_DISEQC_COMMAND
, cmd
, 0,
258 static int gp8psk_fe_set_tone(struct dvb_frontend
*fe
,
259 enum fe_sec_tone_mode tone
)
261 struct gp8psk_fe_state
* state
= fe
->demodulator_priv
;
263 if (gp8psk_usb_out_op(state
->d
,SET_22KHZ_TONE
,
264 (tone
== SEC_TONE_ON
), 0, NULL
, 0)) {
270 static int gp8psk_fe_set_voltage(struct dvb_frontend
*fe
,
271 enum fe_sec_voltage voltage
)
273 struct gp8psk_fe_state
* state
= fe
->demodulator_priv
;
275 if (gp8psk_usb_out_op(state
->d
,SET_LNB_VOLTAGE
,
276 voltage
== SEC_VOLTAGE_18
, 0, NULL
, 0)) {
282 static int gp8psk_fe_enable_high_lnb_voltage(struct dvb_frontend
* fe
, long onoff
)
284 struct gp8psk_fe_state
* state
= fe
->demodulator_priv
;
285 return gp8psk_usb_out_op(state
->d
, USE_EXTRA_VOLT
, onoff
, 0,NULL
,0);
288 static int gp8psk_fe_send_legacy_dish_cmd (struct dvb_frontend
* fe
, unsigned long sw_cmd
)
290 struct gp8psk_fe_state
* state
= fe
->demodulator_priv
;
291 u8 cmd
= sw_cmd
& 0x7f;
293 if (gp8psk_usb_out_op(state
->d
,SET_DN_SWITCH
, cmd
, 0,
297 if (gp8psk_usb_out_op(state
->d
,SET_LNB_VOLTAGE
, !!(sw_cmd
& 0x80),
305 static void gp8psk_fe_release(struct dvb_frontend
* fe
)
307 struct gp8psk_fe_state
*state
= fe
->demodulator_priv
;
311 static struct dvb_frontend_ops gp8psk_fe_ops
;
313 struct dvb_frontend
* gp8psk_fe_attach(struct dvb_usb_device
*d
)
315 struct gp8psk_fe_state
*s
= kzalloc(sizeof(struct gp8psk_fe_state
), GFP_KERNEL
);
320 memcpy(&s
->fe
.ops
, &gp8psk_fe_ops
, sizeof(struct dvb_frontend_ops
));
321 s
->fe
.demodulator_priv
= s
;
331 static struct dvb_frontend_ops gp8psk_fe_ops
= {
332 .delsys
= { SYS_DVBS
},
334 .name
= "Genpix DVB-S",
335 .frequency_min
= 800000,
336 .frequency_max
= 2250000,
337 .frequency_stepsize
= 100,
338 .symbol_rate_min
= 1000000,
339 .symbol_rate_max
= 45000000,
340 .symbol_rate_tolerance
= 500, /* ppm */
341 .caps
= FE_CAN_INVERSION_AUTO
|
342 FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
343 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
345 * FE_CAN_QAM_16 is for compatibility
346 * (Myth incorrectly detects Turbo-QPSK as plain QAM-16)
348 FE_CAN_QPSK
| FE_CAN_QAM_16
| FE_CAN_TURBO_FEC
351 .release
= gp8psk_fe_release
,
356 .set_frontend
= gp8psk_fe_set_frontend
,
358 .get_tune_settings
= gp8psk_fe_get_tune_settings
,
360 .read_status
= gp8psk_fe_read_status
,
361 .read_ber
= gp8psk_fe_read_ber
,
362 .read_signal_strength
= gp8psk_fe_read_signal_strength
,
363 .read_snr
= gp8psk_fe_read_snr
,
364 .read_ucblocks
= gp8psk_fe_read_unc_blocks
,
366 .diseqc_send_master_cmd
= gp8psk_fe_send_diseqc_msg
,
367 .diseqc_send_burst
= gp8psk_fe_send_diseqc_burst
,
368 .set_tone
= gp8psk_fe_set_tone
,
369 .set_voltage
= gp8psk_fe_set_voltage
,
370 .dishnetwork_send_legacy_command
= gp8psk_fe_send_legacy_dish_cmd
,
371 .enable_high_lnb_voltage
= gp8psk_fe_enable_high_lnb_voltage