2 * cx18 functions to query card hardware
4 * Derived from ivtv-cards.c
6 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
7 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.net>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #include "cx18-driver.h"
21 #include "cx18-cards.h"
22 #include "cx18-av-core.h"
24 #include <media/i2c/cs5345.h>
26 #define V4L2_STD_PAL_SECAM (V4L2_STD_PAL|V4L2_STD_SECAM)
28 /********************** card configuration *******************************/
30 /* usual i2c tuner addresses to probe */
31 static struct cx18_card_tuner_i2c cx18_i2c_std
= {
32 .radio
= { I2C_CLIENT_END
},
33 .demod
= { 0x43, I2C_CLIENT_END
},
34 .tv
= { 0x61, 0x60, I2C_CLIENT_END
},
38 * usual i2c tuner addresses to probe with additional demod address for
39 * an NXP TDA8295 at 0x42 (N.B. it can possibly be at 0x4b or 0x4c too).
41 static struct cx18_card_tuner_i2c cx18_i2c_nxp
= {
42 .radio
= { I2C_CLIENT_END
},
43 .demod
= { 0x42, 0x43, I2C_CLIENT_END
},
44 .tv
= { 0x61, 0x60, I2C_CLIENT_END
},
47 /* Please add new PCI IDs to: http://pci-ids.ucw.cz/
48 This keeps the PCI ID database up to date. Note that the entries
49 must be added under vendor 0x4444 (Conexant) as subsystem IDs.
50 New vendor IDs should still be added to the vendor ID list. */
52 /* Hauppauge HVR-1600 cards */
54 /* Note: for Hauppauge cards the tveeprom information is used instead
56 static const struct cx18_card cx18_card_hvr1600_esmt
= {
57 .type
= CX18_CARD_HVR_1600_ESMT
,
58 .name
= "Hauppauge HVR-1600",
59 .comment
= "Simultaneous Digital and Analog TV capture supported\n",
60 .v4l2_capabilities
= CX18_CAP_ENCODER
,
61 .hw_audio_ctrl
= CX18_HW_418_AV
,
62 .hw_muxer
= CX18_HW_CS5345
,
63 .hw_all
= CX18_HW_TVEEPROM
| CX18_HW_418_AV
| CX18_HW_TUNER
|
64 CX18_HW_CS5345
| CX18_HW_DVB
| CX18_HW_GPIO_RESET_CTRL
|
65 CX18_HW_Z8F0811_IR_HAUP
,
67 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE7
},
68 { CX18_CARD_INPUT_SVIDEO1
, 1, CX18_AV_SVIDEO1
},
69 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE3
},
70 { CX18_CARD_INPUT_SVIDEO2
, 2, CX18_AV_SVIDEO2
},
71 { CX18_CARD_INPUT_COMPOSITE2
, 2, CX18_AV_COMPOSITE4
},
74 { CX18_CARD_INPUT_AUD_TUNER
,
75 CX18_AV_AUDIO8
, CS5345_IN_1
| CS5345_MCLK_1_5
},
76 { CX18_CARD_INPUT_LINE_IN1
,
77 CX18_AV_AUDIO_SERIAL1
, CS5345_IN_2
},
78 { CX18_CARD_INPUT_LINE_IN2
,
79 CX18_AV_AUDIO_SERIAL1
, CS5345_IN_3
},
81 .radio_input
= { CX18_CARD_INPUT_AUD_TUNER
,
82 CX18_AV_AUDIO_SERIAL1
, CS5345_IN_4
},
84 /* ESMT M13S128324A-5B memory */
87 .timing1
= 0x44220e82,
92 .gpio_init
.initial_value
= 0x3001,
93 .gpio_init
.direction
= 0x3001,
94 .gpio_i2c_slave_reset
= {
95 .active_lo_mask
= 0x3001,
98 .ir_reset_mask
= 0x0001,
100 .i2c
= &cx18_i2c_std
,
103 static const struct cx18_card cx18_card_hvr1600_s5h1411
= {
104 .type
= CX18_CARD_HVR_1600_S5H1411
,
105 .name
= "Hauppauge HVR-1600",
106 .comment
= "Simultaneous Digital and Analog TV capture supported\n",
107 .v4l2_capabilities
= CX18_CAP_ENCODER
,
108 .hw_audio_ctrl
= CX18_HW_418_AV
,
109 .hw_muxer
= CX18_HW_CS5345
,
110 .hw_all
= CX18_HW_TVEEPROM
| CX18_HW_418_AV
| CX18_HW_TUNER
|
111 CX18_HW_CS5345
| CX18_HW_DVB
| CX18_HW_GPIO_RESET_CTRL
|
112 CX18_HW_Z8F0811_IR_HAUP
,
114 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE7
},
115 { CX18_CARD_INPUT_SVIDEO1
, 1, CX18_AV_SVIDEO1
},
116 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE3
},
117 { CX18_CARD_INPUT_SVIDEO2
, 2, CX18_AV_SVIDEO2
},
118 { CX18_CARD_INPUT_COMPOSITE2
, 2, CX18_AV_COMPOSITE4
},
121 { CX18_CARD_INPUT_AUD_TUNER
,
122 CX18_AV_AUDIO8
, CS5345_IN_1
| CS5345_MCLK_1_5
},
123 { CX18_CARD_INPUT_LINE_IN1
,
124 CX18_AV_AUDIO_SERIAL1
, CS5345_IN_2
},
125 { CX18_CARD_INPUT_LINE_IN2
,
126 CX18_AV_AUDIO_SERIAL1
, CS5345_IN_3
},
128 .radio_input
= { CX18_CARD_INPUT_AUD_TUNER
,
129 CX18_AV_AUDIO_SERIAL1
, CS5345_IN_4
},
131 /* ESMT M13S128324A-5B memory */
132 .chip_config
= 0x003,
134 .timing1
= 0x44220e82,
139 .gpio_init
.initial_value
= 0x3801,
140 .gpio_init
.direction
= 0x3801,
141 .gpio_i2c_slave_reset
= {
142 .active_lo_mask
= 0x3801,
143 .msecs_asserted
= 10,
144 .msecs_recovery
= 40,
145 .ir_reset_mask
= 0x0001,
147 .i2c
= &cx18_i2c_nxp
,
150 static const struct cx18_card cx18_card_hvr1600_samsung
= {
151 .type
= CX18_CARD_HVR_1600_SAMSUNG
,
152 .name
= "Hauppauge HVR-1600 (Preproduction)",
153 .comment
= "Simultaneous Digital and Analog TV capture supported\n",
154 .v4l2_capabilities
= CX18_CAP_ENCODER
,
155 .hw_audio_ctrl
= CX18_HW_418_AV
,
156 .hw_muxer
= CX18_HW_CS5345
,
157 .hw_all
= CX18_HW_TVEEPROM
| CX18_HW_418_AV
| CX18_HW_TUNER
|
158 CX18_HW_CS5345
| CX18_HW_DVB
| CX18_HW_GPIO_RESET_CTRL
|
159 CX18_HW_Z8F0811_IR_HAUP
,
161 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE7
},
162 { CX18_CARD_INPUT_SVIDEO1
, 1, CX18_AV_SVIDEO1
},
163 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE3
},
164 { CX18_CARD_INPUT_SVIDEO2
, 2, CX18_AV_SVIDEO2
},
165 { CX18_CARD_INPUT_COMPOSITE2
, 2, CX18_AV_COMPOSITE4
},
168 { CX18_CARD_INPUT_AUD_TUNER
,
169 CX18_AV_AUDIO8
, CS5345_IN_1
| CS5345_MCLK_1_5
},
170 { CX18_CARD_INPUT_LINE_IN1
,
171 CX18_AV_AUDIO_SERIAL1
, CS5345_IN_2
},
172 { CX18_CARD_INPUT_LINE_IN2
,
173 CX18_AV_AUDIO_SERIAL1
, CS5345_IN_3
},
175 .radio_input
= { CX18_CARD_INPUT_AUD_TUNER
,
176 CX18_AV_AUDIO_SERIAL1
, CS5345_IN_4
},
178 /* Samsung K4D263238G-VC33 memory */
179 .chip_config
= 0x003,
181 .timing1
= 0x23230b73,
186 .gpio_init
.initial_value
= 0x3001,
187 .gpio_init
.direction
= 0x3001,
188 .gpio_i2c_slave_reset
= {
189 .active_lo_mask
= 0x3001,
190 .msecs_asserted
= 10,
191 .msecs_recovery
= 40,
192 .ir_reset_mask
= 0x0001,
194 .i2c
= &cx18_i2c_std
,
197 /* ------------------------------------------------------------------------- */
199 /* Compro VideoMate H900: note that this card is analog only! */
201 static const struct cx18_card_pci_info cx18_pci_h900
[] = {
202 { PCI_DEVICE_ID_CX23418
, CX18_PCI_ID_COMPRO
, 0xe100 },
206 static const struct cx18_card cx18_card_h900
= {
207 .type
= CX18_CARD_COMPRO_H900
,
208 .name
= "Compro VideoMate H900",
209 .comment
= "Analog TV capture supported\n",
210 .v4l2_capabilities
= CX18_CAP_ENCODER
,
211 .hw_audio_ctrl
= CX18_HW_418_AV
,
212 .hw_all
= CX18_HW_418_AV
| CX18_HW_TUNER
| CX18_HW_GPIO_RESET_CTRL
,
214 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE2
},
215 { CX18_CARD_INPUT_SVIDEO1
, 1,
216 CX18_AV_SVIDEO_LUMA3
| CX18_AV_SVIDEO_CHROMA4
},
217 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE1
},
220 { CX18_CARD_INPUT_AUD_TUNER
,
222 { CX18_CARD_INPUT_LINE_IN1
,
223 CX18_AV_AUDIO_SERIAL1
, 0 },
225 .radio_input
= { CX18_CARD_INPUT_AUD_TUNER
,
226 CX18_AV_AUDIO_SERIAL1
, 0 },
228 { .std
= V4L2_STD_ALL
, .tuner
= TUNER_XC2028
},
231 /* EtronTech EM6A9160TS-5G memory */
232 .chip_config
= 0x50003,
234 .timing1
= 0x24330e84,
240 .pci_list
= cx18_pci_h900
,
241 .i2c
= &cx18_i2c_std
,
244 /* ------------------------------------------------------------------------- */
246 /* Yuan MPC718: not working at the moment! */
248 static const struct cx18_card_pci_info cx18_pci_mpc718
[] = {
249 { PCI_DEVICE_ID_CX23418
, CX18_PCI_ID_YUAN
, 0x0718 },
253 static const struct cx18_card cx18_card_mpc718
= {
254 .type
= CX18_CARD_YUAN_MPC718
,
255 .name
= "Yuan MPC718 MiniPCI DVB-T/Analog",
256 .comment
= "Experimenters needed for device to work well.\n"
257 "\tTo help, mail the ivtv-devel list (www.ivtvdriver.org).\n",
258 .v4l2_capabilities
= CX18_CAP_ENCODER
,
259 .hw_audio_ctrl
= CX18_HW_418_AV
,
260 .hw_muxer
= CX18_HW_GPIO_MUX
,
261 .hw_all
= CX18_HW_TVEEPROM
| CX18_HW_418_AV
| CX18_HW_TUNER
|
262 CX18_HW_GPIO_MUX
| CX18_HW_DVB
| CX18_HW_GPIO_RESET_CTRL
,
264 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE2
},
265 { CX18_CARD_INPUT_SVIDEO1
, 1,
266 CX18_AV_SVIDEO_LUMA3
| CX18_AV_SVIDEO_CHROMA4
},
267 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE1
},
268 { CX18_CARD_INPUT_SVIDEO2
, 2,
269 CX18_AV_SVIDEO_LUMA7
| CX18_AV_SVIDEO_CHROMA8
},
270 { CX18_CARD_INPUT_COMPOSITE2
, 2, CX18_AV_COMPOSITE6
},
273 { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 0 },
274 { CX18_CARD_INPUT_LINE_IN1
, CX18_AV_AUDIO_SERIAL1
, 1 },
275 { CX18_CARD_INPUT_LINE_IN2
, CX18_AV_AUDIO_SERIAL2
, 1 },
279 { .std
= V4L2_STD_ALL
, .tuner
= TUNER_XC2028
},
281 /* FIXME - the FM radio is just a guess and driver doesn't use SIF */
282 .radio_input
= { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 2 },
284 /* Hynix HY5DU283222B DDR RAM */
285 .chip_config
= 0x303,
287 .timing1
= 0x36320966,
292 .gpio_init
.initial_value
= 0x1,
293 .gpio_init
.direction
= 0x3,
294 /* FIXME - these GPIO's are just guesses */
295 .gpio_audio_input
= { .mask
= 0x3,
300 .pci_list
= cx18_pci_mpc718
,
301 .i2c
= &cx18_i2c_std
,
304 /* ------------------------------------------------------------------------- */
308 static const struct cx18_card_pci_info cx18_pci_gotview_dvd3
[] = {
309 { PCI_DEVICE_ID_CX23418
, CX18_PCI_ID_GOTVIEW
, 0x3343 },
313 static const struct cx18_card cx18_card_gotview_dvd3
= {
314 .type
= CX18_CARD_GOTVIEW_PCI_DVD3
,
315 .name
= "GoTView PCI DVD3 Hybrid",
316 .comment
= "Experimenters needed for device to work well.\n"
317 "\tTo help, mail the ivtv-devel list (www.ivtvdriver.org).\n",
318 .v4l2_capabilities
= CX18_CAP_ENCODER
,
319 .hw_audio_ctrl
= CX18_HW_418_AV
,
320 .hw_muxer
= CX18_HW_GPIO_MUX
,
321 .hw_all
= CX18_HW_TVEEPROM
| CX18_HW_418_AV
| CX18_HW_TUNER
|
322 CX18_HW_GPIO_MUX
| CX18_HW_DVB
| CX18_HW_GPIO_RESET_CTRL
,
324 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE2
},
325 { CX18_CARD_INPUT_SVIDEO1
, 1,
326 CX18_AV_SVIDEO_LUMA3
| CX18_AV_SVIDEO_CHROMA4
},
327 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE1
},
328 { CX18_CARD_INPUT_SVIDEO2
, 2,
329 CX18_AV_SVIDEO_LUMA7
| CX18_AV_SVIDEO_CHROMA8
},
330 { CX18_CARD_INPUT_COMPOSITE2
, 2, CX18_AV_COMPOSITE6
},
333 { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 0 },
334 { CX18_CARD_INPUT_LINE_IN1
, CX18_AV_AUDIO_SERIAL1
, 1 },
335 { CX18_CARD_INPUT_LINE_IN2
, CX18_AV_AUDIO_SERIAL2
, 1 },
339 { .std
= V4L2_STD_ALL
, .tuner
= TUNER_XC2028
},
341 /* FIXME - the FM radio is just a guess and driver doesn't use SIF */
342 .radio_input
= { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 2 },
344 /* Hynix HY5DU283222B DDR RAM */
345 .chip_config
= 0x303,
347 .timing1
= 0x36320966,
352 .gpio_init
.initial_value
= 0x1,
353 .gpio_init
.direction
= 0x3,
355 .gpio_audio_input
= { .mask
= 0x3,
360 .pci_list
= cx18_pci_gotview_dvd3
,
361 .i2c
= &cx18_i2c_std
,
364 /* ------------------------------------------------------------------------- */
366 /* Conexant Raptor PAL/SECAM: note that this card is analog only! */
368 static const struct cx18_card_pci_info cx18_pci_cnxt_raptor_pal
[] = {
369 { PCI_DEVICE_ID_CX23418
, CX18_PCI_ID_CONEXANT
, 0x0009 },
373 static const struct cx18_card cx18_card_cnxt_raptor_pal
= {
374 .type
= CX18_CARD_CNXT_RAPTOR_PAL
,
375 .name
= "Conexant Raptor PAL/SECAM",
376 .comment
= "Analog TV capture supported\n",
377 .v4l2_capabilities
= CX18_CAP_ENCODER
,
378 .hw_audio_ctrl
= CX18_HW_418_AV
,
379 .hw_muxer
= CX18_HW_GPIO_MUX
,
380 .hw_all
= CX18_HW_418_AV
| CX18_HW_TUNER
| CX18_HW_GPIO_MUX
,
382 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE2
},
383 { CX18_CARD_INPUT_SVIDEO1
, 1,
384 CX18_AV_SVIDEO_LUMA3
| CX18_AV_SVIDEO_CHROMA4
},
385 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE1
},
386 { CX18_CARD_INPUT_SVIDEO2
, 2,
387 CX18_AV_SVIDEO_LUMA7
| CX18_AV_SVIDEO_CHROMA8
},
388 { CX18_CARD_INPUT_COMPOSITE2
, 2, CX18_AV_COMPOSITE6
},
391 { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 0 },
392 { CX18_CARD_INPUT_LINE_IN1
, CX18_AV_AUDIO_SERIAL1
, 1 },
393 { CX18_CARD_INPUT_LINE_IN2
, CX18_AV_AUDIO_SERIAL2
, 1 },
396 { .std
= V4L2_STD_PAL_SECAM
, .tuner
= TUNER_PHILIPS_FM1216ME_MK3
},
398 .radio_input
= { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO_SERIAL1
, 2 },
400 /* MT 46V16M16 memory */
401 .chip_config
= 0x50306,
403 .timing1
= 0x33220953,
408 .gpio_init
.initial_value
= 0x1002,
409 .gpio_init
.direction
= 0xf002,
410 .gpio_audio_input
= { .mask
= 0xf002,
411 .tuner
= 0x1002, /* LED D1 Tuner AF */
412 .linein
= 0x2000, /* LED D2 Line In 1 */
413 .radio
= 0x4002 }, /* LED D3 Tuner AF */
414 .pci_list
= cx18_pci_cnxt_raptor_pal
,
415 .i2c
= &cx18_i2c_std
,
418 /* ------------------------------------------------------------------------- */
420 /* Toshiba Qosmio laptop internal DVB-T/Analog Hybrid Tuner */
422 static const struct cx18_card_pci_info cx18_pci_toshiba_qosmio_dvbt
[] = {
423 { PCI_DEVICE_ID_CX23418
, CX18_PCI_ID_TOSHIBA
, 0x0110 },
427 static const struct cx18_card cx18_card_toshiba_qosmio_dvbt
= {
428 .type
= CX18_CARD_TOSHIBA_QOSMIO_DVBT
,
429 .name
= "Toshiba Qosmio DVB-T/Analog",
430 .comment
= "Experimenters and photos needed for device to work well.\n"
431 "\tTo help, mail the ivtv-devel list (www.ivtvdriver.org).\n",
432 .v4l2_capabilities
= CX18_CAP_ENCODER
,
433 .hw_audio_ctrl
= CX18_HW_418_AV
,
434 .hw_all
= CX18_HW_418_AV
| CX18_HW_TUNER
| CX18_HW_GPIO_RESET_CTRL
,
436 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE6
},
437 { CX18_CARD_INPUT_SVIDEO1
, 1,
438 CX18_AV_SVIDEO_LUMA3
| CX18_AV_SVIDEO_CHROMA4
},
439 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE1
},
442 { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 0 },
443 { CX18_CARD_INPUT_LINE_IN1
, CX18_AV_AUDIO_SERIAL1
, 1 },
446 { .std
= V4L2_STD_ALL
, .tuner
= TUNER_XC2028
},
449 .chip_config
= 0x202,
451 .timing1
= 0x33320a63,
454 .initial_emrs
= 0x42,
457 .pci_list
= cx18_pci_toshiba_qosmio_dvbt
,
458 .i2c
= &cx18_i2c_std
,
461 /* ------------------------------------------------------------------------- */
463 /* Leadtek WinFast PVR2100 */
465 static const struct cx18_card_pci_info cx18_pci_leadtek_pvr2100
[] = {
466 { PCI_DEVICE_ID_CX23418
, CX18_PCI_ID_LEADTEK
, 0x6f27 }, /* PVR2100 */
470 static const struct cx18_card cx18_card_leadtek_pvr2100
= {
471 .type
= CX18_CARD_LEADTEK_PVR2100
,
472 .name
= "Leadtek WinFast PVR2100",
473 .comment
= "Experimenters and photos needed for device to work well.\n"
474 "\tTo help, mail the ivtv-devel list (www.ivtvdriver.org).\n",
475 .v4l2_capabilities
= CX18_CAP_ENCODER
,
476 .hw_audio_ctrl
= CX18_HW_418_AV
,
477 .hw_muxer
= CX18_HW_GPIO_MUX
,
478 .hw_all
= CX18_HW_418_AV
| CX18_HW_TUNER
| CX18_HW_GPIO_MUX
|
479 CX18_HW_GPIO_RESET_CTRL
,
481 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE2
},
482 { CX18_CARD_INPUT_SVIDEO1
, 1,
483 CX18_AV_SVIDEO_LUMA3
| CX18_AV_SVIDEO_CHROMA4
},
484 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE7
},
485 { CX18_CARD_INPUT_COMPONENT1
, 1, CX18_AV_COMPONENT1
},
488 { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 0 },
489 { CX18_CARD_INPUT_LINE_IN1
, CX18_AV_AUDIO_SERIAL1
, 1 },
493 { .std
= V4L2_STD_ALL
, .tuner
= TUNER_XC2028
},
495 .radio_input
= { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 2 },
497 /* Pointer to proper DDR config values provided by Terry Wu */
498 .chip_config
= 0x303,
500 .timing1
= 0x24220e83,
505 .gpio_init
.initial_value
= 0x6,
506 .gpio_init
.direction
= 0x7,
507 .gpio_audio_input
= { .mask
= 0x7,
508 .tuner
= 0x6, .linein
= 0x2, .radio
= 0x2 },
510 .pci_list
= cx18_pci_leadtek_pvr2100
,
511 .i2c
= &cx18_i2c_std
,
514 /* ------------------------------------------------------------------------- */
516 /* Leadtek WinFast DVR3100 H */
518 static const struct cx18_card_pci_info cx18_pci_leadtek_dvr3100h
[] = {
519 { PCI_DEVICE_ID_CX23418
, CX18_PCI_ID_LEADTEK
, 0x6690 }, /* DVR3100 H */
523 static const struct cx18_card cx18_card_leadtek_dvr3100h
= {
524 .type
= CX18_CARD_LEADTEK_DVR3100H
,
525 .name
= "Leadtek WinFast DVR3100 H",
526 .comment
= "Simultaneous DVB-T and Analog capture supported,\n"
527 "\texcept when capturing Analog from the antenna input.\n",
528 .v4l2_capabilities
= CX18_CAP_ENCODER
,
529 .hw_audio_ctrl
= CX18_HW_418_AV
,
530 .hw_muxer
= CX18_HW_GPIO_MUX
,
531 .hw_all
= CX18_HW_418_AV
| CX18_HW_TUNER
| CX18_HW_GPIO_MUX
|
532 CX18_HW_DVB
| CX18_HW_GPIO_RESET_CTRL
,
534 { CX18_CARD_INPUT_VID_TUNER
, 0, CX18_AV_COMPOSITE2
},
535 { CX18_CARD_INPUT_SVIDEO1
, 1,
536 CX18_AV_SVIDEO_LUMA3
| CX18_AV_SVIDEO_CHROMA4
},
537 { CX18_CARD_INPUT_COMPOSITE1
, 1, CX18_AV_COMPOSITE7
},
538 { CX18_CARD_INPUT_COMPONENT1
, 1, CX18_AV_COMPONENT1
},
541 { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 0 },
542 { CX18_CARD_INPUT_LINE_IN1
, CX18_AV_AUDIO_SERIAL1
, 1 },
546 { .std
= V4L2_STD_ALL
, .tuner
= TUNER_XC2028
},
548 .radio_input
= { CX18_CARD_INPUT_AUD_TUNER
, CX18_AV_AUDIO5
, 2 },
550 /* Pointer to proper DDR config values provided by Terry Wu */
551 .chip_config
= 0x303,
553 .timing1
= 0x24220e83,
558 .gpio_init
.initial_value
= 0x6,
559 .gpio_init
.direction
= 0x7,
560 .gpio_audio_input
= { .mask
= 0x7,
561 .tuner
= 0x6, .linein
= 0x2, .radio
= 0x2 },
563 .pci_list
= cx18_pci_leadtek_dvr3100h
,
564 .i2c
= &cx18_i2c_std
,
567 /* ------------------------------------------------------------------------- */
569 static const struct cx18_card
*cx18_card_list
[] = {
570 &cx18_card_hvr1600_esmt
,
571 &cx18_card_hvr1600_samsung
,
574 &cx18_card_cnxt_raptor_pal
,
575 &cx18_card_toshiba_qosmio_dvbt
,
576 &cx18_card_leadtek_pvr2100
,
577 &cx18_card_leadtek_dvr3100h
,
578 &cx18_card_gotview_dvd3
,
579 &cx18_card_hvr1600_s5h1411
582 const struct cx18_card
*cx18_get_card(u16 index
)
584 if (index
>= ARRAY_SIZE(cx18_card_list
))
586 return cx18_card_list
[index
];
589 int cx18_get_input(struct cx18
*cx
, u16 index
, struct v4l2_input
*input
)
591 const struct cx18_card_video_input
*card_input
=
592 cx
->card
->video_inputs
+ index
;
593 static const char * const input_strs
[] = {
602 if (index
>= cx
->nof_inputs
)
604 input
->index
= index
;
605 strlcpy(input
->name
, input_strs
[card_input
->video_type
- 1],
606 sizeof(input
->name
));
607 input
->type
= (card_input
->video_type
== CX18_CARD_INPUT_VID_TUNER
?
608 V4L2_INPUT_TYPE_TUNER
: V4L2_INPUT_TYPE_CAMERA
);
609 input
->audioset
= (1 << cx
->nof_audio_inputs
) - 1;
610 input
->std
= (input
->type
== V4L2_INPUT_TYPE_TUNER
) ?
611 cx
->tuner_std
: V4L2_STD_ALL
;
615 int cx18_get_audio_input(struct cx18
*cx
, u16 index
, struct v4l2_audio
*audio
)
617 const struct cx18_card_audio_input
*aud_input
=
618 cx
->card
->audio_inputs
+ index
;
619 static const char * const input_strs
[] = {
625 memset(audio
, 0, sizeof(*audio
));
626 if (index
>= cx
->nof_audio_inputs
)
628 strlcpy(audio
->name
, input_strs
[aud_input
->audio_type
- 1],
629 sizeof(audio
->name
));
630 audio
->index
= index
;
631 audio
->capability
= V4L2_AUDCAP_STEREO
;