1 /* DVB USB framework compliant Linux driver for the Hauppauge WinTV-NOVA-T usb2
4 * Copyright (C) 2004-5 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
15 module_param(debug
, int, 0644);
16 MODULE_PARM_DESC(debug
, "set debugging level (1=rc,2=eeprom (|-able))." DVB_USB_DEBUG_STATUS
);
18 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr
);
20 #define deb_rc(args...) dprintk(debug,0x01,args)
21 #define deb_ee(args...) dprintk(debug,0x02,args)
23 /* Hauppauge NOVA-T USB2 keys */
24 static struct ir_scancode ir_codes_haupp_table
[] = {
35 { 0x1e0a, KEY_KPASTERISK
},
37 { 0x1e0c, KEY_RADIO
},
39 { 0x1e0e, KEY_GRAVE
}, /* # */
41 { 0x1e10, KEY_VOLUMEUP
},
42 { 0x1e11, KEY_VOLUMEDOWN
},
43 { 0x1e12, KEY_CHANNEL
},
47 { 0x1e17, KEY_RIGHT
},
48 { 0x1e18, KEY_VIDEO
},
49 { 0x1e19, KEY_AUDIO
},
50 { 0x1e1a, KEY_MEDIA
},
55 { 0x1e20, KEY_CHANNELUP
},
56 { 0x1e21, KEY_CHANNELDOWN
},
57 { 0x1e24, KEY_LAST
}, /* Skip backwards */
60 { 0x1e2e, KEY_GREEN
},
61 { 0x1e30, KEY_PAUSE
},
62 { 0x1e32, KEY_REWIND
},
63 { 0x1e34, KEY_FASTFORWARD
},
66 { 0x1e37, KEY_RECORD
},
67 { 0x1e38, KEY_YELLOW
},
69 { 0x1e3d, KEY_POWER
},
72 static int nova_t_rc_query(struct dvb_usb_device
*d
, u32
*event
, int *state
)
74 u8 key
[5],cmd
[2] = { DIBUSB_REQ_POLL_REMOTE
, 0x35 }, data
,toggle
,custom
;
77 struct dibusb_device_state
*st
= d
->priv
;
79 dvb_usb_generic_rw(d
,cmd
,2,key
,5,0);
81 *state
= REMOTE_NO_KEY_PRESSED
;
83 case DIBUSB_RC_HAUPPAUGE_KEY_PRESSED
:
84 raw
= ((key
[1] << 8) | key
[2]) >> 3;
85 toggle
= !!(raw
& 0x800);
87 custom
= (raw
>> 6) & 0x1f;
89 deb_rc("raw key code 0x%02x, 0x%02x, 0x%02x to c: %02x d: %02x toggle: %d\n",key
[1],key
[2],key
[3],custom
,data
,toggle
);
91 for (i
= 0; i
< ARRAY_SIZE(ir_codes_haupp_table
); i
++) {
92 if (rc5_data(&ir_codes_haupp_table
[i
]) == data
&&
93 rc5_custom(&ir_codes_haupp_table
[i
]) == custom
) {
95 deb_rc("c: %x, d: %x\n", rc5_data(&ir_codes_haupp_table
[i
]),
96 rc5_custom(&ir_codes_haupp_table
[i
]));
98 *event
= ir_codes_haupp_table
[i
].keycode
;
99 *state
= REMOTE_KEY_PRESSED
;
100 if (st
->old_toggle
== toggle
) {
101 if (st
->last_repeat_count
++ < 2)
102 *state
= REMOTE_NO_KEY_PRESSED
;
104 st
->last_repeat_count
= 0;
105 st
->old_toggle
= toggle
;
112 case DIBUSB_RC_HAUPPAUGE_KEY_EMPTY
:
120 static int nova_t_read_mac_address (struct dvb_usb_device
*d
, u8 mac
[6])
129 /* this is a complete guess, but works for my box */
130 for (i
= 136; i
< 139; i
++) {
131 dibusb_read_eeprom_byte(d
,i
, &b
);
133 mac
[5 - (i
- 136)] = b
;
139 /* USB Driver stuff */
140 static struct dvb_usb_device_properties nova_t_properties
;
142 static int nova_t_probe(struct usb_interface
*intf
,
143 const struct usb_device_id
*id
)
145 return dvb_usb_device_init(intf
, &nova_t_properties
,
146 THIS_MODULE
, NULL
, adapter_nr
);
149 /* do not change the order of the ID table */
150 static struct usb_device_id nova_t_table
[] = {
151 /* 00 */ { USB_DEVICE(USB_VID_HAUPPAUGE
, USB_PID_WINTV_NOVA_T_USB2_COLD
) },
152 /* 01 */ { USB_DEVICE(USB_VID_HAUPPAUGE
, USB_PID_WINTV_NOVA_T_USB2_WARM
) },
153 { } /* Terminating entry */
155 MODULE_DEVICE_TABLE(usb
, nova_t_table
);
157 static struct dvb_usb_device_properties nova_t_properties
= {
158 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
160 .usb_ctrl
= CYPRESS_FX2
,
161 .firmware
= "dvb-usb-nova-t-usb2-02.fw",
166 .caps
= DVB_USB_ADAP_HAS_PID_FILTER
| DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF
,
167 .pid_filter_count
= 32,
169 .streaming_ctrl
= dibusb2_0_streaming_ctrl
,
170 .pid_filter
= dibusb_pid_filter
,
171 .pid_filter_ctrl
= dibusb_pid_filter_ctrl
,
172 .frontend_attach
= dibusb_dib3000mc_frontend_attach
,
173 .tuner_attach
= dibusb_dib3000mc_tuner_attach
,
175 /* parameter for the MPEG2-data transfer */
187 .size_of_priv
= sizeof(struct dibusb_state
),
190 .size_of_priv
= sizeof(struct dibusb_device_state
),
192 .power_ctrl
= dibusb2_0_power_ctrl
,
193 .read_mac_address
= nova_t_read_mac_address
,
197 .rc_key_map
= ir_codes_haupp_table
,
198 .rc_key_map_size
= ARRAY_SIZE(ir_codes_haupp_table
),
199 .rc_query
= nova_t_rc_query
,
202 .i2c_algo
= &dibusb_i2c_algo
,
204 .generic_bulk_ctrl_endpoint
= 0x01,
206 .num_device_descs
= 1,
208 { "Hauppauge WinTV-NOVA-T usb2",
209 { &nova_t_table
[0], NULL
},
210 { &nova_t_table
[1], NULL
},
216 static struct usb_driver nova_t_driver
= {
217 .name
= "dvb_usb_nova_t_usb2",
218 .probe
= nova_t_probe
,
219 .disconnect
= dvb_usb_device_exit
,
220 .id_table
= nova_t_table
,
224 static int __init
nova_t_module_init(void)
227 if ((result
= usb_register(&nova_t_driver
))) {
228 err("usb_register failed. Error number %d",result
);
235 static void __exit
nova_t_module_exit(void)
237 /* deregister this driver from the USB subsystem */
238 usb_deregister(&nova_t_driver
);
241 module_init (nova_t_module_init
);
242 module_exit (nova_t_module_exit
);
244 MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
245 MODULE_DESCRIPTION("Hauppauge WinTV-NOVA-T usb2");
246 MODULE_VERSION("1.0");
247 MODULE_LICENSE("GPL");