]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/media/dvb/dvb-usb/a800.c
[PATCH] dvb: frontend: add driver for LGDT3302
[net-next-2.6.git] / drivers / media / dvb / dvb-usb / a800.c
CommitLineData
776338e1
JS
1/* DVB USB framework compliant Linux driver for the AVerMedia AverTV DVB-T
2 * USB2.0 (A800) DVB-T receiver.
3 *
4 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
5 *
6 * Thanks to
7 * - AVerMedia who kindly provided information and
8 * - Glen Harris who suffered from my mistakes during development.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation, version 2.
13 *
14 * see Documentation/dvb/README.dvb-usb for more information
15 */
16#include "dibusb.h"
17
18static int debug;
19module_param(debug, int, 0644);
20MODULE_PARM_DESC(debug, "set debugging level (rc=1 (or-able))." DVB_USB_DEBUG_STATUS);
21#define deb_rc(args...) dprintk(debug,0x01,args)
22
23static int a800_power_ctrl(struct dvb_usb_device *d, int onoff)
24{
25 /* do nothing for the AVerMedia */
26 return 0;
27}
28
29static struct dvb_usb_rc_key a800_rc_keys[] = {
30 { 0x02, 0x01, KEY_PROG1 }, /* SOURCE */
31 { 0x02, 0x00, KEY_POWER }, /* POWER */
32 { 0x02, 0x05, KEY_1 }, /* 1 */
33 { 0x02, 0x06, KEY_2 }, /* 2 */
34 { 0x02, 0x07, KEY_3 }, /* 3 */
35 { 0x02, 0x09, KEY_4 }, /* 4 */
36 { 0x02, 0x0a, KEY_5 }, /* 5 */
37 { 0x02, 0x0b, KEY_6 }, /* 6 */
38 { 0x02, 0x0d, KEY_7 }, /* 7 */
39 { 0x02, 0x0e, KEY_8 }, /* 8 */
40 { 0x02, 0x0f, KEY_9 }, /* 9 */
41 { 0x02, 0x12, KEY_LEFT }, /* L / DISPLAY */
42 { 0x02, 0x11, KEY_0 }, /* 0 */
43 { 0x02, 0x13, KEY_RIGHT }, /* R / CH RTN */
44 { 0x02, 0x17, KEY_PROG2 }, /* SNAP SHOT */
45 { 0x02, 0x10, KEY_PROG3 }, /* 16-CH PREV */
46 { 0x02, 0x03, KEY_CHANNELUP }, /* CH UP */
47 { 0x02, 0x1e, KEY_VOLUMEDOWN }, /* VOL DOWN */
48 { 0x02, 0x0c, KEY_ZOOM }, /* FULL SCREEN */
49 { 0x02, 0x1f, KEY_VOLUMEUP }, /* VOL UP */
50 { 0x02, 0x02, KEY_CHANNELDOWN }, /* CH DOWN */
51 { 0x02, 0x14, KEY_MUTE }, /* MUTE */
52 { 0x02, 0x08, KEY_AUDIO }, /* AUDIO */
53 { 0x02, 0x19, KEY_RECORD }, /* RECORD */
54 { 0x02, 0x18, KEY_PLAY }, /* PLAY */
55 { 0x02, 0x1b, KEY_STOP }, /* STOP */
56 { 0x02, 0x1a, KEY_PLAYPAUSE }, /* TIMESHIFT / PAUSE */
57 { 0x02, 0x1d, KEY_BACK }, /* << / RED */
58 { 0x02, 0x1c, KEY_FORWARD }, /* >> / YELLOW */
59 { 0x02, 0x03, KEY_TEXT }, /* TELETEXT */
60 { 0x02, 0x01, KEY_FIRST }, /* |<< / GREEN */
61 { 0x02, 0x00, KEY_LAST }, /* >>| / BLUE */
62 { 0x02, 0x04, KEY_EPG }, /* EPG */
63 { 0x02, 0x15, KEY_MENU }, /* MENU */
58769a54
AH
64
65 { 0x03, 0x03, KEY_CHANNELUP }, /* CH UP */
66 { 0x03, 0x02, KEY_CHANNELDOWN }, /* CH DOWN */
67 { 0x03, 0x01, KEY_FIRST }, /* |<< / GREEN */
68 { 0x03, 0x00, KEY_LAST }, /* >>| / BLUE */
69
776338e1
JS
70};
71
72int a800_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
73{
74 u8 key[5];
75 if (usb_control_msg(d->udev,usb_rcvctrlpipe(d->udev,0),
76 0x04, USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, key, 5,
58769a54 77 2000) != 5)
776338e1
JS
78 return -ENODEV;
79
80 /* call the universal NEC remote processor, to find out the key's state and event */
81 dvb_usb_nec_rc_key_to_event(d,key,event,state);
82 if (key[0] != 0)
83 deb_rc("key: %x %x %x %x %x\n",key[0],key[1],key[2],key[3],key[4]);
84 return 0;
85}
86
87/* USB Driver stuff */
88static struct dvb_usb_properties a800_properties;
89
90static int a800_probe(struct usb_interface *intf,
91 const struct usb_device_id *id)
92{
93 return dvb_usb_device_init(intf,&a800_properties,THIS_MODULE);
94}
95
96/* do not change the order of the ID table */
97static struct usb_device_id a800_table [] = {
98/* 00 */ { USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_DVBT_USB2_COLD) },
99/* 01 */ { USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_DVBT_USB2_WARM) },
100 { } /* Terminating entry */
101};
102MODULE_DEVICE_TABLE (usb, a800_table);
103
104static struct dvb_usb_properties a800_properties = {
105 .caps = DVB_USB_HAS_PID_FILTER | DVB_USB_PID_FILTER_CAN_BE_TURNED_OFF | DVB_USB_IS_AN_I2C_ADAPTER,
106 .pid_filter_count = 32,
107
108 .usb_ctrl = CYPRESS_FX2,
109
110 .firmware = "dvb-usb-avertv-a800-02.fw",
111
112 .size_of_priv = sizeof(struct dibusb_state),
113
114 .streaming_ctrl = dibusb2_0_streaming_ctrl,
115 .pid_filter = dibusb_pid_filter,
116 .pid_filter_ctrl = dibusb_pid_filter_ctrl,
117 .power_ctrl = a800_power_ctrl,
118 .frontend_attach = dibusb_dib3000mc_frontend_attach,
119 .tuner_attach = dibusb_dib3000mc_tuner_attach,
120
121 .rc_interval = DEFAULT_RC_INTERVAL,
122 .rc_key_map = a800_rc_keys,
123 .rc_key_map_size = ARRAY_SIZE(a800_rc_keys),
124 .rc_query = a800_rc_query,
125
126 .i2c_algo = &dibusb_i2c_algo,
127
128 .generic_bulk_ctrl_endpoint = 0x01,
129 /* parameter for the MPEG2-data transfer */
130 .urb = {
131 .type = DVB_USB_BULK,
132 .count = 7,
133 .endpoint = 0x06,
134 .u = {
135 .bulk = {
136 .buffersize = 4096,
137 }
138 }
139 },
140
141 .num_device_descs = 1,
142 .devices = {
143 { "AVerMedia AverTV DVB-T USB 2.0 (A800)",
144 { &a800_table[0], NULL },
145 { &a800_table[1], NULL },
146 },
147 }
148};
149
150static struct usb_driver a800_driver = {
151 .owner = THIS_MODULE,
152 .name = "AVerMedia AverTV DVB-T USB 2.0 (A800)",
153 .probe = a800_probe,
154 .disconnect = dvb_usb_device_exit,
155 .id_table = a800_table,
156};
157
158/* module stuff */
159static int __init a800_module_init(void)
160{
161 int result;
162 if ((result = usb_register(&a800_driver))) {
163 err("usb_register failed. Error number %d",result);
164 return result;
165 }
166
167 return 0;
168}
169
170static void __exit a800_module_exit(void)
171{
172 /* deregister this driver from the USB subsystem */
173 usb_deregister(&a800_driver);
174}
175
176module_init (a800_module_init);
177module_exit (a800_module_exit);
178
179MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
180MODULE_DESCRIPTION("AVerMedia AverTV DVB-T USB 2.0 (A800)");
181MODULE_VERSION("1.0");
182MODULE_LICENSE("GPL");