-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaf903x-devices.c
277 lines (232 loc) · 7.02 KB
/
af903x-devices.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#include "af903x.h"
int dvb_usb_af903x_hwpid = 1; // enable hw pid filter
module_param_named(hwpid,dvb_usb_af903x_hwpid, int, 0644);
MODULE_PARM_DESC(debug, "set hw pid filter.(disable=0, enable=1)" DVB_USB_DEBUG_STATUS);
static u16 gSWPIDTable[32];
static int gTblUsed = 0;
static int af903x_download_firmware(struct usb_device *udev, const struct firmware *fw)
{
int ret=0;
deb_data("- Enter %s Function -\n",__FUNCTION__);
return ret;
}
static int af903x_powerctrl(struct dvb_usb_device *d, int onoff)
{
int ret;
deb_data("- Enter %s Function - %s\n",__FUNCTION__,onoff?"ON":"OFF");
// resume device before DL_ApCtrl(on)
if( onoff ) {
ret = usb_autopm_get_interface(uintfs);
if(ret) {
deb_data("%s calling usb_autopm_get_interface failed with %d\n", __FUNCTION__, ret);
gTblUsed = 0;
return ret;
}
}
ret = DL_ApCtrl(onoff);
if(ret) deb_data(" af903x_powerctrl Fail: 0x%04X\n", ret);
//suspend device after DL_ApCtrl(off)
if( !onoff ) {
usb_autopm_put_interface(uintfs);
}
deb_data("- Exit %s Function - %s, ret=%d\n",__FUNCTION__,onoff?"ON":"OFF", ret);
return ret;
}
static int af903x_identify_state(struct usb_device *udev, struct dvb_usb_device_properties *props,
struct dvb_usb_device_description **desc, int *cold)
{
deb_data("- Enter %s Function -\n",__FUNCTION__);
*cold = 0;
return 0;
}
static int af903x_frontend_attach(struct dvb_usb_adapter *adap)
{
deb_data("- Enter %s Function -\n",__FUNCTION__);
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,0,0)
adap->fe_adap[0].fe = af903x_attach(1);
return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
#else
adap->fe = af903x_attach(1);
return adap->fe == NULL ? -ENODEV : 0;
#endif
}
static int af903x_tuner_attach(struct dvb_usb_adapter *adap)
{
deb_data("- Enter %s Function -\n",__FUNCTION__);
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,0,0)
tuner_attach(adap->fe_adap[0].fe);
#else
tuner_attach(adap->fe);
#endif
return 0;
}
static int af903x_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
{
deb_data("- Enter %s Function - (%d) streaming state for %d\n",__FUNCTION__,onoff, adap->id);
return 0;
}
static int af903x_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
{
int ret =0;
deb_data("%s: onoff:%d\n", __func__, onoff);
if (!onoff){
deb_data(" Reset PID Table\n");
DL_ResetPID();
PDC->fc[adap->id].ulcPIDs = 0;
memset(PDC->fc[adap->id].aulPIDs, 0, sizeof(FILTER_INFO));
}
PDC->fc[adap->id].bEnPID = onoff;
ret = DL_PIDOnOff(PDC->fc[adap->id].bEnPID);
deb_data(" set pid onoff ok\n");
return ret;
}
static int af903x_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pidnum,
int onoff)
{
// if (down_interruptible (&my_sem))
// return -ERESTARTSYS;
int ret = 0;
Pid pid;
deb_data("- %s: set pid filter, index %d, pid %d, onoff %d.\n",
__func__, index, pidnum, onoff);
if (onoff) { //add filter to table
PDC->fc[adap->id].aulPIDs[index].filternum = pidnum;
if (!PDC->fc[adap->id].aulPIDs[index].onoff ){
PDC->fc[adap->id].aulPIDs[index].onoff = true;
PDC->fc[adap->id].ulcPIDs ++;
}
}
else{ //del filter from table
PDC->fc[adap->id].aulPIDs[index].filternum = 0;
if (PDC->fc[adap->id].aulPIDs[index].onoff ){
PDC->fc[adap->id].aulPIDs[index].onoff = false;
PDC->fc[adap->id].ulcPIDs --;
}
}
if (onoff) {
/* cannot use it as pid_filter_ctrl since it has to be done
* before setting the first pid */
if (adap->feedcount == 1) {
deb_data(" first pid set, enable pid table\n");
pid.sectionType = SectionType_TABLE;
pid.table = 0x00;
pid.duration = 0xFF;
ret = af903x_pid_filter_ctrl(adap, onoff);
if (ret)
return ret;
}
pid.value = (Word)pidnum;
ret = DL_AddPID(index, pid);
if (ret)
return ret;
}
else{
pid.value = (Word)pidnum;
ret = DL_RemovePID(index, pid);
if (ret)
return ret;
if (adap->feedcount == 0) {
deb_data(" last pid unset, disable pid table\n");
ret = af903x_pid_filter_ctrl(adap, onoff);
if (ret)
return ret;
}
}
deb_data(" set pid ok, total pid num :%d\n", PDC->fc[adap->id].ulcPIDs);
msleep(100);
// up(&my_sem);
return 0;
}
struct usb_device_id af903x_usb_id_table[] = {
{ USB_DEVICE(0x07ca,0xa333) },
{ USB_DEVICE(0x07ca,0xb867) },
{ USB_DEVICE(0x07ca,0x1867) },
{ USB_DEVICE(0x07ca,0x0337) },
{ USB_DEVICE(0x07ca,0xa867) },
{ USB_DEVICE(0x07ca,0x0867) },
{ USB_DEVICE(0x07ca,0xF337) },
{ USB_DEVICE(0x07ca,0x3867) },
#if SUPPORT_AF903X_EVB
{ USB_DEVICE(0x15A4,0x1000) },
{ USB_DEVICE(0x15A4,0x1001) },
{ USB_DEVICE(0x15A4,0x1002) },
{ USB_DEVICE(0x15A4,0x1003) },
{ USB_DEVICE(0x15A4,0x9035) },
#endif //SUPPORT_AF903X_EVB
{ 0 } /* Terminating entry */
};
MODULE_DEVICE_TABLE(usb, af903x_usb_id_table);
struct dvb_usb_device_properties af903x_properties[] = {
{
.usb_ctrl = DEVICE_SPECIFIC,
.download_firmware = af903x_download_firmware,
.no_reconnect = 1,
.power_ctrl = af903x_powerctrl,
.identify_state = af903x_identify_state,
.num_adapters = 1,
.adapter = {
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,0,0)
.num_frontends = 1,
.fe = {
{
#endif
#if ENABLE_HW_PID
.caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_NEED_PID_FILTERING,
#else
.caps = DVB_USB_ADAP_HAS_PID_FILTER,
#endif
.pid_filter_count = 32,
.frontend_attach = af903x_frontend_attach,
.tuner_attach = af903x_tuner_attach,
.streaming_ctrl = af903x_streaming_ctrl,
.pid_filter_ctrl = af903x_pid_filter_ctrl,
.pid_filter = af903x_pid_filter,
.stream = {
.type = USB_BULK,
.count = 10,
.endpoint = 0x84,
.u = {
.bulk = {
.buffersize = (188 * TS_PACKET_COUNT),
}
}
}
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,0,0)
}
},
}
#else
},
#endif
},
#if 0
.num_device_descs = 1,
#else
.num_device_descs = 2,
#endif
.devices = {
{ "AVerMedia A333 DVB-T Recevier",
{ &af903x_usb_id_table[0]
,&af903x_usb_id_table[1]
#if SUPPORT_AF903X_EVB
,&af903x_usb_id_table[7]
,&af903x_usb_id_table[8]
#endif //SUPPORT_AF903X_EVB
},
{ NULL },
},
{ "AVerMedia A867 DVB-T Recevier",
{ &af903x_usb_id_table[2]
,&af903x_usb_id_table[3]
,&af903x_usb_id_table[4]
,&af903x_usb_id_table[5]
,&af903x_usb_id_table[6]
,&af903x_usb_id_table[7]
},
{ NULL },
}
}
}
};
int af903x_device_count = ARRAY_SIZE(af903x_properties);