1 /* Frontend part of the Linux driver for the WideView/ Yakumo/ Hama/
2 * Typhoon/ Yuan DVB-T USB2.0 receiver.
4 * Copyright (C) 2005 Patrick Boettcher <patrick.boettcher@desy.de>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation, version 2.
10 * see Documentation/dvb/README.dvb-usb for more information
14 struct dtt200u_fe_state
{
15 struct dvb_usb_device
*d
;
19 struct dvb_frontend_parameters fep
;
20 struct dvb_frontend frontend
;
23 static int dtt200u_fe_read_status(struct dvb_frontend
* fe
, fe_status_t
*stat
)
25 struct dtt200u_fe_state
*state
= fe
->demodulator_priv
;
26 u8 st
= GET_TUNE_STATUS
, b
[3];
28 dvb_usb_generic_rw(state
->d
,&st
,1,b
,3,0);
32 *stat
= FE_HAS_SIGNAL
| FE_HAS_CARRIER
|
33 FE_HAS_VITERBI
| FE_HAS_SYNC
| FE_HAS_LOCK
;
35 case 0x00: /* pending */
36 *stat
= FE_TIMEDOUT
; /* during set_frontend */
39 case 0x02: /* failed */
46 static int dtt200u_fe_read_ber(struct dvb_frontend
* fe
, u32
*ber
)
48 struct dtt200u_fe_state
*state
= fe
->demodulator_priv
;
49 u8 bw
= GET_VIT_ERR_CNT
,b
[3];
50 dvb_usb_generic_rw(state
->d
,&bw
,1,b
,3,0);
51 *ber
= (b
[0] << 16) | (b
[1] << 8) | b
[2];
55 static int dtt200u_fe_read_unc_blocks(struct dvb_frontend
* fe
, u32
*unc
)
57 struct dtt200u_fe_state
*state
= fe
->demodulator_priv
;
58 u8 bw
= GET_RS_UNCOR_BLK_CNT
,b
[2];
60 dvb_usb_generic_rw(state
->d
,&bw
,1,b
,2,0);
61 *unc
= (b
[0] << 8) | b
[1];
65 static int dtt200u_fe_read_signal_strength(struct dvb_frontend
* fe
, u16
*strength
)
67 struct dtt200u_fe_state
*state
= fe
->demodulator_priv
;
69 dvb_usb_generic_rw(state
->d
,&bw
,1,&b
,1,0);
70 *strength
= (b
<< 8) | b
;
74 static int dtt200u_fe_read_snr(struct dvb_frontend
* fe
, u16
*snr
)
76 struct dtt200u_fe_state
*state
= fe
->demodulator_priv
;
78 dvb_usb_generic_rw(state
->d
,&bw
,1,&br
,1,0);
79 *snr
= ~((br
<< 8) | br
);
83 static int dtt200u_fe_init(struct dvb_frontend
* fe
)
85 struct dtt200u_fe_state
*state
= fe
->demodulator_priv
;
87 return dvb_usb_generic_write(state
->d
,&b
,1);
90 static int dtt200u_fe_sleep(struct dvb_frontend
* fe
)
92 return dtt200u_fe_init(fe
);
95 static int dtt200u_fe_get_tune_settings(struct dvb_frontend
* fe
, struct dvb_frontend_tune_settings
*tune
)
97 tune
->min_delay_ms
= 1500;
103 static int dtt200u_fe_set_frontend(struct dvb_frontend
* fe
,
104 struct dvb_frontend_parameters
*fep
)
106 struct dtt200u_fe_state
*state
= fe
->demodulator_priv
;
109 u16 freq
= fep
->frequency
/ 250000;
110 u8 bwbuf
[2] = { SET_BANDWIDTH
, 0 },freqbuf
[3] = { SET_RF_FREQ
, 0, 0 };
112 switch (fep
->u
.ofdm
.bandwidth
) {
113 case BANDWIDTH_8_MHZ
: bwbuf
[1] = 8; break;
114 case BANDWIDTH_7_MHZ
: bwbuf
[1] = 7; break;
115 case BANDWIDTH_6_MHZ
: bwbuf
[1] = 6; break;
116 case BANDWIDTH_AUTO
: return -EOPNOTSUPP
;
121 dvb_usb_generic_write(state
->d
,bwbuf
,2);
123 freqbuf
[1] = freq
& 0xff;
124 freqbuf
[2] = (freq
>> 8) & 0xff;
125 dvb_usb_generic_write(state
->d
,freqbuf
,3);
127 for (i
= 0; i
< 30; i
++) {
129 dtt200u_fe_read_status(fe
, &st
);
130 if (st
& FE_TIMEDOUT
)
137 static int dtt200u_fe_get_frontend(struct dvb_frontend
* fe
,
138 struct dvb_frontend_parameters
*fep
)
140 struct dtt200u_fe_state
*state
= fe
->demodulator_priv
;
141 memcpy(fep
,&state
->fep
,sizeof(struct dvb_frontend_parameters
));
145 static void dtt200u_fe_release(struct dvb_frontend
* fe
)
147 struct dtt200u_fe_state
*state
= (struct dtt200u_fe_state
*) fe
->demodulator_priv
;
151 static struct dvb_frontend_ops dtt200u_fe_ops
;
153 struct dvb_frontend
* dtt200u_fe_attach(struct dvb_usb_device
*d
)
155 struct dtt200u_fe_state
* state
= NULL
;
157 /* allocate memory for the internal state */
158 state
= kzalloc(sizeof(struct dtt200u_fe_state
), GFP_KERNEL
);
162 deb_info("attaching frontend dtt200u\n");
166 memcpy(&state
->frontend
.ops
,&dtt200u_fe_ops
,sizeof(struct dvb_frontend_ops
));
167 state
->frontend
.demodulator_priv
= state
;
169 return &state
->frontend
;
174 static struct dvb_frontend_ops dtt200u_fe_ops
= {
176 .name
= "WideView USB DVB-T",
178 .frequency_min
= 44250000,
179 .frequency_max
= 867250000,
180 .frequency_stepsize
= 250000,
181 .caps
= FE_CAN_INVERSION_AUTO
|
182 FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
183 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
184 FE_CAN_QPSK
| FE_CAN_QAM_16
| FE_CAN_QAM_64
| FE_CAN_QAM_AUTO
|
185 FE_CAN_TRANSMISSION_MODE_AUTO
|
186 FE_CAN_GUARD_INTERVAL_AUTO
|
188 FE_CAN_HIERARCHY_AUTO
,
191 .release
= dtt200u_fe_release
,
193 .init
= dtt200u_fe_init
,
194 .sleep
= dtt200u_fe_sleep
,
196 .set_frontend
= dtt200u_fe_set_frontend
,
197 .get_frontend
= dtt200u_fe_get_frontend
,
198 .get_tune_settings
= dtt200u_fe_get_tune_settings
,
200 .read_status
= dtt200u_fe_read_status
,
201 .read_ber
= dtt200u_fe_read_ber
,
202 .read_signal_strength
= dtt200u_fe_read_signal_strength
,
203 .read_snr
= dtt200u_fe_read_snr
,
204 .read_ucblocks
= dtt200u_fe_read_unc_blocks
,