[media] dw2102: TeVii S482 support

TeVii S482 is a PCIe device with two tuners that actually contains two
USB devices. The devices are visible in the lsusb printout.

Bus 006 Device 002: ID 9022:d483 TeVii Technology Ltd.
Bus 007 Device 002: ID 9022:d484 TeVii Technology Ltd.

The device itself works exactly with the same settings as TechnoTrend
TT-connect S2-4600. Firmware for DS3103 demodulator is required:
http://palosaari.fi/linux/v4l-dvb/firmware/M88DS3103/

This patch should be applied on top of the TT S2-4600 patch:
https://patchwork.linuxtv.org/patch/28818/

Signed-off-by: Olli Salonen <olli.salonen@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Olli Salonen 2015-03-21 17:42:23 -03:00 committed by Mauro Carvalho Chehab
parent ccf509f845
commit 44767fc418
1 changed files with 13 additions and 1 deletions

View File

@ -1657,6 +1657,8 @@ enum dw2102_table_entry {
GOTVIEW_SAT_HD,
GENIATECH_T220,
TECHNOTREND_S2_4600,
TEVII_S482_1,
TEVII_S482_2,
};
static struct usb_device_id dw2102_table[] = {
@ -1682,6 +1684,8 @@ static struct usb_device_id dw2102_table[] = {
[GENIATECH_T220] = {USB_DEVICE(0x1f4d, 0xD220)},
[TECHNOTREND_S2_4600] = {USB_DEVICE(USB_VID_TECHNOTREND,
USB_PID_TECHNOTREND_CONNECT_S2_4600)},
[TEVII_S482_1] = {USB_DEVICE(0x9022, 0xd483)},
[TEVII_S482_2] = {USB_DEVICE(0x9022, 0xd484)},
{ }
};
@ -2199,12 +2203,20 @@ static struct dvb_usb_device_properties tt_s2_4600_properties = {
} },
}
},
.num_device_descs = 1,
.num_device_descs = 3,
.devices = {
{ "TechnoTrend TT-connect S2-4600",
{ &dw2102_table[TECHNOTREND_S2_4600], NULL },
{ NULL },
},
{ "TeVii S482 (tuner 1)",
{ &dw2102_table[TEVII_S482_1], NULL },
{ NULL },
},
{ "TeVii S482 (tuner 2)",
{ &dw2102_table[TEVII_S482_2], NULL },
{ NULL },
},
}
};