aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/video4linux/CARDLIST.tuner2
-rw-r--r--drivers/media/video/em28xx/em28xx-cards.c71
-rw-r--r--drivers/media/video/ivtv/ivtv-cards.c6
-rw-r--r--drivers/media/video/ivtv/ivtv-driver.c2
-rw-r--r--drivers/media/video/tuner-types.c6
-rw-r--r--include/media/tuner.h2
6 files changed, 80 insertions, 9 deletions
diff --git a/Documentation/video4linux/CARDLIST.tuner b/Documentation/video4linux/CARDLIST.tuner
index a88c02d23805..84c3ac7c33d9 100644
--- a/Documentation/video4linux/CARDLIST.tuner
+++ b/Documentation/video4linux/CARDLIST.tuner
@@ -69,7 +69,7 @@ tuner=67 - Philips TD1316 Hybrid Tuner
69tuner=68 - Philips TUV1236D ATSC/NTSC dual in 69tuner=68 - Philips TUV1236D ATSC/NTSC dual in
70tuner=69 - Tena TNF 5335 and similar models 70tuner=69 - Tena TNF 5335 and similar models
71tuner=70 - Samsung TCPN 2121P30A 71tuner=70 - Samsung TCPN 2121P30A
72tuner=71 - Xceive xc3028 72tuner=71 - Xceive xc2028/xc3028 tuner
73tuner=72 - Thomson FE6600 73tuner=72 - Thomson FE6600
74tuner=73 - Samsung TCPG 6121P30A 74tuner=73 - Samsung TCPG 6121P30A
75tuner=75 - Philips TEA5761 FM Radio 75tuner=75 - Philips TEA5761 FM Radio
diff --git a/drivers/media/video/em28xx/em28xx-cards.c b/drivers/media/video/em28xx/em28xx-cards.c
index 418ea8b7f85a..2d72de0e7564 100644
--- a/drivers/media/video/em28xx/em28xx-cards.c
+++ b/drivers/media/video/em28xx/em28xx-cards.c
@@ -156,6 +156,74 @@ struct em28xx_board em28xx_boards[] = {
156 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART), 156 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART),
157 }}, 157 }},
158 }, 158 },
159 [EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900] = {
160 .name = "Hauppauge WinTV HVR 900",
161 .vchannels = 3,
162 .norm = VIDEO_MODE_PAL,
163 .tda9887_conf = TDA9887_PRESENT,
164 .tuner_type = TUNER_XC2028,
165 .has_tuner = 1,
166 .decoder = EM28XX_TVP5150,
167 .input = {{
168 .type = EM28XX_VMUX_COMPOSITE1,
169 .vmux = TVP5150_COMPOSITE1,
170 .amux = 1,
171 },{
172 .type = EM28XX_VMUX_TELEVISION,
173 .vmux = TVP5150_COMPOSITE0,
174 .amux = 0,
175 },{
176 .type = EM28XX_VMUX_SVIDEO,
177 .vmux = TVP5150_SVIDEO,
178 .amux = 1,
179 }},
180 },
181 [EM2880_BOARD_TERRATEC_HYBRID_XS] = {
182 .name = "Terratec Hybrid XS",
183 .vchannels = 3,
184 .norm = VIDEO_MODE_PAL,
185 .tda9887_conf = TDA9887_PRESENT,
186 .has_tuner = 1,
187 .tuner_type = TUNER_XC2028,
188 .decoder = EM28XX_TVP5150,
189 .input = {{
190 .type = EM28XX_VMUX_TELEVISION,
191 .vmux = TVP5150_COMPOSITE0,
192 .amux = 0,
193 },{
194 .type = EM28XX_VMUX_COMPOSITE1,
195 .vmux = TVP5150_COMPOSITE1,
196 .amux = 1,
197 },{
198 .type = EM28XX_VMUX_SVIDEO,
199 .vmux = TVP5150_SVIDEO,
200 .amux = 1,
201 }},
202 },
203 /* maybe there's a reason behind it why Terratec sells the Hybrid XS as Prodigy XS with a
204 * different PID, let's keep it separated for now maybe we'll need it lateron */
205 [EM2880_BOARD_TERRATEC_PRODIGY_XS] = {
206 .name = "Terratec Prodigy XS",
207 .vchannels = 3,
208 .norm = VIDEO_MODE_PAL,
209 .tda9887_conf = TDA9887_PRESENT,
210 .has_tuner = 1,
211 .tuner_type = TUNER_XC2028,
212 .decoder = EM28XX_TVP5150,
213 .input = {{
214 .type = EM28XX_VMUX_TELEVISION,
215 .vmux = TVP5150_COMPOSITE0,
216 .amux = 0,
217 },{
218 .type = EM28XX_VMUX_COMPOSITE1,
219 .vmux = TVP5150_COMPOSITE1,
220 .amux = 1,
221 },{
222 .type = EM28XX_VMUX_SVIDEO,
223 .vmux = TVP5150_SVIDEO,
224 .amux = 1,
225 }},
226 },
159 [EM2820_BOARD_MSI_VOX_USB_2] = { 227 [EM2820_BOARD_MSI_VOX_USB_2] = {
160 .name = "MSI VOX USB 2.0", 228 .name = "MSI VOX USB 2.0",
161 .vchannels = 3, 229 .vchannels = 3,
@@ -274,6 +342,9 @@ struct usb_device_id em28xx_id_table [] = {
274 { USB_DEVICE(0x2304, 0x0208), .driver_info = EM2820_BOARD_PINNACLE_USB_2 }, 342 { USB_DEVICE(0x2304, 0x0208), .driver_info = EM2820_BOARD_PINNACLE_USB_2 },
275 { USB_DEVICE(0x2040, 0x4200), .driver_info = EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 }, 343 { USB_DEVICE(0x2040, 0x4200), .driver_info = EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 },
276 { USB_DEVICE(0x2304, 0x0207), .driver_info = EM2820_BOARD_PINNACLE_DVC_90 }, 344 { USB_DEVICE(0x2304, 0x0207), .driver_info = EM2820_BOARD_PINNACLE_DVC_90 },
345 { USB_DEVICE(0x2040, 0x6500), .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900 },
346 { USB_DEVICE(0x0ccd, 0x0042), .driver_info = EM2880_BOARD_TERRATEC_HYBRID_XS },
347 { USB_DEVICE(0x0ccd, 0x0047), .driver_info = EM2880_BOARD_TERRATEC_PRODIGY_XS },
277 { }, 348 { },
278}; 349};
279 350
diff --git a/drivers/media/video/ivtv/ivtv-cards.c b/drivers/media/video/ivtv/ivtv-cards.c
index b6a8be622d3c..aaa114b5c268 100644
--- a/drivers/media/video/ivtv/ivtv-cards.c
+++ b/drivers/media/video/ivtv/ivtv-cards.c
@@ -848,7 +848,7 @@ static const struct ivtv_card ivtv_card_pg600v2 = {
848 { IVTV_CARD_INPUT_LINE_IN1, CX25840_AUDIO_SERIAL }, 848 { IVTV_CARD_INPUT_LINE_IN1, CX25840_AUDIO_SERIAL },
849 }, 849 },
850 .tuners = { 850 .tuners = {
851 { .std = V4L2_STD_ALL, .tuner = TUNER_XCEIVE_XC3028 }, 851 { .std = V4L2_STD_ALL, .tuner = TUNER_XC2028 },
852 }, 852 },
853 .pci_list = ivtv_pci_pg600v2, 853 .pci_list = ivtv_pci_pg600v2,
854}; 854};
@@ -879,7 +879,7 @@ static const struct ivtv_card ivtv_card_club3d = {
879 { IVTV_CARD_INPUT_LINE_IN1, CX25840_AUDIO_SERIAL }, 879 { IVTV_CARD_INPUT_LINE_IN1, CX25840_AUDIO_SERIAL },
880 }, 880 },
881 .tuners = { 881 .tuners = {
882 { .std = V4L2_STD_ALL, .tuner = TUNER_XCEIVE_XC3028 }, 882 { .std = V4L2_STD_ALL, .tuner = TUNER_XC2028 },
883 }, 883 },
884 .pci_list = ivtv_pci_club3d, 884 .pci_list = ivtv_pci_club3d,
885}; 885};
@@ -910,7 +910,7 @@ static const struct ivtv_card ivtv_card_avertv_mce116 = {
910 }, 910 },
911 .gpio_init = { .direction = 0xe000, .initial_value = 0x4000 }, /* enable line-in */ 911 .gpio_init = { .direction = 0xe000, .initial_value = 0x4000 }, /* enable line-in */
912 .tuners = { 912 .tuners = {
913 { .std = V4L2_STD_ALL, .tuner = TUNER_XCEIVE_XC3028 }, 913 { .std = V4L2_STD_ALL, .tuner = TUNER_XC2028 },
914 }, 914 },
915 .pci_list = ivtv_pci_avertv_mce116, 915 .pci_list = ivtv_pci_avertv_mce116,
916}; 916};
diff --git a/drivers/media/video/ivtv/ivtv-driver.c b/drivers/media/video/ivtv/ivtv-driver.c
index 6d2dd8764f81..ec40453e46e4 100644
--- a/drivers/media/video/ivtv/ivtv-driver.c
+++ b/drivers/media/video/ivtv/ivtv-driver.c
@@ -829,7 +829,7 @@ static void ivtv_load_and_init_modules(struct ivtv *itv)
829 /* load modules */ 829 /* load modules */
830#ifndef CONFIG_VIDEO_TUNER 830#ifndef CONFIG_VIDEO_TUNER
831 if (hw & IVTV_HW_TUNER) { 831 if (hw & IVTV_HW_TUNER) {
832 if (itv->options.tuner == TUNER_XCEIVE_XC3028) { 832 if (itv->options.tuner == TUNER_XC2028) {
833 IVTV_INFO("Xceive tuner not yet supported, only composite and S-Video inputs will be available\n"); 833 IVTV_INFO("Xceive tuner not yet supported, only composite and S-Video inputs will be available\n");
834 itv->tunerid = 1; 834 itv->tunerid = 1;
835 } 835 }
diff --git a/drivers/media/video/tuner-types.c b/drivers/media/video/tuner-types.c
index c6a7934bd5a6..ac363f019227 100644
--- a/drivers/media/video/tuner-types.c
+++ b/drivers/media/video/tuner-types.c
@@ -1452,9 +1452,9 @@ struct tunertype tuners[] = {
1452 .params = tuner_samsung_tcpn_2121p30a_params, 1452 .params = tuner_samsung_tcpn_2121p30a_params,
1453 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_params), 1453 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_params),
1454 }, 1454 },
1455 [TUNER_XCEIVE_XC3028] = { /* Xceive 3028 */ 1455 [TUNER_XC2028] = { /* Xceive 2028 */
1456 .name = "Xceive xc3028", 1456 .name = "Xceive xc2028/xc3028 tuner",
1457 /* see xc3028.c for details */ 1457 /* see tuner-xc2028.c for details */
1458 }, 1458 },
1459 [TUNER_THOMSON_FE6600] = { /* Thomson PAL / DVB-T */ 1459 [TUNER_THOMSON_FE6600] = { /* Thomson PAL / DVB-T */
1460 .name = "Thomson FE6600", 1460 .name = "Thomson FE6600",
diff --git a/include/media/tuner.h b/include/media/tuner.h
index c03dceb92605..d49392d90e56 100644
--- a/include/media/tuner.h
+++ b/include/media/tuner.h
@@ -117,7 +117,7 @@ extern int tuner_debug;
117#define TUNER_PHILIPS_TUV1236D 68 /* ATI HDTV Wonder */ 117#define TUNER_PHILIPS_TUV1236D 68 /* ATI HDTV Wonder */
118#define TUNER_TNF_5335MF 69 /* Sabrent Bt848 */ 118#define TUNER_TNF_5335MF 69 /* Sabrent Bt848 */
119#define TUNER_SAMSUNG_TCPN_2121P30A 70 /* Hauppauge PVR-500MCE NTSC */ 119#define TUNER_SAMSUNG_TCPN_2121P30A 70 /* Hauppauge PVR-500MCE NTSC */
120#define TUNER_XCEIVE_XC3028 71 120#define TUNER_XC2028 71
121 121
122#define TUNER_THOMSON_FE6600 72 /* DViCO FusionHDTV DVB-T Hybrid */ 122#define TUNER_THOMSON_FE6600 72 /* DViCO FusionHDTV DVB-T Hybrid */
123#define TUNER_SAMSUNG_TCPG_6121P30A 73 /* Hauppauge PVR-500 PAL */ 123#define TUNER_SAMSUNG_TCPG_6121P30A 73 /* Hauppauge PVR-500 PAL */