2 * Driver for AzureWave 6007 DVB-C/T USB2.0 and clones
4 * Copyright (c) Henry Wang <Henry.wang@AzureWave.com>
6 * This driver was made publicly available by Terratec, at:
7 * http://linux.terratec.de/files/TERRATEC_H7/20110323_TERRATEC_H7_Linux.tar.gz
8 * The original driver's license is GPL, as declared with MODULE_LICENSE()
10 * Copyright (c) 2010-2012 Mauro Carvalho Chehab
11 * Driver modified by in order to work with upstream drxk driver, and
12 * tons of bugs got fixed, and converted to use dvb-usb-v2.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation under version 2 of the License.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
26 #include "dvb_ca_en50221.h"
28 #include "cypress_firmware.h"
30 #define AZ6007_FIRMWARE "dvb-usb-terratec-h7-az6007.fw"
32 static int az6007_xfer_debug
;
33 module_param_named(xfer_debug
, az6007_xfer_debug
, int, 0644);
34 MODULE_PARM_DESC(xfer_debug
, "Enable xfer debug");
36 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr
);
38 /* Known requests (Cypress FX2 firmware + az6007 "private" ones*/
41 #define AZ6007_READ_DATA 0xb7
42 #define AZ6007_I2C_RD 0xb9
43 #define AZ6007_POWER 0xbc
44 #define AZ6007_I2C_WR 0xbd
45 #define FX2_SCON1 0xc0
46 #define AZ6007_TS_THROUGH 0xc7
47 #define AZ6007_READ_IR 0xb4
49 struct az6007_device_state
{
51 struct mutex ca_mutex
;
52 struct dvb_ca_en50221 ca
;
54 int (*gate_ctrl
) (struct dvb_frontend
*, int);
55 unsigned char data
[4096];
58 static struct drxk_config terratec_h7_drxk
= {
62 .single_master
= true,
63 .enable_merr_cfg
= true,
64 .no_i2c_bridge
= false,
66 .mpeg_out_clk_strength
= 0x02,
67 .qam_demod_parameter_count
= 2,
68 .microcode_name
= "dvb-usb-terratec-h7-drxk.fw",
71 static struct drxk_config cablestar_hdci_drxk
= {
75 .single_master
= true,
76 .enable_merr_cfg
= true,
77 .no_i2c_bridge
= false,
79 .mpeg_out_clk_strength
= 0x02,
80 .qam_demod_parameter_count
= 2,
81 .microcode_name
= "dvb-usb-technisat-cablestar-hdci-drxk.fw",
84 static int drxk_gate_ctrl(struct dvb_frontend
*fe
, int enable
)
86 struct az6007_device_state
*st
= fe_to_priv(fe
);
87 struct dvb_usb_adapter
*adap
= fe
->sec_priv
;
90 pr_debug("%s: %s\n", __func__
, enable
? "enable" : "disable");
96 status
= st
->gate_ctrl(fe
, 1);
98 status
= st
->gate_ctrl(fe
, 0);
103 static struct mt2063_config az6007_mt2063_config
= {
104 .tuner_address
= 0x60,
105 .refclock
= 36125000,
108 static int __az6007_read(struct usb_device
*udev
, u8 req
, u16 value
,
109 u16 index
, u8
*b
, int blen
)
113 ret
= usb_control_msg(udev
,
114 usb_rcvctrlpipe(udev
, 0),
116 USB_TYPE_VENDOR
| USB_DIR_IN
,
117 value
, index
, b
, blen
, 5000);
119 pr_warn("usb read operation failed. (%d)\n", ret
);
123 if (az6007_xfer_debug
) {
124 printk(KERN_DEBUG
"az6007: IN req: %02x, value: %04x, index: %04x\n",
126 print_hex_dump_bytes("az6007: payload: ",
127 DUMP_PREFIX_NONE
, b
, blen
);
133 static int az6007_read(struct dvb_usb_device
*d
, u8 req
, u16 value
,
134 u16 index
, u8
*b
, int blen
)
136 struct az6007_device_state
*st
= d
->priv
;
139 if (mutex_lock_interruptible(&st
->mutex
) < 0)
142 ret
= __az6007_read(d
->udev
, req
, value
, index
, b
, blen
);
144 mutex_unlock(&st
->mutex
);
149 static int __az6007_write(struct usb_device
*udev
, u8 req
, u16 value
,
150 u16 index
, u8
*b
, int blen
)
154 if (az6007_xfer_debug
) {
155 printk(KERN_DEBUG
"az6007: OUT req: %02x, value: %04x, index: %04x\n",
157 print_hex_dump_bytes("az6007: payload: ",
158 DUMP_PREFIX_NONE
, b
, blen
);
162 pr_err("az6007: tried to write %d bytes, but I2C max size is 64 bytes\n",
167 ret
= usb_control_msg(udev
,
168 usb_sndctrlpipe(udev
, 0),
170 USB_TYPE_VENDOR
| USB_DIR_OUT
,
171 value
, index
, b
, blen
, 5000);
173 pr_err("usb write operation failed. (%d)\n", ret
);
180 static int az6007_write(struct dvb_usb_device
*d
, u8 req
, u16 value
,
181 u16 index
, u8
*b
, int blen
)
183 struct az6007_device_state
*st
= d
->priv
;
186 if (mutex_lock_interruptible(&st
->mutex
) < 0)
189 ret
= __az6007_write(d
->udev
, req
, value
, index
, b
, blen
);
191 mutex_unlock(&st
->mutex
);
196 static int az6007_streaming_ctrl(struct dvb_frontend
*fe
, int onoff
)
198 struct dvb_usb_device
*d
= fe_to_d(fe
);
200 pr_debug("%s: %s\n", __func__
, onoff
? "enable" : "disable");
202 return az6007_write(d
, 0xbc, onoff
, 0, NULL
, 0);
205 #if IS_ENABLED(CONFIG_RC_CORE)
206 /* remote control stuff (does not work with my box) */
207 static int az6007_rc_query(struct dvb_usb_device
*d
)
209 struct az6007_device_state
*st
= d_to_priv(d
);
212 az6007_read(d
, AZ6007_READ_IR
, 0, 0, st
->data
, 10);
214 if (st
->data
[1] == 0x44)
217 if ((st
->data
[1] ^ st
->data
[2]) == 0xff)
220 code
= st
->data
[1] << 8 | st
->data
[2];
222 if ((st
->data
[3] ^ st
->data
[4]) == 0xff)
223 code
= code
<< 8 | st
->data
[3];
225 code
= code
<< 16 | st
->data
[3] << 8 | st
->data
[4];
227 rc_keydown(d
->rc_dev
, code
, st
->data
[5]);
232 static int az6007_get_rc_config(struct dvb_usb_device
*d
, struct dvb_usb_rc
*rc
)
234 pr_debug("Getting az6007 Remote Control properties\n");
236 rc
->allowed_protos
= RC_BIT_NEC
;
237 rc
->query
= az6007_rc_query
;
243 #define az6007_get_rc_config NULL
246 static int az6007_ci_read_attribute_mem(struct dvb_ca_en50221
*ca
,
250 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
251 struct az6007_device_state
*state
= d_to_priv(d
);
263 b
= kmalloc(12, GFP_KERNEL
);
267 mutex_lock(&state
->ca_mutex
);
274 ret
= az6007_read(d
, req
, value
, index
, b
, blen
);
276 pr_warn("usb in operation failed. (%d)\n", ret
);
282 mutex_unlock(&state
->ca_mutex
);
287 static int az6007_ci_write_attribute_mem(struct dvb_ca_en50221
*ca
,
292 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
293 struct az6007_device_state
*state
= d_to_priv(d
);
301 pr_debug("%s(), slot %d\n", __func__
, slot
);
305 mutex_lock(&state
->ca_mutex
);
311 ret
= az6007_write(d
, req
, value1
, index
, NULL
, blen
);
313 pr_warn("usb out operation failed. (%d)\n", ret
);
315 mutex_unlock(&state
->ca_mutex
);
319 static int az6007_ci_read_cam_control(struct dvb_ca_en50221
*ca
,
323 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
324 struct az6007_device_state
*state
= d_to_priv(d
);
336 b
= kmalloc(12, GFP_KERNEL
);
340 mutex_lock(&state
->ca_mutex
);
347 ret
= az6007_read(d
, req
, value
, index
, b
, blen
);
349 pr_warn("usb in operation failed. (%d)\n", ret
);
353 pr_warn("Read CI IO error\n");
356 pr_debug("read cam data = %x from 0x%x\n", b
[1], value
);
359 mutex_unlock(&state
->ca_mutex
);
364 static int az6007_ci_write_cam_control(struct dvb_ca_en50221
*ca
,
369 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
370 struct az6007_device_state
*state
= d_to_priv(d
);
381 mutex_lock(&state
->ca_mutex
);
387 ret
= az6007_write(d
, req
, value1
, index
, NULL
, blen
);
389 pr_warn("usb out operation failed. (%d)\n", ret
);
394 mutex_unlock(&state
->ca_mutex
);
398 static int CI_CamReady(struct dvb_ca_en50221
*ca
, int slot
)
400 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
409 b
= kmalloc(12, GFP_KERNEL
);
418 ret
= az6007_read(d
, req
, value
, index
, b
, blen
);
420 pr_warn("usb in operation failed. (%d)\n", ret
);
429 static int az6007_ci_slot_reset(struct dvb_ca_en50221
*ca
, int slot
)
431 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
432 struct az6007_device_state
*state
= d_to_priv(d
);
440 mutex_lock(&state
->ca_mutex
);
447 ret
= az6007_write(d
, req
, value
, index
, NULL
, blen
);
449 pr_warn("usb out operation failed. (%d)\n", ret
);
459 ret
= az6007_write(d
, req
, value
, index
, NULL
, blen
);
461 pr_warn("usb out operation failed. (%d)\n", ret
);
465 for (i
= 0; i
< 15; i
++) {
468 if (CI_CamReady(ca
, slot
)) {
469 pr_debug("CAM Ready\n");
476 mutex_unlock(&state
->ca_mutex
);
480 static int az6007_ci_slot_shutdown(struct dvb_ca_en50221
*ca
, int slot
)
485 static int az6007_ci_slot_ts_enable(struct dvb_ca_en50221
*ca
, int slot
)
487 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
488 struct az6007_device_state
*state
= d_to_priv(d
);
496 pr_debug("%s()\n", __func__
);
497 mutex_lock(&state
->ca_mutex
);
503 ret
= az6007_write(d
, req
, value
, index
, NULL
, blen
);
505 pr_warn("usb out operation failed. (%d)\n", ret
);
510 mutex_unlock(&state
->ca_mutex
);
514 static int az6007_ci_poll_slot_status(struct dvb_ca_en50221
*ca
, int slot
, int open
)
516 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
517 struct az6007_device_state
*state
= d_to_priv(d
);
525 b
= kmalloc(12, GFP_KERNEL
);
528 mutex_lock(&state
->ca_mutex
);
535 ret
= az6007_read(d
, req
, value
, index
, b
, blen
);
537 pr_warn("usb in operation failed. (%d)\n", ret
);
542 if (!ret
&& b
[0] == 1) {
543 ret
= DVB_CA_EN50221_POLL_CAM_PRESENT
|
544 DVB_CA_EN50221_POLL_CAM_READY
;
547 mutex_unlock(&state
->ca_mutex
);
553 static void az6007_ci_uninit(struct dvb_usb_device
*d
)
555 struct az6007_device_state
*state
;
557 pr_debug("%s()\n", __func__
);
562 state
= d_to_priv(d
);
566 if (NULL
== state
->ca
.data
)
569 dvb_ca_en50221_release(&state
->ca
);
571 memset(&state
->ca
, 0, sizeof(state
->ca
));
575 static int az6007_ci_init(struct dvb_usb_adapter
*adap
)
577 struct dvb_usb_device
*d
= adap_to_d(adap
);
578 struct az6007_device_state
*state
= adap_to_priv(adap
);
581 pr_debug("%s()\n", __func__
);
583 mutex_init(&state
->ca_mutex
);
584 state
->ca
.owner
= THIS_MODULE
;
585 state
->ca
.read_attribute_mem
= az6007_ci_read_attribute_mem
;
586 state
->ca
.write_attribute_mem
= az6007_ci_write_attribute_mem
;
587 state
->ca
.read_cam_control
= az6007_ci_read_cam_control
;
588 state
->ca
.write_cam_control
= az6007_ci_write_cam_control
;
589 state
->ca
.slot_reset
= az6007_ci_slot_reset
;
590 state
->ca
.slot_shutdown
= az6007_ci_slot_shutdown
;
591 state
->ca
.slot_ts_enable
= az6007_ci_slot_ts_enable
;
592 state
->ca
.poll_slot_status
= az6007_ci_poll_slot_status
;
595 ret
= dvb_ca_en50221_init(&adap
->dvb_adap
,
600 pr_err("Cannot initialize CI: Error %d.\n", ret
);
601 memset(&state
->ca
, 0, sizeof(state
->ca
));
605 pr_debug("CI initialized.\n");
610 static int az6007_read_mac_addr(struct dvb_usb_adapter
*adap
, u8 mac
[6])
612 struct dvb_usb_device
*d
= adap_to_d(adap
);
613 struct az6007_device_state
*st
= adap_to_priv(adap
);
616 ret
= az6007_read(d
, AZ6007_READ_DATA
, 6, 0, st
->data
, 6);
617 memcpy(mac
, st
->data
, 6);
620 pr_debug("%s: mac is %pM\n", __func__
, mac
);
625 static int az6007_frontend_attach(struct dvb_usb_adapter
*adap
)
627 struct az6007_device_state
*st
= adap_to_priv(adap
);
628 struct dvb_usb_device
*d
= adap_to_d(adap
);
630 pr_debug("attaching demod drxk\n");
632 adap
->fe
[0] = dvb_attach(drxk_attach
, &terratec_h7_drxk
,
637 adap
->fe
[0]->sec_priv
= adap
;
638 st
->gate_ctrl
= adap
->fe
[0]->ops
.i2c_gate_ctrl
;
639 adap
->fe
[0]->ops
.i2c_gate_ctrl
= drxk_gate_ctrl
;
641 az6007_ci_init(adap
);
646 static int az6007_cablestar_hdci_frontend_attach(struct dvb_usb_adapter
*adap
)
648 struct az6007_device_state
*st
= adap_to_priv(adap
);
649 struct dvb_usb_device
*d
= adap_to_d(adap
);
651 pr_debug("attaching demod drxk\n");
653 adap
->fe
[0] = dvb_attach(drxk_attach
, &cablestar_hdci_drxk
,
658 adap
->fe
[0]->sec_priv
= adap
;
659 st
->gate_ctrl
= adap
->fe
[0]->ops
.i2c_gate_ctrl
;
660 adap
->fe
[0]->ops
.i2c_gate_ctrl
= drxk_gate_ctrl
;
662 az6007_ci_init(adap
);
667 static int az6007_tuner_attach(struct dvb_usb_adapter
*adap
)
669 struct dvb_usb_device
*d
= adap_to_d(adap
);
671 pr_debug("attaching tuner mt2063\n");
673 /* Attach mt2063 to DVB-C frontend */
674 if (adap
->fe
[0]->ops
.i2c_gate_ctrl
)
675 adap
->fe
[0]->ops
.i2c_gate_ctrl(adap
->fe
[0], 1);
676 if (!dvb_attach(mt2063_attach
, adap
->fe
[0],
677 &az6007_mt2063_config
,
681 if (adap
->fe
[0]->ops
.i2c_gate_ctrl
)
682 adap
->fe
[0]->ops
.i2c_gate_ctrl(adap
->fe
[0], 0);
687 static int az6007_power_ctrl(struct dvb_usb_device
*d
, int onoff
)
689 struct az6007_device_state
*state
= d_to_priv(d
);
692 pr_debug("%s()\n", __func__
);
695 mutex_init(&state
->mutex
);
697 ret
= az6007_write(d
, AZ6007_POWER
, 0, 2, NULL
, 0);
701 ret
= az6007_write(d
, AZ6007_POWER
, 1, 4, NULL
, 0);
705 ret
= az6007_write(d
, AZ6007_POWER
, 1, 3, NULL
, 0);
709 ret
= az6007_write(d
, AZ6007_POWER
, 1, 4, NULL
, 0);
714 ret
= az6007_write(d
, FX2_SCON1
, 0, 3, NULL
, 0);
718 ret
= az6007_write(d
, FX2_SCON1
, 1, 3, NULL
, 0);
722 ret
= az6007_write(d
, AZ6007_POWER
, 0, 0, NULL
, 0);
734 az6007_write(d
, AZ6007_POWER
, 0, 0, NULL
, 0);
735 az6007_write(d
, AZ6007_TS_THROUGH
, 0, 0, NULL
, 0);
741 static int az6007_i2c_xfer(struct i2c_adapter
*adap
, struct i2c_msg msgs
[],
744 struct dvb_usb_device
*d
= i2c_get_adapdata(adap
);
745 struct az6007_device_state
*st
= d_to_priv(d
);
753 if (mutex_lock_interruptible(&st
->mutex
) < 0)
756 for (i
= 0; i
< num
; i
++) {
757 addr
= msgs
[i
].addr
<< 1;
759 && (msgs
[i
].len
== 1)
760 && ((msgs
[i
].flags
& I2C_M_RD
) != I2C_M_RD
)
761 && (msgs
[i
+ 1].flags
& I2C_M_RD
)
762 && (msgs
[i
].addr
== msgs
[i
+ 1].addr
)) {
764 * A write + read xfer for the same address, where
765 * the first xfer has just 1 byte length.
766 * Need to join both into one operation
768 if (az6007_xfer_debug
)
769 printk(KERN_DEBUG
"az6007: I2C W/R addr=0x%x len=%d/%d\n",
770 addr
, msgs
[i
].len
, msgs
[i
+ 1].len
);
772 index
= msgs
[i
].buf
[0];
773 value
= addr
| (1 << 8);
774 length
= 6 + msgs
[i
+ 1].len
;
775 len
= msgs
[i
+ 1].len
;
776 ret
= __az6007_read(d
->udev
, req
, value
, index
,
779 for (j
= 0; j
< len
; j
++)
780 msgs
[i
+ 1].buf
[j
] = st
->data
[j
+ 5];
784 } else if (!(msgs
[i
].flags
& I2C_M_RD
)) {
786 if (az6007_xfer_debug
)
787 printk(KERN_DEBUG
"az6007: I2C W addr=0x%x len=%d\n",
790 index
= msgs
[i
].buf
[0];
791 value
= addr
| (1 << 8);
792 length
= msgs
[i
].len
- 1;
793 len
= msgs
[i
].len
- 1;
794 for (j
= 0; j
< len
; j
++)
795 st
->data
[j
] = msgs
[i
].buf
[j
+ 1];
796 ret
= __az6007_write(d
->udev
, req
, value
, index
,
800 if (az6007_xfer_debug
)
801 printk(KERN_DEBUG
"az6007: I2C R addr=0x%x len=%d\n",
804 index
= msgs
[i
].buf
[0];
806 length
= msgs
[i
].len
+ 6;
808 ret
= __az6007_read(d
->udev
, req
, value
, index
,
810 for (j
= 0; j
< len
; j
++)
811 msgs
[i
].buf
[j
] = st
->data
[j
+ 5];
817 mutex_unlock(&st
->mutex
);
820 pr_info("%s ERROR: %i\n", __func__
, ret
);
826 static u32
az6007_i2c_func(struct i2c_adapter
*adapter
)
831 static struct i2c_algorithm az6007_i2c_algo
= {
832 .master_xfer
= az6007_i2c_xfer
,
833 .functionality
= az6007_i2c_func
,
836 static int az6007_identify_state(struct dvb_usb_device
*d
, const char **name
)
841 pr_debug("Identifying az6007 state\n");
843 mac
= kmalloc(6, GFP_ATOMIC
);
847 /* Try to read the mac address */
848 ret
= __az6007_read(d
->udev
, AZ6007_READ_DATA
, 6, 0, mac
, 6);
857 __az6007_write(d
->udev
, 0x09, 1, 0, NULL
, 0);
858 __az6007_write(d
->udev
, 0x00, 0, 0, NULL
, 0);
859 __az6007_write(d
->udev
, 0x00, 0, 0, NULL
, 0);
862 pr_debug("Device is on %s state\n",
863 ret
== WARM
? "warm" : "cold");
867 static void az6007_usb_disconnect(struct usb_interface
*intf
)
869 struct dvb_usb_device
*d
= usb_get_intfdata(intf
);
871 dvb_usbv2_disconnect(intf
);
874 static int az6007_download_firmware(struct dvb_usb_device
*d
,
875 const struct firmware
*fw
)
877 pr_debug("Loading az6007 firmware\n");
879 return cypress_load_firmware(d
->udev
, fw
, CYPRESS_FX2
);
882 /* DVB USB Driver stuff */
883 static struct dvb_usb_device_properties az6007_props
= {
884 .driver_name
= KBUILD_MODNAME
,
885 .owner
= THIS_MODULE
,
886 .firmware
= AZ6007_FIRMWARE
,
888 .adapter_nr
= adapter_nr
,
889 .size_of_priv
= sizeof(struct az6007_device_state
),
890 .i2c_algo
= &az6007_i2c_algo
,
891 .tuner_attach
= az6007_tuner_attach
,
892 .frontend_attach
= az6007_frontend_attach
,
893 .streaming_ctrl
= az6007_streaming_ctrl
,
894 .get_rc_config
= az6007_get_rc_config
,
895 .read_mac_address
= az6007_read_mac_addr
,
896 .download_firmware
= az6007_download_firmware
,
897 .identify_state
= az6007_identify_state
,
898 .power_ctrl
= az6007_power_ctrl
,
901 { .stream
= DVB_USB_STREAM_BULK(0x02, 10, 4096), }
905 static struct dvb_usb_device_properties az6007_cablestar_hdci_props
= {
906 .driver_name
= KBUILD_MODNAME
,
907 .owner
= THIS_MODULE
,
908 .firmware
= AZ6007_FIRMWARE
,
910 .adapter_nr
= adapter_nr
,
911 .size_of_priv
= sizeof(struct az6007_device_state
),
912 .i2c_algo
= &az6007_i2c_algo
,
913 .tuner_attach
= az6007_tuner_attach
,
914 .frontend_attach
= az6007_cablestar_hdci_frontend_attach
,
915 .streaming_ctrl
= az6007_streaming_ctrl
,
916 /* ditch get_rc_config as it can't work (TS35 remote, I believe it's rc5) */
917 .get_rc_config
= NULL
,
918 .read_mac_address
= az6007_read_mac_addr
,
919 .download_firmware
= az6007_download_firmware
,
920 .identify_state
= az6007_identify_state
,
921 .power_ctrl
= az6007_power_ctrl
,
924 { .stream
= DVB_USB_STREAM_BULK(0x02, 10, 4096), }
928 static struct usb_device_id az6007_usb_table
[] = {
929 {DVB_USB_DEVICE(USB_VID_AZUREWAVE
, USB_PID_AZUREWAVE_6007
,
930 &az6007_props
, "Azurewave 6007", RC_MAP_EMPTY
)},
931 {DVB_USB_DEVICE(USB_VID_TERRATEC
, USB_PID_TERRATEC_H7
,
932 &az6007_props
, "Terratec H7", RC_MAP_NEC_TERRATEC_CINERGY_XS
)},
933 {DVB_USB_DEVICE(USB_VID_TERRATEC
, USB_PID_TERRATEC_H7_2
,
934 &az6007_props
, "Terratec H7", RC_MAP_NEC_TERRATEC_CINERGY_XS
)},
935 {DVB_USB_DEVICE(USB_VID_TECHNISAT
, USB_PID_TECHNISAT_USB2_CABLESTAR_HDCI
,
936 &az6007_cablestar_hdci_props
, "Technisat CableStar Combo HD CI", RC_MAP_EMPTY
)},
940 MODULE_DEVICE_TABLE(usb
, az6007_usb_table
);
942 static int az6007_suspend(struct usb_interface
*intf
, pm_message_t msg
)
944 struct dvb_usb_device
*d
= usb_get_intfdata(intf
);
947 return dvb_usbv2_suspend(intf
, msg
);
950 static int az6007_resume(struct usb_interface
*intf
)
952 struct dvb_usb_device
*d
= usb_get_intfdata(intf
);
953 struct dvb_usb_adapter
*adap
= &d
->adapter
[0];
955 az6007_ci_init(adap
);
956 return dvb_usbv2_resume(intf
);
959 /* usb specific object needed to register this driver with the usb subsystem */
960 static struct usb_driver az6007_usb_driver
= {
961 .name
= KBUILD_MODNAME
,
962 .id_table
= az6007_usb_table
,
963 .probe
= dvb_usbv2_probe
,
964 .disconnect
= az6007_usb_disconnect
,
968 * FIXME: need to implement reset_resume, likely with
969 * dvb-usb-v2 core support
971 .suspend
= az6007_suspend
,
972 .resume
= az6007_resume
,
975 module_usb_driver(az6007_usb_driver
);
977 MODULE_AUTHOR("Henry Wang <Henry.wang@AzureWave.com>");
978 MODULE_AUTHOR("Mauro Carvalho Chehab");
979 MODULE_DESCRIPTION("Driver for AzureWave 6007 DVB-C/T USB2.0 and clones");
980 MODULE_VERSION("2.0");
981 MODULE_LICENSE("GPL");
982 MODULE_FIRMWARE(AZ6007_FIRMWARE
);