2 * Copyright (C) 2010-2014 Michael Krufky (mkrufky@linuxtv.org)
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation, version 2.
8 * see Documentation/dvb/README.dvb-usb for more information
11 #include <linux/vmalloc.h>
12 #include <linux/i2c.h>
13 #include <media/tuner.h>
16 #include "mxl111sf-reg.h"
17 #include "mxl111sf-phy.h"
18 #include "mxl111sf-i2c.h"
19 #include "mxl111sf-gpio.h"
21 #include "mxl111sf-demod.h"
22 #include "mxl111sf-tuner.h"
27 /* Max transfer size done by I2C transfer functions */
28 #define MAX_XFER_SIZE 64
30 int dvb_usb_mxl111sf_debug
;
31 module_param_named(debug
, dvb_usb_mxl111sf_debug
, int, 0644);
32 MODULE_PARM_DESC(debug
, "set debugging level "
33 "(1=info, 2=xfer, 4=i2c, 8=reg, 16=adv (or-able)).");
35 static int dvb_usb_mxl111sf_isoc
;
36 module_param_named(isoc
, dvb_usb_mxl111sf_isoc
, int, 0644);
37 MODULE_PARM_DESC(isoc
, "enable usb isoc xfer (0=bulk, 1=isoc).");
39 static int dvb_usb_mxl111sf_spi
;
40 module_param_named(spi
, dvb_usb_mxl111sf_spi
, int, 0644);
41 MODULE_PARM_DESC(spi
, "use spi rather than tp for data xfer (0=tp, 1=spi).");
43 #define ANT_PATH_AUTO 0
44 #define ANT_PATH_EXTERNAL 1
45 #define ANT_PATH_INTERNAL 2
47 static int dvb_usb_mxl111sf_rfswitch
=
54 module_param_named(rfswitch
, dvb_usb_mxl111sf_rfswitch
, int, 0644);
55 MODULE_PARM_DESC(rfswitch
, "force rf switch position (0=auto, 1=ext, 2=int).");
57 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr
);
59 int mxl111sf_ctrl_msg(struct dvb_usb_device
*d
,
60 u8 cmd
, u8
*wbuf
, int wlen
, u8
*rbuf
, int rlen
)
62 int wo
= (rbuf
== NULL
|| rlen
== 0); /* write-only */
64 u8 sndbuf
[MAX_XFER_SIZE
];
66 if (1 + wlen
> sizeof(sndbuf
)) {
67 pr_warn("%s: len=%d is too big!\n", __func__
, wlen
);
71 pr_debug("%s(wlen = %d, rlen = %d)\n", __func__
, wlen
, rlen
);
73 memset(sndbuf
, 0, 1+wlen
);
76 memcpy(&sndbuf
[1], wbuf
, wlen
);
78 ret
= (wo
) ? dvb_usbv2_generic_write(d
, sndbuf
, 1+wlen
) :
79 dvb_usbv2_generic_rw(d
, sndbuf
, 1+wlen
, rbuf
, rlen
);
85 /* ------------------------------------------------------------------------ */
87 #define MXL_CMD_REG_READ 0xaa
88 #define MXL_CMD_REG_WRITE 0x55
90 int mxl111sf_read_reg(struct mxl111sf_state
*state
, u8 addr
, u8
*data
)
95 ret
= mxl111sf_ctrl_msg(state
->d
, MXL_CMD_REG_READ
, &addr
, 1, buf
, 2);
97 mxl_debug("error reading reg: 0x%02x", addr
);
104 pr_err("invalid response reading reg: 0x%02x != 0x%02x, 0x%02x",
105 addr
, buf
[0], buf
[1]);
109 pr_debug("R: (0x%02x, 0x%02x)\n", addr
, buf
[1]);
114 int mxl111sf_write_reg(struct mxl111sf_state
*state
, u8 addr
, u8 data
)
116 u8 buf
[] = { addr
, data
};
119 pr_debug("W: (0x%02x, 0x%02x)\n", addr
, data
);
121 ret
= mxl111sf_ctrl_msg(state
->d
, MXL_CMD_REG_WRITE
, buf
, 2, NULL
, 0);
123 pr_err("error writing reg: 0x%02x, val: 0x%02x", addr
, data
);
127 /* ------------------------------------------------------------------------ */
129 int mxl111sf_write_reg_mask(struct mxl111sf_state
*state
,
130 u8 addr
, u8 mask
, u8 data
)
136 ret
= mxl111sf_read_reg(state
, addr
, &val
);
138 /* dont know why this usually errors out on the first try */
140 pr_err("error writing addr: 0x%02x, mask: 0x%02x, "
141 "data: 0x%02x, retrying...", addr
, mask
, data
);
143 ret
= mxl111sf_read_reg(state
, addr
, &val
);
151 ret
= mxl111sf_write_reg(state
, addr
, val
);
157 /* ------------------------------------------------------------------------ */
159 int mxl111sf_ctrl_program_regs(struct mxl111sf_state
*state
,
160 struct mxl111sf_reg_ctrl_info
*ctrl_reg_info
)
164 for (i
= 0; ctrl_reg_info
[i
].addr
|
165 ctrl_reg_info
[i
].mask
|
166 ctrl_reg_info
[i
].data
; i
++) {
168 ret
= mxl111sf_write_reg_mask(state
,
169 ctrl_reg_info
[i
].addr
,
170 ctrl_reg_info
[i
].mask
,
171 ctrl_reg_info
[i
].data
);
173 pr_err("failed on reg #%d (0x%02x)", i
,
174 ctrl_reg_info
[i
].addr
);
181 /* ------------------------------------------------------------------------ */
183 static int mxl1x1sf_get_chip_info(struct mxl111sf_state
*state
)
187 char *mxl_chip
, *mxl_rev
;
189 if ((state
->chip_id
) && (state
->chip_ver
))
192 ret
= mxl111sf_read_reg(state
, CHIP_ID_REG
, &id
);
197 ret
= mxl111sf_read_reg(state
, TOP_CHIP_REV_ID_REG
, &ver
);
200 state
->chip_ver
= ver
;
204 mxl_chip
= "MxL101SF";
207 mxl_chip
= "MxL111SF";
210 mxl_chip
= "UNKNOWN MxL1X1";
215 state
->chip_rev
= MXL111SF_V6
;
219 state
->chip_rev
= MXL111SF_V8_100
;
223 state
->chip_rev
= MXL111SF_V8_200
;
228 mxl_rev
= "UNKNOWN REVISION";
231 pr_info("%s detected, %s (0x%x)", mxl_chip
, mxl_rev
, ver
);
236 #define get_chip_info(state) \
239 ___ret = mxl1x1sf_get_chip_info(state); \
240 if (mxl_fail(___ret)) { \
241 mxl_debug("failed to get chip info" \
242 " on first probe attempt"); \
243 ___ret = mxl1x1sf_get_chip_info(state); \
244 if (mxl_fail(___ret)) \
245 pr_err("failed to get chip info during probe"); \
247 mxl_debug("probe needed a retry " \
248 "in order to succeed."); \
253 /* ------------------------------------------------------------------------ */
255 static int mxl111sf_power_ctrl(struct dvb_usb_device
*d
, int onoff
)
257 /* power control depends on which adapter is being woken:
258 * save this for init, instead, via mxl111sf_adap_fe_init */
263 static int mxl111sf_adap_fe_init(struct dvb_frontend
*fe
)
265 struct dvb_usb_device
*d
= fe_to_d(fe
);
266 struct mxl111sf_state
*state
= fe_to_priv(fe
);
267 struct mxl111sf_adap_state
*adap_state
= &state
->adap_state
[fe
->id
];
270 /* exit if we didn't initialize the driver yet */
271 if (!state
->chip_id
) {
272 mxl_debug("driver not yet initialized, exit.");
276 pr_debug("%s()\n", __func__
);
278 mutex_lock(&state
->fe_lock
);
280 state
->alt_mode
= adap_state
->alt_mode
;
282 if (usb_set_interface(d
->udev
, 0, state
->alt_mode
) < 0)
283 pr_err("set interface failed");
285 err
= mxl1x1sf_soft_reset(state
);
287 err
= mxl111sf_init_tuner_demod(state
);
289 err
= mxl1x1sf_set_device_mode(state
, adap_state
->device_mode
);
292 err
= mxl111sf_enable_usb_output(state
);
294 err
= mxl1x1sf_top_master_ctrl(state
, 1);
297 if ((MXL111SF_GPIO_MOD_DVBT
!= adap_state
->gpio_mode
) &&
298 (state
->chip_rev
> MXL111SF_V6
)) {
299 mxl111sf_config_pin_mux_modes(state
,
300 PIN_MUX_TS_SPI_IN_MODE_1
);
303 err
= mxl111sf_init_port_expander(state
);
304 if (!mxl_fail(err
)) {
305 state
->gpio_mode
= adap_state
->gpio_mode
;
306 err
= mxl111sf_gpio_mode_switch(state
, state
->gpio_mode
);
309 err
= fe
->ops
.init(fe
);
311 msleep(100); /* add short delay after enabling
312 * the demod before touching it */
315 return (adap_state
->fe_init
) ? adap_state
->fe_init(fe
) : 0;
320 static int mxl111sf_adap_fe_sleep(struct dvb_frontend
*fe
)
322 struct mxl111sf_state
*state
= fe_to_priv(fe
);
323 struct mxl111sf_adap_state
*adap_state
= &state
->adap_state
[fe
->id
];
326 /* exit if we didn't initialize the driver yet */
327 if (!state
->chip_id
) {
328 mxl_debug("driver not yet initialized, exit.");
332 pr_debug("%s()\n", __func__
);
334 err
= (adap_state
->fe_sleep
) ? adap_state
->fe_sleep(fe
) : 0;
336 mutex_unlock(&state
->fe_lock
);
344 static int mxl111sf_ep6_streaming_ctrl(struct dvb_frontend
*fe
, int onoff
)
346 struct mxl111sf_state
*state
= fe_to_priv(fe
);
347 struct mxl111sf_adap_state
*adap_state
= &state
->adap_state
[fe
->id
];
350 pr_debug("%s(%d)\n", __func__
, onoff
);
353 ret
= mxl111sf_enable_usb_output(state
);
355 ret
= mxl111sf_config_mpeg_in(state
, 1, 1,
356 adap_state
->ep6_clockphase
,
361 ret
= mxl111sf_disable_656_port(state
);
369 static int mxl111sf_ep5_streaming_ctrl(struct dvb_frontend
*fe
, int onoff
)
371 struct mxl111sf_state
*state
= fe_to_priv(fe
);
374 pr_debug("%s(%d)\n", __func__
, onoff
);
377 ret
= mxl111sf_enable_usb_output(state
);
380 ret
= mxl111sf_init_i2s_port(state
, 200);
382 ret
= mxl111sf_config_i2s(state
, 0, 15);
385 ret
= mxl111sf_disable_i2s_port(state
);
388 if (state
->chip_rev
> MXL111SF_V6
)
389 ret
= mxl111sf_config_spi(state
, onoff
);
395 static int mxl111sf_ep4_streaming_ctrl(struct dvb_frontend
*fe
, int onoff
)
397 struct mxl111sf_state
*state
= fe_to_priv(fe
);
400 pr_debug("%s(%d)\n", __func__
, onoff
);
403 ret
= mxl111sf_enable_usb_output(state
);
410 /* ------------------------------------------------------------------------ */
412 static struct lgdt3305_config hauppauge_lgdt3305_config
= {
413 .i2c_addr
= 0xb2 >> 1,
414 .mpeg_mode
= LGDT3305_MPEG_SERIAL
,
415 .tpclk_edge
= LGDT3305_TPCLK_RISING_EDGE
,
416 .tpvalid_polarity
= LGDT3305_TP_VALID_HIGH
,
418 .spectral_inversion
= 0,
423 static int mxl111sf_lgdt3305_frontend_attach(struct dvb_usb_adapter
*adap
, u8 fe_id
)
425 struct dvb_usb_device
*d
= adap_to_d(adap
);
426 struct mxl111sf_state
*state
= d_to_priv(d
);
427 struct mxl111sf_adap_state
*adap_state
= &state
->adap_state
[fe_id
];
430 pr_debug("%s()\n", __func__
);
432 /* save a pointer to the dvb_usb_device in device state */
434 adap_state
->alt_mode
= (dvb_usb_mxl111sf_isoc
) ? 2 : 1;
435 state
->alt_mode
= adap_state
->alt_mode
;
437 if (usb_set_interface(d
->udev
, 0, state
->alt_mode
) < 0)
438 pr_err("set interface failed");
440 state
->gpio_mode
= MXL111SF_GPIO_MOD_ATSC
;
441 adap_state
->gpio_mode
= state
->gpio_mode
;
442 adap_state
->device_mode
= MXL_TUNER_MODE
;
443 adap_state
->ep6_clockphase
= 1;
445 ret
= mxl1x1sf_soft_reset(state
);
448 ret
= mxl111sf_init_tuner_demod(state
);
452 ret
= mxl1x1sf_set_device_mode(state
, adap_state
->device_mode
);
456 ret
= mxl111sf_enable_usb_output(state
);
459 ret
= mxl1x1sf_top_master_ctrl(state
, 1);
463 ret
= mxl111sf_init_port_expander(state
);
466 ret
= mxl111sf_gpio_mode_switch(state
, state
->gpio_mode
);
470 adap
->fe
[fe_id
] = dvb_attach(lgdt3305_attach
,
471 &hauppauge_lgdt3305_config
,
473 if (adap
->fe
[fe_id
]) {
474 state
->num_frontends
++;
475 adap_state
->fe_init
= adap
->fe
[fe_id
]->ops
.init
;
476 adap
->fe
[fe_id
]->ops
.init
= mxl111sf_adap_fe_init
;
477 adap_state
->fe_sleep
= adap
->fe
[fe_id
]->ops
.sleep
;
478 adap
->fe
[fe_id
]->ops
.sleep
= mxl111sf_adap_fe_sleep
;
486 static struct lg2160_config hauppauge_lg2160_config
= {
488 .i2c_addr
= 0x1c >> 1,
490 .spectral_inversion
= 0,
494 static int mxl111sf_lg2160_frontend_attach(struct dvb_usb_adapter
*adap
, u8 fe_id
)
496 struct dvb_usb_device
*d
= adap_to_d(adap
);
497 struct mxl111sf_state
*state
= d_to_priv(d
);
498 struct mxl111sf_adap_state
*adap_state
= &state
->adap_state
[fe_id
];
501 pr_debug("%s()\n", __func__
);
503 /* save a pointer to the dvb_usb_device in device state */
505 adap_state
->alt_mode
= (dvb_usb_mxl111sf_isoc
) ? 2 : 1;
506 state
->alt_mode
= adap_state
->alt_mode
;
508 if (usb_set_interface(d
->udev
, 0, state
->alt_mode
) < 0)
509 pr_err("set interface failed");
511 state
->gpio_mode
= MXL111SF_GPIO_MOD_MH
;
512 adap_state
->gpio_mode
= state
->gpio_mode
;
513 adap_state
->device_mode
= MXL_TUNER_MODE
;
514 adap_state
->ep6_clockphase
= 1;
516 ret
= mxl1x1sf_soft_reset(state
);
519 ret
= mxl111sf_init_tuner_demod(state
);
523 ret
= mxl1x1sf_set_device_mode(state
, adap_state
->device_mode
);
527 ret
= mxl111sf_enable_usb_output(state
);
530 ret
= mxl1x1sf_top_master_ctrl(state
, 1);
534 ret
= mxl111sf_init_port_expander(state
);
537 ret
= mxl111sf_gpio_mode_switch(state
, state
->gpio_mode
);
541 ret
= get_chip_info(state
);
545 adap
->fe
[fe_id
] = dvb_attach(lg2160_attach
,
546 &hauppauge_lg2160_config
,
548 if (adap
->fe
[fe_id
]) {
549 state
->num_frontends
++;
550 adap_state
->fe_init
= adap
->fe
[fe_id
]->ops
.init
;
551 adap
->fe
[fe_id
]->ops
.init
= mxl111sf_adap_fe_init
;
552 adap_state
->fe_sleep
= adap
->fe
[fe_id
]->ops
.sleep
;
553 adap
->fe
[fe_id
]->ops
.sleep
= mxl111sf_adap_fe_sleep
;
561 static struct lg2160_config hauppauge_lg2161_1019_config
= {
562 .lg_chip
= LG2161_1019
,
563 .i2c_addr
= 0x1c >> 1,
565 .spectral_inversion
= 0,
567 .output_if
= 2, /* LG2161_OIF_SPI_MAS */
570 static struct lg2160_config hauppauge_lg2161_1040_config
= {
571 .lg_chip
= LG2161_1040
,
572 .i2c_addr
= 0x1c >> 1,
574 .spectral_inversion
= 0,
576 .output_if
= 4, /* LG2161_OIF_SPI_MAS */
579 static int mxl111sf_lg2161_frontend_attach(struct dvb_usb_adapter
*adap
, u8 fe_id
)
581 struct dvb_usb_device
*d
= adap_to_d(adap
);
582 struct mxl111sf_state
*state
= d_to_priv(d
);
583 struct mxl111sf_adap_state
*adap_state
= &state
->adap_state
[fe_id
];
586 pr_debug("%s()\n", __func__
);
588 /* save a pointer to the dvb_usb_device in device state */
590 adap_state
->alt_mode
= (dvb_usb_mxl111sf_isoc
) ? 2 : 1;
591 state
->alt_mode
= adap_state
->alt_mode
;
593 if (usb_set_interface(d
->udev
, 0, state
->alt_mode
) < 0)
594 pr_err("set interface failed");
596 state
->gpio_mode
= MXL111SF_GPIO_MOD_MH
;
597 adap_state
->gpio_mode
= state
->gpio_mode
;
598 adap_state
->device_mode
= MXL_TUNER_MODE
;
599 adap_state
->ep6_clockphase
= 1;
601 ret
= mxl1x1sf_soft_reset(state
);
604 ret
= mxl111sf_init_tuner_demod(state
);
608 ret
= mxl1x1sf_set_device_mode(state
, adap_state
->device_mode
);
612 ret
= mxl111sf_enable_usb_output(state
);
615 ret
= mxl1x1sf_top_master_ctrl(state
, 1);
619 ret
= mxl111sf_init_port_expander(state
);
622 ret
= mxl111sf_gpio_mode_switch(state
, state
->gpio_mode
);
626 ret
= get_chip_info(state
);
630 adap
->fe
[fe_id
] = dvb_attach(lg2160_attach
,
631 (MXL111SF_V8_200
== state
->chip_rev
) ?
632 &hauppauge_lg2161_1040_config
:
633 &hauppauge_lg2161_1019_config
,
635 if (adap
->fe
[fe_id
]) {
636 state
->num_frontends
++;
637 adap_state
->fe_init
= adap
->fe
[fe_id
]->ops
.init
;
638 adap
->fe
[fe_id
]->ops
.init
= mxl111sf_adap_fe_init
;
639 adap_state
->fe_sleep
= adap
->fe
[fe_id
]->ops
.sleep
;
640 adap
->fe
[fe_id
]->ops
.sleep
= mxl111sf_adap_fe_sleep
;
648 static struct lg2160_config hauppauge_lg2161_1019_ep6_config
= {
649 .lg_chip
= LG2161_1019
,
650 .i2c_addr
= 0x1c >> 1,
652 .spectral_inversion
= 0,
654 .output_if
= 1, /* LG2161_OIF_SERIAL_TS */
657 static struct lg2160_config hauppauge_lg2161_1040_ep6_config
= {
658 .lg_chip
= LG2161_1040
,
659 .i2c_addr
= 0x1c >> 1,
661 .spectral_inversion
= 0,
663 .output_if
= 7, /* LG2161_OIF_SERIAL_TS */
666 static int mxl111sf_lg2161_ep6_frontend_attach(struct dvb_usb_adapter
*adap
, u8 fe_id
)
668 struct dvb_usb_device
*d
= adap_to_d(adap
);
669 struct mxl111sf_state
*state
= d_to_priv(d
);
670 struct mxl111sf_adap_state
*adap_state
= &state
->adap_state
[fe_id
];
673 pr_debug("%s()\n", __func__
);
675 /* save a pointer to the dvb_usb_device in device state */
677 adap_state
->alt_mode
= (dvb_usb_mxl111sf_isoc
) ? 2 : 1;
678 state
->alt_mode
= adap_state
->alt_mode
;
680 if (usb_set_interface(d
->udev
, 0, state
->alt_mode
) < 0)
681 pr_err("set interface failed");
683 state
->gpio_mode
= MXL111SF_GPIO_MOD_MH
;
684 adap_state
->gpio_mode
= state
->gpio_mode
;
685 adap_state
->device_mode
= MXL_TUNER_MODE
;
686 adap_state
->ep6_clockphase
= 0;
688 ret
= mxl1x1sf_soft_reset(state
);
691 ret
= mxl111sf_init_tuner_demod(state
);
695 ret
= mxl1x1sf_set_device_mode(state
, adap_state
->device_mode
);
699 ret
= mxl111sf_enable_usb_output(state
);
702 ret
= mxl1x1sf_top_master_ctrl(state
, 1);
706 ret
= mxl111sf_init_port_expander(state
);
709 ret
= mxl111sf_gpio_mode_switch(state
, state
->gpio_mode
);
713 ret
= get_chip_info(state
);
717 adap
->fe
[fe_id
] = dvb_attach(lg2160_attach
,
718 (MXL111SF_V8_200
== state
->chip_rev
) ?
719 &hauppauge_lg2161_1040_ep6_config
:
720 &hauppauge_lg2161_1019_ep6_config
,
722 if (adap
->fe
[fe_id
]) {
723 state
->num_frontends
++;
724 adap_state
->fe_init
= adap
->fe
[fe_id
]->ops
.init
;
725 adap
->fe
[fe_id
]->ops
.init
= mxl111sf_adap_fe_init
;
726 adap_state
->fe_sleep
= adap
->fe
[fe_id
]->ops
.sleep
;
727 adap
->fe
[fe_id
]->ops
.sleep
= mxl111sf_adap_fe_sleep
;
735 static const struct mxl111sf_demod_config mxl_demod_config
= {
736 .read_reg
= mxl111sf_read_reg
,
737 .write_reg
= mxl111sf_write_reg
,
738 .program_regs
= mxl111sf_ctrl_program_regs
,
741 static int mxl111sf_attach_demod(struct dvb_usb_adapter
*adap
, u8 fe_id
)
743 struct dvb_usb_device
*d
= adap_to_d(adap
);
744 struct mxl111sf_state
*state
= d_to_priv(d
);
745 struct mxl111sf_adap_state
*adap_state
= &state
->adap_state
[fe_id
];
748 pr_debug("%s()\n", __func__
);
750 /* save a pointer to the dvb_usb_device in device state */
752 adap_state
->alt_mode
= (dvb_usb_mxl111sf_isoc
) ? 1 : 2;
753 state
->alt_mode
= adap_state
->alt_mode
;
755 if (usb_set_interface(d
->udev
, 0, state
->alt_mode
) < 0)
756 pr_err("set interface failed");
758 state
->gpio_mode
= MXL111SF_GPIO_MOD_DVBT
;
759 adap_state
->gpio_mode
= state
->gpio_mode
;
760 adap_state
->device_mode
= MXL_SOC_MODE
;
761 adap_state
->ep6_clockphase
= 1;
763 ret
= mxl1x1sf_soft_reset(state
);
766 ret
= mxl111sf_init_tuner_demod(state
);
770 ret
= mxl1x1sf_set_device_mode(state
, adap_state
->device_mode
);
774 ret
= mxl111sf_enable_usb_output(state
);
777 ret
= mxl1x1sf_top_master_ctrl(state
, 1);
781 /* dont care if this fails */
782 mxl111sf_init_port_expander(state
);
784 adap
->fe
[fe_id
] = dvb_attach(mxl111sf_demod_attach
, state
,
786 if (adap
->fe
[fe_id
]) {
787 state
->num_frontends
++;
788 adap_state
->fe_init
= adap
->fe
[fe_id
]->ops
.init
;
789 adap
->fe
[fe_id
]->ops
.init
= mxl111sf_adap_fe_init
;
790 adap_state
->fe_sleep
= adap
->fe
[fe_id
]->ops
.sleep
;
791 adap
->fe
[fe_id
]->ops
.sleep
= mxl111sf_adap_fe_sleep
;
799 static inline int mxl111sf_set_ant_path(struct mxl111sf_state
*state
,
802 return mxl111sf_idac_config(state
, 1, 1,
803 (antpath
== ANT_PATH_INTERNAL
) ?
807 #define DbgAntHunt(x, pwr0, pwr1, pwr2, pwr3) \
808 pr_err("%s(%d) FINAL input set to %s rxPwr:%d|%d|%d|%d\n", \
809 __func__, __LINE__, \
810 (ANT_PATH_EXTERNAL == x) ? "EXTERNAL" : "INTERNAL", \
811 pwr0, pwr1, pwr2, pwr3)
813 #define ANT_HUNT_SLEEP 90
814 #define ANT_EXT_TWEAK 0
816 static int mxl111sf_ant_hunt(struct dvb_frontend
*fe
)
818 struct mxl111sf_state
*state
= fe_to_priv(fe
);
819 int antctrl
= dvb_usb_mxl111sf_rfswitch
;
821 u16 rxPwrA
, rxPwr0
, rxPwr1
, rxPwr2
;
823 /* FIXME: must force EXTERNAL for QAM - done elsewhere */
824 mxl111sf_set_ant_path(state
, antctrl
== ANT_PATH_AUTO
?
825 ANT_PATH_EXTERNAL
: antctrl
);
827 if (antctrl
== ANT_PATH_AUTO
) {
829 msleep(ANT_HUNT_SLEEP
);
831 fe
->ops
.tuner_ops
.get_rf_strength(fe
, &rxPwrA
);
833 mxl111sf_set_ant_path(state
, ANT_PATH_EXTERNAL
);
834 msleep(ANT_HUNT_SLEEP
);
835 fe
->ops
.tuner_ops
.get_rf_strength(fe
, &rxPwr0
);
837 mxl111sf_set_ant_path(state
, ANT_PATH_EXTERNAL
);
838 msleep(ANT_HUNT_SLEEP
);
839 fe
->ops
.tuner_ops
.get_rf_strength(fe
, &rxPwr1
);
841 mxl111sf_set_ant_path(state
, ANT_PATH_INTERNAL
);
842 msleep(ANT_HUNT_SLEEP
);
843 fe
->ops
.tuner_ops
.get_rf_strength(fe
, &rxPwr2
);
845 if (rxPwr1
+ANT_EXT_TWEAK
>= rxPwr2
) {
846 /* return with EXTERNAL enabled */
847 mxl111sf_set_ant_path(state
, ANT_PATH_EXTERNAL
);
848 DbgAntHunt(ANT_PATH_EXTERNAL
, rxPwrA
,
849 rxPwr0
, rxPwr1
, rxPwr2
);
851 /* return with INTERNAL enabled */
852 DbgAntHunt(ANT_PATH_INTERNAL
, rxPwrA
,
853 rxPwr0
, rxPwr1
, rxPwr2
);
859 static const struct mxl111sf_tuner_config mxl_tuner_config
= {
860 .if_freq
= MXL_IF_6_0
, /* applies to external IF output, only */
861 .invert_spectrum
= 0,
862 .read_reg
= mxl111sf_read_reg
,
863 .write_reg
= mxl111sf_write_reg
,
864 .program_regs
= mxl111sf_ctrl_program_regs
,
865 .top_master_ctrl
= mxl1x1sf_top_master_ctrl
,
866 .ant_hunt
= mxl111sf_ant_hunt
,
869 static int mxl111sf_attach_tuner(struct dvb_usb_adapter
*adap
)
871 struct mxl111sf_state
*state
= adap_to_priv(adap
);
872 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
873 struct media_device
*mdev
= dvb_get_media_controller(&adap
->dvb_adap
);
878 pr_debug("%s()\n", __func__
);
880 for (i
= 0; i
< state
->num_frontends
; i
++) {
881 if (dvb_attach(mxl111sf_tuner_attach
, adap
->fe
[i
], state
,
882 &mxl_tuner_config
) == NULL
)
884 adap
->fe
[i
]->ops
.read_signal_strength
= adap
->fe
[i
]->ops
.tuner_ops
.get_rf_strength
;
887 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
888 state
->tuner
.function
= MEDIA_ENT_F_TUNER
;
889 state
->tuner
.name
= "mxl111sf tuner";
890 state
->tuner_pads
[TUNER_PAD_RF_INPUT
].flags
= MEDIA_PAD_FL_SINK
;
891 state
->tuner_pads
[TUNER_PAD_OUTPUT
].flags
= MEDIA_PAD_FL_SOURCE
;
893 ret
= media_entity_pads_init(&state
->tuner
,
894 TUNER_NUM_PADS
, state
->tuner_pads
);
898 ret
= media_device_register_entity(mdev
, &state
->tuner
);
905 static u32
mxl111sf_i2c_func(struct i2c_adapter
*adapter
)
910 static struct i2c_algorithm mxl111sf_i2c_algo
= {
911 .master_xfer
= mxl111sf_i2c_xfer
,
912 .functionality
= mxl111sf_i2c_func
,
913 #ifdef NEED_ALGO_CONTROL
914 .algo_control
= dummy_algo_control
,
918 static int mxl111sf_init(struct dvb_usb_device
*d
)
920 struct mxl111sf_state
*state
= d_to_priv(d
);
922 static u8 eeprom
[256];
925 ret
= get_chip_info(state
);
927 pr_err("failed to get chip info during probe");
929 mutex_init(&state
->fe_lock
);
931 if (state
->chip_rev
> MXL111SF_V6
)
932 mxl111sf_config_pin_mux_modes(state
, PIN_MUX_TS_SPI_IN_MODE_1
);
934 c
.adapter
= &d
->i2c_adap
;
937 ret
= tveeprom_read(&c
, eeprom
, sizeof(eeprom
));
940 tveeprom_hauppauge_analog(&c
, &state
->tv
, (0x84 == eeprom
[0xa0]) ?
941 eeprom
+ 0xa0 : eeprom
+ 0x80);
943 switch (state
->tv
.model
) {
949 printk(KERN_WARNING
"%s: warning: "
950 "unknown hauppauge model #%d\n",
951 __func__
, state
->tv
.model
);
957 static int mxl111sf_frontend_attach_dvbt(struct dvb_usb_adapter
*adap
)
959 return mxl111sf_attach_demod(adap
, 0);
962 static int mxl111sf_frontend_attach_atsc(struct dvb_usb_adapter
*adap
)
964 return mxl111sf_lgdt3305_frontend_attach(adap
, 0);
967 static int mxl111sf_frontend_attach_mh(struct dvb_usb_adapter
*adap
)
969 return mxl111sf_lg2160_frontend_attach(adap
, 0);
972 static int mxl111sf_frontend_attach_atsc_mh(struct dvb_usb_adapter
*adap
)
975 pr_debug("%s\n", __func__
);
977 ret
= mxl111sf_lgdt3305_frontend_attach(adap
, 0);
981 ret
= mxl111sf_attach_demod(adap
, 1);
985 ret
= mxl111sf_lg2160_frontend_attach(adap
, 2);
992 static int mxl111sf_frontend_attach_mercury(struct dvb_usb_adapter
*adap
)
995 pr_debug("%s\n", __func__
);
997 ret
= mxl111sf_lgdt3305_frontend_attach(adap
, 0);
1001 ret
= mxl111sf_attach_demod(adap
, 1);
1005 ret
= mxl111sf_lg2161_ep6_frontend_attach(adap
, 2);
1012 static int mxl111sf_frontend_attach_mercury_mh(struct dvb_usb_adapter
*adap
)
1015 pr_debug("%s\n", __func__
);
1017 ret
= mxl111sf_attach_demod(adap
, 0);
1021 if (dvb_usb_mxl111sf_spi
)
1022 ret
= mxl111sf_lg2161_frontend_attach(adap
, 1);
1024 ret
= mxl111sf_lg2161_ep6_frontend_attach(adap
, 1);
1029 static void mxl111sf_stream_config_bulk(struct usb_data_stream_properties
*stream
, u8 endpoint
)
1031 pr_debug("%s: endpoint=%d size=8192\n", __func__
, endpoint
);
1032 stream
->type
= USB_BULK
;
1034 stream
->endpoint
= endpoint
;
1035 stream
->u
.bulk
.buffersize
= 8192;
1038 static void mxl111sf_stream_config_isoc(struct usb_data_stream_properties
*stream
,
1039 u8 endpoint
, int framesperurb
, int framesize
)
1041 pr_debug("%s: endpoint=%d size=%d\n", __func__
, endpoint
,
1042 framesperurb
* framesize
);
1043 stream
->type
= USB_ISOC
;
1045 stream
->endpoint
= endpoint
;
1046 stream
->u
.isoc
.framesperurb
= framesperurb
;
1047 stream
->u
.isoc
.framesize
= framesize
;
1048 stream
->u
.isoc
.interval
= 1;
1051 /* DVB USB Driver stuff */
1054 * bulk EP4/BULK/5/8192
1055 * isoc EP4/ISOC/5/96/564
1057 static int mxl111sf_get_stream_config_dvbt(struct dvb_frontend
*fe
,
1058 u8
*ts_type
, struct usb_data_stream_properties
*stream
)
1060 pr_debug("%s: fe=%d\n", __func__
, fe
->id
);
1062 *ts_type
= DVB_USB_FE_TS_TYPE_188
;
1063 if (dvb_usb_mxl111sf_isoc
)
1064 mxl111sf_stream_config_isoc(stream
, 4, 96, 564);
1066 mxl111sf_stream_config_bulk(stream
, 4);
1070 static struct dvb_usb_device_properties mxl111sf_props_dvbt
= {
1071 .driver_name
= KBUILD_MODNAME
,
1072 .owner
= THIS_MODULE
,
1073 .adapter_nr
= adapter_nr
,
1074 .size_of_priv
= sizeof(struct mxl111sf_state
),
1076 .generic_bulk_ctrl_endpoint
= 0x02,
1077 .generic_bulk_ctrl_endpoint_response
= 0x81,
1079 .i2c_algo
= &mxl111sf_i2c_algo
,
1080 .frontend_attach
= mxl111sf_frontend_attach_dvbt
,
1081 .tuner_attach
= mxl111sf_attach_tuner
,
1082 .init
= mxl111sf_init
,
1083 .streaming_ctrl
= mxl111sf_ep4_streaming_ctrl
,
1084 .get_stream_config
= mxl111sf_get_stream_config_dvbt
,
1089 .stream
= DVB_USB_STREAM_ISOC(6, 5, 24, 3072, 1),
1095 * bulk EP6/BULK/5/8192
1096 * isoc EP6/ISOC/5/24/3072
1098 static int mxl111sf_get_stream_config_atsc(struct dvb_frontend
*fe
,
1099 u8
*ts_type
, struct usb_data_stream_properties
*stream
)
1101 pr_debug("%s: fe=%d\n", __func__
, fe
->id
);
1103 *ts_type
= DVB_USB_FE_TS_TYPE_188
;
1104 if (dvb_usb_mxl111sf_isoc
)
1105 mxl111sf_stream_config_isoc(stream
, 6, 24, 3072);
1107 mxl111sf_stream_config_bulk(stream
, 6);
1111 static struct dvb_usb_device_properties mxl111sf_props_atsc
= {
1112 .driver_name
= KBUILD_MODNAME
,
1113 .owner
= THIS_MODULE
,
1114 .adapter_nr
= adapter_nr
,
1115 .size_of_priv
= sizeof(struct mxl111sf_state
),
1117 .generic_bulk_ctrl_endpoint
= 0x02,
1118 .generic_bulk_ctrl_endpoint_response
= 0x81,
1120 .i2c_algo
= &mxl111sf_i2c_algo
,
1121 .frontend_attach
= mxl111sf_frontend_attach_atsc
,
1122 .tuner_attach
= mxl111sf_attach_tuner
,
1123 .init
= mxl111sf_init
,
1124 .streaming_ctrl
= mxl111sf_ep6_streaming_ctrl
,
1125 .get_stream_config
= mxl111sf_get_stream_config_atsc
,
1130 .stream
= DVB_USB_STREAM_ISOC(6, 5, 24, 3072, 1),
1136 * bulk EP5/BULK/5/8192/RAW
1137 * isoc EP5/ISOC/5/96/200/RAW
1139 static int mxl111sf_get_stream_config_mh(struct dvb_frontend
*fe
,
1140 u8
*ts_type
, struct usb_data_stream_properties
*stream
)
1142 pr_debug("%s: fe=%d\n", __func__
, fe
->id
);
1144 *ts_type
= DVB_USB_FE_TS_TYPE_RAW
;
1145 if (dvb_usb_mxl111sf_isoc
)
1146 mxl111sf_stream_config_isoc(stream
, 5, 96, 200);
1148 mxl111sf_stream_config_bulk(stream
, 5);
1152 static struct dvb_usb_device_properties mxl111sf_props_mh
= {
1153 .driver_name
= KBUILD_MODNAME
,
1154 .owner
= THIS_MODULE
,
1155 .adapter_nr
= adapter_nr
,
1156 .size_of_priv
= sizeof(struct mxl111sf_state
),
1158 .generic_bulk_ctrl_endpoint
= 0x02,
1159 .generic_bulk_ctrl_endpoint_response
= 0x81,
1161 .i2c_algo
= &mxl111sf_i2c_algo
,
1162 .frontend_attach
= mxl111sf_frontend_attach_mh
,
1163 .tuner_attach
= mxl111sf_attach_tuner
,
1164 .init
= mxl111sf_init
,
1165 .streaming_ctrl
= mxl111sf_ep5_streaming_ctrl
,
1166 .get_stream_config
= mxl111sf_get_stream_config_mh
,
1171 .stream
= DVB_USB_STREAM_ISOC(6, 5, 24, 3072, 1),
1176 /* atsc mh lgdt3305 mxl111sf lg2160
1177 * bulk EP6/BULK/5/8192 EP4/BULK/5/8192 EP5/BULK/5/8192/RAW
1178 * isoc EP6/ISOC/5/24/3072 EP4/ISOC/5/96/564 EP5/ISOC/5/96/200/RAW
1180 static int mxl111sf_get_stream_config_atsc_mh(struct dvb_frontend
*fe
,
1181 u8
*ts_type
, struct usb_data_stream_properties
*stream
)
1183 pr_debug("%s: fe=%d\n", __func__
, fe
->id
);
1186 *ts_type
= DVB_USB_FE_TS_TYPE_188
;
1187 if (dvb_usb_mxl111sf_isoc
)
1188 mxl111sf_stream_config_isoc(stream
, 6, 24, 3072);
1190 mxl111sf_stream_config_bulk(stream
, 6);
1191 } else if (fe
->id
== 1) {
1192 *ts_type
= DVB_USB_FE_TS_TYPE_188
;
1193 if (dvb_usb_mxl111sf_isoc
)
1194 mxl111sf_stream_config_isoc(stream
, 4, 96, 564);
1196 mxl111sf_stream_config_bulk(stream
, 4);
1197 } else if (fe
->id
== 2) {
1198 *ts_type
= DVB_USB_FE_TS_TYPE_RAW
;
1199 if (dvb_usb_mxl111sf_isoc
)
1200 mxl111sf_stream_config_isoc(stream
, 5, 96, 200);
1202 mxl111sf_stream_config_bulk(stream
, 5);
1207 static int mxl111sf_streaming_ctrl_atsc_mh(struct dvb_frontend
*fe
, int onoff
)
1209 pr_debug("%s: fe=%d onoff=%d\n", __func__
, fe
->id
, onoff
);
1212 return mxl111sf_ep6_streaming_ctrl(fe
, onoff
);
1213 else if (fe
->id
== 1)
1214 return mxl111sf_ep4_streaming_ctrl(fe
, onoff
);
1215 else if (fe
->id
== 2)
1216 return mxl111sf_ep5_streaming_ctrl(fe
, onoff
);
1220 static struct dvb_usb_device_properties mxl111sf_props_atsc_mh
= {
1221 .driver_name
= KBUILD_MODNAME
,
1222 .owner
= THIS_MODULE
,
1223 .adapter_nr
= adapter_nr
,
1224 .size_of_priv
= sizeof(struct mxl111sf_state
),
1226 .generic_bulk_ctrl_endpoint
= 0x02,
1227 .generic_bulk_ctrl_endpoint_response
= 0x81,
1229 .i2c_algo
= &mxl111sf_i2c_algo
,
1230 .frontend_attach
= mxl111sf_frontend_attach_atsc_mh
,
1231 .tuner_attach
= mxl111sf_attach_tuner
,
1232 .init
= mxl111sf_init
,
1233 .streaming_ctrl
= mxl111sf_streaming_ctrl_atsc_mh
,
1234 .get_stream_config
= mxl111sf_get_stream_config_atsc_mh
,
1239 .stream
= DVB_USB_STREAM_ISOC(6, 5, 24, 3072, 1),
1244 /* mercury lgdt3305 mxl111sf lg2161
1245 * tp bulk EP6/BULK/5/8192 EP4/BULK/5/8192 EP6/BULK/5/8192/RAW
1246 * tp isoc EP6/ISOC/5/24/3072 EP4/ISOC/5/96/564 EP6/ISOC/5/24/3072/RAW
1247 * spi bulk EP6/BULK/5/8192 EP4/BULK/5/8192 EP5/BULK/5/8192/RAW
1248 * spi isoc EP6/ISOC/5/24/3072 EP4/ISOC/5/96/564 EP5/ISOC/5/96/200/RAW
1250 static int mxl111sf_get_stream_config_mercury(struct dvb_frontend
*fe
,
1251 u8
*ts_type
, struct usb_data_stream_properties
*stream
)
1253 pr_debug("%s: fe=%d\n", __func__
, fe
->id
);
1256 *ts_type
= DVB_USB_FE_TS_TYPE_188
;
1257 if (dvb_usb_mxl111sf_isoc
)
1258 mxl111sf_stream_config_isoc(stream
, 6, 24, 3072);
1260 mxl111sf_stream_config_bulk(stream
, 6);
1261 } else if (fe
->id
== 1) {
1262 *ts_type
= DVB_USB_FE_TS_TYPE_188
;
1263 if (dvb_usb_mxl111sf_isoc
)
1264 mxl111sf_stream_config_isoc(stream
, 4, 96, 564);
1266 mxl111sf_stream_config_bulk(stream
, 4);
1267 } else if (fe
->id
== 2 && dvb_usb_mxl111sf_spi
) {
1268 *ts_type
= DVB_USB_FE_TS_TYPE_RAW
;
1269 if (dvb_usb_mxl111sf_isoc
)
1270 mxl111sf_stream_config_isoc(stream
, 5, 96, 200);
1272 mxl111sf_stream_config_bulk(stream
, 5);
1273 } else if (fe
->id
== 2 && !dvb_usb_mxl111sf_spi
) {
1274 *ts_type
= DVB_USB_FE_TS_TYPE_RAW
;
1275 if (dvb_usb_mxl111sf_isoc
)
1276 mxl111sf_stream_config_isoc(stream
, 6, 24, 3072);
1278 mxl111sf_stream_config_bulk(stream
, 6);
1283 static int mxl111sf_streaming_ctrl_mercury(struct dvb_frontend
*fe
, int onoff
)
1285 pr_debug("%s: fe=%d onoff=%d\n", __func__
, fe
->id
, onoff
);
1288 return mxl111sf_ep6_streaming_ctrl(fe
, onoff
);
1289 else if (fe
->id
== 1)
1290 return mxl111sf_ep4_streaming_ctrl(fe
, onoff
);
1291 else if (fe
->id
== 2 && dvb_usb_mxl111sf_spi
)
1292 return mxl111sf_ep5_streaming_ctrl(fe
, onoff
);
1293 else if (fe
->id
== 2 && !dvb_usb_mxl111sf_spi
)
1294 return mxl111sf_ep6_streaming_ctrl(fe
, onoff
);
1298 static struct dvb_usb_device_properties mxl111sf_props_mercury
= {
1299 .driver_name
= KBUILD_MODNAME
,
1300 .owner
= THIS_MODULE
,
1301 .adapter_nr
= adapter_nr
,
1302 .size_of_priv
= sizeof(struct mxl111sf_state
),
1304 .generic_bulk_ctrl_endpoint
= 0x02,
1305 .generic_bulk_ctrl_endpoint_response
= 0x81,
1307 .i2c_algo
= &mxl111sf_i2c_algo
,
1308 .frontend_attach
= mxl111sf_frontend_attach_mercury
,
1309 .tuner_attach
= mxl111sf_attach_tuner
,
1310 .init
= mxl111sf_init
,
1311 .streaming_ctrl
= mxl111sf_streaming_ctrl_mercury
,
1312 .get_stream_config
= mxl111sf_get_stream_config_mercury
,
1317 .stream
= DVB_USB_STREAM_ISOC(6, 5, 24, 3072, 1),
1322 /* mercury mh mxl111sf lg2161
1323 * tp bulk EP4/BULK/5/8192 EP6/BULK/5/8192/RAW
1324 * tp isoc EP4/ISOC/5/96/564 EP6/ISOC/5/24/3072/RAW
1325 * spi bulk EP4/BULK/5/8192 EP5/BULK/5/8192/RAW
1326 * spi isoc EP4/ISOC/5/96/564 EP5/ISOC/5/96/200/RAW
1328 static int mxl111sf_get_stream_config_mercury_mh(struct dvb_frontend
*fe
,
1329 u8
*ts_type
, struct usb_data_stream_properties
*stream
)
1331 pr_debug("%s: fe=%d\n", __func__
, fe
->id
);
1334 *ts_type
= DVB_USB_FE_TS_TYPE_188
;
1335 if (dvb_usb_mxl111sf_isoc
)
1336 mxl111sf_stream_config_isoc(stream
, 4, 96, 564);
1338 mxl111sf_stream_config_bulk(stream
, 4);
1339 } else if (fe
->id
== 1 && dvb_usb_mxl111sf_spi
) {
1340 *ts_type
= DVB_USB_FE_TS_TYPE_RAW
;
1341 if (dvb_usb_mxl111sf_isoc
)
1342 mxl111sf_stream_config_isoc(stream
, 5, 96, 200);
1344 mxl111sf_stream_config_bulk(stream
, 5);
1345 } else if (fe
->id
== 1 && !dvb_usb_mxl111sf_spi
) {
1346 *ts_type
= DVB_USB_FE_TS_TYPE_RAW
;
1347 if (dvb_usb_mxl111sf_isoc
)
1348 mxl111sf_stream_config_isoc(stream
, 6, 24, 3072);
1350 mxl111sf_stream_config_bulk(stream
, 6);
1355 static int mxl111sf_streaming_ctrl_mercury_mh(struct dvb_frontend
*fe
, int onoff
)
1357 pr_debug("%s: fe=%d onoff=%d\n", __func__
, fe
->id
, onoff
);
1360 return mxl111sf_ep4_streaming_ctrl(fe
, onoff
);
1361 else if (fe
->id
== 1 && dvb_usb_mxl111sf_spi
)
1362 return mxl111sf_ep5_streaming_ctrl(fe
, onoff
);
1363 else if (fe
->id
== 1 && !dvb_usb_mxl111sf_spi
)
1364 return mxl111sf_ep6_streaming_ctrl(fe
, onoff
);
1368 static struct dvb_usb_device_properties mxl111sf_props_mercury_mh
= {
1369 .driver_name
= KBUILD_MODNAME
,
1370 .owner
= THIS_MODULE
,
1371 .adapter_nr
= adapter_nr
,
1372 .size_of_priv
= sizeof(struct mxl111sf_state
),
1374 .generic_bulk_ctrl_endpoint
= 0x02,
1375 .generic_bulk_ctrl_endpoint_response
= 0x81,
1377 .i2c_algo
= &mxl111sf_i2c_algo
,
1378 .frontend_attach
= mxl111sf_frontend_attach_mercury_mh
,
1379 .tuner_attach
= mxl111sf_attach_tuner
,
1380 .init
= mxl111sf_init
,
1381 .streaming_ctrl
= mxl111sf_streaming_ctrl_mercury_mh
,
1382 .get_stream_config
= mxl111sf_get_stream_config_mercury_mh
,
1387 .stream
= DVB_USB_STREAM_ISOC(6, 5, 24, 3072, 1),
1392 static const struct usb_device_id mxl111sf_id_table
[] = {
1393 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc600, &mxl111sf_props_atsc_mh
, "Hauppauge 126xxx ATSC+", NULL
) },
1394 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc601, &mxl111sf_props_atsc
, "Hauppauge 126xxx ATSC", NULL
) },
1395 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc602, &mxl111sf_props_mh
, "HCW 126xxx", NULL
) },
1396 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc603, &mxl111sf_props_atsc_mh
, "Hauppauge 126xxx ATSC+", NULL
) },
1397 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc604, &mxl111sf_props_dvbt
, "Hauppauge 126xxx DVBT", NULL
) },
1398 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc609, &mxl111sf_props_atsc
, "Hauppauge 126xxx ATSC", NULL
) },
1399 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc60a, &mxl111sf_props_mh
, "HCW 126xxx", NULL
) },
1400 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc60b, &mxl111sf_props_atsc_mh
, "Hauppauge 126xxx ATSC+", NULL
) },
1401 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc60c, &mxl111sf_props_dvbt
, "Hauppauge 126xxx DVBT", NULL
) },
1402 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc653, &mxl111sf_props_atsc_mh
, "Hauppauge 126xxx ATSC+", NULL
) },
1403 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc65b, &mxl111sf_props_atsc_mh
, "Hauppauge 126xxx ATSC+", NULL
) },
1404 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb700, &mxl111sf_props_atsc_mh
, "Hauppauge 117xxx ATSC+", NULL
) },
1405 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb701, &mxl111sf_props_atsc
, "Hauppauge 126xxx ATSC", NULL
) },
1406 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb702, &mxl111sf_props_mh
, "HCW 117xxx", NULL
) },
1407 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb703, &mxl111sf_props_atsc_mh
, "Hauppauge 117xxx ATSC+", NULL
) },
1408 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb704, &mxl111sf_props_dvbt
, "Hauppauge 117xxx DVBT", NULL
) },
1409 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb753, &mxl111sf_props_atsc_mh
, "Hauppauge 117xxx ATSC+", NULL
) },
1410 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb763, &mxl111sf_props_atsc_mh
, "Hauppauge 117xxx ATSC+", NULL
) },
1411 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb764, &mxl111sf_props_dvbt
, "Hauppauge 117xxx DVBT", NULL
) },
1412 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xd853, &mxl111sf_props_mercury
, "Hauppauge Mercury", NULL
) },
1413 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xd854, &mxl111sf_props_dvbt
, "Hauppauge 138xxx DVBT", NULL
) },
1414 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xd863, &mxl111sf_props_mercury
, "Hauppauge Mercury", NULL
) },
1415 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xd864, &mxl111sf_props_dvbt
, "Hauppauge 138xxx DVBT", NULL
) },
1416 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xd8d3, &mxl111sf_props_mercury
, "Hauppauge Mercury", NULL
) },
1417 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xd8d4, &mxl111sf_props_dvbt
, "Hauppauge 138xxx DVBT", NULL
) },
1418 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xd8e3, &mxl111sf_props_mercury
, "Hauppauge Mercury", NULL
) },
1419 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xd8e4, &mxl111sf_props_dvbt
, "Hauppauge 138xxx DVBT", NULL
) },
1420 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xd8ff, &mxl111sf_props_mercury
, "Hauppauge Mercury", NULL
) },
1421 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc612, &mxl111sf_props_mercury_mh
, "Hauppauge 126xxx", NULL
) },
1422 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc613, &mxl111sf_props_mercury
, "Hauppauge WinTV-Aero-M", NULL
) },
1423 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc61a, &mxl111sf_props_mercury_mh
, "Hauppauge 126xxx", NULL
) },
1424 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xc61b, &mxl111sf_props_mercury
, "Hauppauge WinTV-Aero-M", NULL
) },
1425 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb757, &mxl111sf_props_atsc_mh
, "Hauppauge 117xxx ATSC+", NULL
) },
1426 { DVB_USB_DEVICE(USB_VID_HAUPPAUGE
, 0xb767, &mxl111sf_props_atsc_mh
, "Hauppauge 117xxx ATSC+", NULL
) },
1429 MODULE_DEVICE_TABLE(usb
, mxl111sf_id_table
);
1431 static struct usb_driver mxl111sf_usb_driver
= {
1432 .name
= KBUILD_MODNAME
,
1433 .id_table
= mxl111sf_id_table
,
1434 .probe
= dvb_usbv2_probe
,
1435 .disconnect
= dvb_usbv2_disconnect
,
1436 .suspend
= dvb_usbv2_suspend
,
1437 .resume
= dvb_usbv2_resume
,
1442 module_usb_driver(mxl111sf_usb_driver
);
1444 MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
1445 MODULE_DESCRIPTION("Driver for MaxLinear MxL111SF");
1446 MODULE_VERSION("1.0");
1447 MODULE_LICENSE("GPL");