2 * Driver for the Conexant CX23885 PCIe bridge
4 * Copyright (c) 2006 Steven Toth <stoth@linuxtv.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/pci.h>
25 #include <linux/delay.h>
26 #include <media/cx25840.h>
29 #include "tuner-xc2028.h"
30 #include "netup-init.h"
32 /* ------------------------------------------------------------------ */
33 /* board config info */
35 struct cx23885_board cx23885_boards[] = {
36 [CX23885_BOARD_UNKNOWN] = {
37 .name = "UNKNOWN/GENERIC",
38 /* Ensure safe default for unknown boards */
41 .type = CX23885_VMUX_COMPOSITE1,
44 .type = CX23885_VMUX_COMPOSITE2,
47 .type = CX23885_VMUX_COMPOSITE3,
50 .type = CX23885_VMUX_COMPOSITE4,
54 [CX23885_BOARD_HAUPPAUGE_HVR1800lp] = {
55 .name = "Hauppauge WinTV-HVR1800lp",
56 .portc = CX23885_MPEG_DVB,
58 .type = CX23885_VMUX_TELEVISION,
62 .type = CX23885_VMUX_DEBUG,
66 .type = CX23885_VMUX_COMPOSITE1,
70 .type = CX23885_VMUX_SVIDEO,
75 [CX23885_BOARD_HAUPPAUGE_HVR1800] = {
76 .name = "Hauppauge WinTV-HVR1800",
77 .porta = CX23885_ANALOG_VIDEO,
78 .portb = CX23885_MPEG_ENCODER,
79 .portc = CX23885_MPEG_DVB,
80 .tuner_type = TUNER_PHILIPS_TDA8290,
81 .tuner_addr = 0x42, /* 0x84 >> 1 */
83 .type = CX23885_VMUX_TELEVISION,
84 .vmux = CX25840_VIN7_CH3 |
89 .type = CX23885_VMUX_COMPOSITE1,
90 .vmux = CX25840_VIN7_CH3 |
95 .type = CX23885_VMUX_SVIDEO,
96 .vmux = CX25840_VIN7_CH3 |
103 [CX23885_BOARD_HAUPPAUGE_HVR1250] = {
104 .name = "Hauppauge WinTV-HVR1250",
105 .portc = CX23885_MPEG_DVB,
107 .type = CX23885_VMUX_TELEVISION,
111 .type = CX23885_VMUX_DEBUG,
115 .type = CX23885_VMUX_COMPOSITE1,
119 .type = CX23885_VMUX_SVIDEO,
124 [CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP] = {
125 .name = "DViCO FusionHDTV5 Express",
126 .portb = CX23885_MPEG_DVB,
128 [CX23885_BOARD_HAUPPAUGE_HVR1500Q] = {
129 .name = "Hauppauge WinTV-HVR1500Q",
130 .portc = CX23885_MPEG_DVB,
132 [CX23885_BOARD_HAUPPAUGE_HVR1500] = {
133 .name = "Hauppauge WinTV-HVR1500",
134 .portc = CX23885_MPEG_DVB,
136 [CX23885_BOARD_HAUPPAUGE_HVR1200] = {
137 .name = "Hauppauge WinTV-HVR1200",
138 .portc = CX23885_MPEG_DVB,
140 [CX23885_BOARD_HAUPPAUGE_HVR1700] = {
141 .name = "Hauppauge WinTV-HVR1700",
142 .portc = CX23885_MPEG_DVB,
144 [CX23885_BOARD_HAUPPAUGE_HVR1400] = {
145 .name = "Hauppauge WinTV-HVR1400",
146 .portc = CX23885_MPEG_DVB,
148 [CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP] = {
149 .name = "DViCO FusionHDTV7 Dual Express",
150 .portb = CX23885_MPEG_DVB,
151 .portc = CX23885_MPEG_DVB,
153 [CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP] = {
154 .name = "DViCO FusionHDTV DVB-T Dual Express",
155 .portb = CX23885_MPEG_DVB,
156 .portc = CX23885_MPEG_DVB,
158 [CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H] = {
159 .name = "Leadtek Winfast PxDVR3200 H",
160 .portc = CX23885_MPEG_DVB,
162 [CX23885_BOARD_COMPRO_VIDEOMATE_E650F] = {
163 .name = "Compro VideoMate E650F",
164 .portc = CX23885_MPEG_DVB,
166 [CX23885_BOARD_TBS_6920] = {
167 .name = "TurboSight TBS 6920",
168 .portb = CX23885_MPEG_DVB,
170 [CX23885_BOARD_TEVII_S470] = {
171 .name = "TeVii S470",
172 .portb = CX23885_MPEG_DVB,
174 [CX23885_BOARD_DVBWORLD_2005] = {
175 .name = "DVBWorld DVB-S2 2005",
176 .portb = CX23885_MPEG_DVB,
178 [CX23885_BOARD_NETUP_DUAL_DVBS2_CI] = {
180 .name = "NetUP Dual DVB-S2 CI",
181 .portb = CX23885_MPEG_DVB,
182 .portc = CX23885_MPEG_DVB,
185 const unsigned int cx23885_bcount = ARRAY_SIZE(cx23885_boards);
187 /* ------------------------------------------------------------------ */
188 /* PCI subsystem IDs */
190 struct cx23885_subid cx23885_subids[] = {
194 .card = CX23885_BOARD_UNKNOWN,
198 .card = CX23885_BOARD_HAUPPAUGE_HVR1800lp,
202 .card = CX23885_BOARD_HAUPPAUGE_HVR1800,
206 .card = CX23885_BOARD_HAUPPAUGE_HVR1800,
210 .card = CX23885_BOARD_HAUPPAUGE_HVR1800,
214 .card = CX23885_BOARD_HAUPPAUGE_HVR1250,
218 .card = CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP,
222 .card = CX23885_BOARD_HAUPPAUGE_HVR1500Q,
226 .card = CX23885_BOARD_HAUPPAUGE_HVR1500Q,
230 .card = CX23885_BOARD_HAUPPAUGE_HVR1500,
234 .card = CX23885_BOARD_HAUPPAUGE_HVR1500,
238 .card = CX23885_BOARD_HAUPPAUGE_HVR1200,
242 .card = CX23885_BOARD_HAUPPAUGE_HVR1200,
246 .card = CX23885_BOARD_HAUPPAUGE_HVR1700,
250 .card = CX23885_BOARD_HAUPPAUGE_HVR1400,
254 .card = CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP,
258 .card = CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP,
262 .card = CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H,
266 .card = CX23885_BOARD_COMPRO_VIDEOMATE_E650F,
270 .card = CX23885_BOARD_TBS_6920,
274 .card = CX23885_BOARD_TEVII_S470,
278 .card = CX23885_BOARD_DVBWORLD_2005,
282 .card = CX23885_BOARD_NETUP_DUAL_DVBS2_CI,
285 const unsigned int cx23885_idcount = ARRAY_SIZE(cx23885_subids);
287 void cx23885_card_list(struct cx23885_dev *dev)
291 if (0 == dev->pci->subsystem_vendor &&
292 0 == dev->pci->subsystem_device) {
294 "%s: Board has no valid PCIe Subsystem ID and can't\n"
295 "%s: be autodetected. Pass card=<n> insmod option\n"
296 "%s: to workaround that. Redirect complaints to the\n"
297 "%s: vendor of the TV card. Best regards,\n"
299 dev->name, dev->name, dev->name, dev->name, dev->name);
302 "%s: Your board isn't known (yet) to the driver.\n"
303 "%s: Try to pick one of the existing card configs via\n"
304 "%s: card=<n> insmod option. Updating to the latest\n"
305 "%s: version might help as well.\n",
306 dev->name, dev->name, dev->name, dev->name);
308 printk(KERN_INFO "%s: Here is a list of valid choices for the card=<n> insmod option:\n",
310 for (i = 0; i < cx23885_bcount; i++)
311 printk(KERN_INFO "%s: card=%d -> %s\n",
312 dev->name, i, cx23885_boards[i].name);
315 static void hauppauge_eeprom(struct cx23885_dev *dev, u8 *eeprom_data)
319 tveeprom_hauppauge_analog(&dev->i2c_bus[0].i2c_client, &tv,
322 /* Make sure we support the board model */
325 /* WinTV-HVR1200 (PCIe, Retail, full height)
326 * DVB-T and basic analog */
328 /* WinTV-HVR1200 (PCIe, OEM, half height)
329 * DVB-T and basic analog */
331 /* WinTV-HVR1200 (PCIe, OEM, half height)
332 * DVB-T and basic analog */
334 /* WinTV-HVR1200 (PCIe, OEM, full height)
335 * DVB-T and basic analog */
337 /* WinTV-HVR1200 (PCIe, OEM, half height)
338 * DVB-T and basic analog */
340 /* WinTV-HVR1200 (PCIe, OEM, full height)
341 * DVB-T and basic analog */
343 /* WinTV-HVR1200 (PCIe, OEM, full height)
344 * DVB-T and basic analog */
346 /* WinTV-HVR1200 (PCIe, OEM, half height)
347 * DVB-T and basic analog */
349 /* WinTV-HVR1200 (PCIe, OEM, full height)
350 * DVB-T and basic analog */
352 /* WinTV-HVR1800lp (PCIe, Retail, No IR, Dual
353 channel ATSC and MPEG2 HW Encoder */
355 /* WinTV-HVR1500 (Express Card, OEM, No IR, ATSC
358 /* WinTV-HVR1500 (Express Card, Retail, No IR, ATSC
361 /* WinTV-HVR1500Q (Express Card, OEM, No IR, ATSC/QAM
364 /* WinTV-HVR1500Q (Express Card, Retail, No IR, ATSC/QAM
367 /* WinTV-HVR1800 (PCIe, Retail, 3.5mm in, IR, No FM,
368 Dual channel ATSC and MPEG2 HW Encoder */
370 /* WinTV-HVR1800 (PCIe, OEM, RCA in, No IR, FM,
371 Dual channel ATSC and MPEG2 HW Encoder */
373 /* WinTV-HVR1800 (PCIe, OEM, RCA in, No IR, FM,
374 Dual channel ATSC and MPEG2 HW Encoder */
376 /* WinTV-HVR1800 (PCIe, OEM, RCA in, No IR, No FM,
377 Dual channel ATSC and MPEG2 HW Encoder */
379 /* WinTV-HVR1800 (PCIe, OEM, No IR, No FM,
380 Dual channel ATSC and MPEG2 HW Encoder */
382 /* WinTV-HVR1250 (PCIe, Retail, IR, full height,
383 ATSC and Basic analog */
385 /* WinTV-HVR1250 (PCIe, Retail, IR, half height,
386 ATSC and Basic analog */
388 /* WinTV-HVR1250 (PCIe, OEM, No IR, half height,
389 ATSC and Basic analog */
391 /* WinTV-HVR1250 (PCIe, OEM, No IR, full height,
392 ATSC and Basic analog */
394 /* WinTV-HVR1250 (PCIe, OEM, No IR, half height,
395 ATSC and Basic analog */
397 /* WinTV-HVR1400 (Express Card, Retail, IR,
398 * DVB-T and Basic analog */
400 /* WinTV-HVR1700 (PCIe, OEM, No IR, half height)
401 * DVB-T and MPEG2 HW Encoder */
403 /* WinTV-HVR1700 (PCIe, OEM, No IR, full height)
404 * DVB-T and MPEG2 HW Encoder */
407 printk(KERN_WARNING "%s: warning: unknown hauppauge model #%d\n",
408 dev->name, tv.model);
412 printk(KERN_INFO "%s: hauppauge eeprom: model=%d\n",
413 dev->name, tv.model);
416 int cx23885_tuner_callback(void *priv, int component, int command, int arg)
418 struct cx23885_tsport *port = priv;
419 struct cx23885_dev *dev = port->dev;
422 if (command == XC2028_RESET_CLK)
426 printk(KERN_ERR "%s(): Unknown command 0x%x.\n",
431 switch (dev->board) {
432 case CX23885_BOARD_HAUPPAUGE_HVR1400:
433 case CX23885_BOARD_HAUPPAUGE_HVR1500:
434 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
435 case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
436 case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
437 /* Tuner Reset Command */
440 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
441 case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP:
442 /* Two identical tuners on two different i2c buses,
443 * we need to reset the correct gpio. */
446 else if (port->nr == 2)
452 /* Drive the tuner into reset and back out */
453 cx_clear(GP0_IO, bitmask);
455 cx_set(GP0_IO, bitmask);
461 void cx23885_gpio_setup(struct cx23885_dev *dev)
463 switch (dev->board) {
464 case CX23885_BOARD_HAUPPAUGE_HVR1250:
465 /* GPIO-0 cx24227 demodulator reset */
466 cx_set(GP0_IO, 0x00010001); /* Bring the part out of reset */
468 case CX23885_BOARD_HAUPPAUGE_HVR1500:
469 /* GPIO-0 cx24227 demodulator */
470 /* GPIO-2 xc3028 tuner */
472 /* Put the parts into reset */
473 cx_set(GP0_IO, 0x00050000);
474 cx_clear(GP0_IO, 0x00000005);
477 /* Bring the parts out of reset */
478 cx_set(GP0_IO, 0x00050005);
480 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
481 /* GPIO-0 cx24227 demodulator reset */
482 /* GPIO-2 xc5000 tuner reset */
483 cx_set(GP0_IO, 0x00050005); /* Bring the part out of reset */
485 case CX23885_BOARD_HAUPPAUGE_HVR1800:
488 /* GPIO-2 8295A Reset */
489 /* GPIO-3-10 cx23417 data0-7 */
490 /* GPIO-11-14 cx23417 addr0-3 */
491 /* GPIO-15-18 cx23417 READY, CS, RD, WR */
495 /* EIO15 Zilog Reset */
496 /* EIO14 S5H1409/CX24227 Reset */
498 /* Force the TDA8295A into reset and back */
499 cx_set(GP0_IO, 0x00040004);
501 cx_clear(GP0_IO, 0x00000004);
503 cx_set(GP0_IO, 0x00040004);
506 case CX23885_BOARD_HAUPPAUGE_HVR1200:
507 /* GPIO-0 tda10048 demodulator reset */
508 /* GPIO-2 tda18271 tuner reset */
510 /* Put the parts into reset and back */
511 cx_set(GP0_IO, 0x00050000);
513 cx_clear(GP0_IO, 0x00000005);
515 cx_set(GP0_IO, 0x00050005);
517 case CX23885_BOARD_HAUPPAUGE_HVR1700:
518 /* GPIO-0 TDA10048 demodulator reset */
519 /* GPIO-2 TDA8295A Reset */
520 /* GPIO-3-10 cx23417 data0-7 */
521 /* GPIO-11-14 cx23417 addr0-3 */
522 /* GPIO-15-18 cx23417 READY, CS, RD, WR */
524 /* The following GPIO's are on the interna AVCore (cx25840) */
526 /* GPIO-20 IR_TX 416/DVBT Select */
527 /* GPIO-21 IIS DAT */
528 /* GPIO-22 IIS WCLK */
529 /* GPIO-23 IIS BCLK */
531 /* Put the parts into reset and back */
532 cx_set(GP0_IO, 0x00050000);
534 cx_clear(GP0_IO, 0x00000005);
536 cx_set(GP0_IO, 0x00050005);
538 case CX23885_BOARD_HAUPPAUGE_HVR1400:
539 /* GPIO-0 Dibcom7000p demodulator reset */
540 /* GPIO-2 xc3028L tuner reset */
543 /* Put the parts into reset and back */
544 cx_set(GP0_IO, 0x00050000);
546 cx_clear(GP0_IO, 0x00000005);
548 cx_set(GP0_IO, 0x00050005);
550 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
551 /* GPIO-0 xc5000 tuner reset i2c bus 0 */
552 /* GPIO-1 s5h1409 demod reset i2c bus 0 */
553 /* GPIO-2 xc5000 tuner reset i2c bus 1 */
554 /* GPIO-3 s5h1409 demod reset i2c bus 0 */
556 /* Put the parts into reset and back */
557 cx_set(GP0_IO, 0x000f0000);
559 cx_clear(GP0_IO, 0x0000000f);
561 cx_set(GP0_IO, 0x000f000f);
563 case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP:
564 /* GPIO-0 portb xc3028 reset */
565 /* GPIO-1 portb zl10353 reset */
566 /* GPIO-2 portc xc3028 reset */
567 /* GPIO-3 portc zl10353 reset */
569 /* Put the parts into reset and back */
570 cx_set(GP0_IO, 0x000f0000);
572 cx_clear(GP0_IO, 0x0000000f);
574 cx_set(GP0_IO, 0x000f000f);
576 case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
577 case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
578 /* GPIO-2 xc3028 tuner reset */
580 /* The following GPIO's are on the internal AVCore (cx25840) */
581 /* GPIO-? zl10353 demod reset */
583 /* Put the parts into reset and back */
584 cx_set(GP0_IO, 0x00040000);
586 cx_clear(GP0_IO, 0x00000004);
588 cx_set(GP0_IO, 0x00040004);
590 case CX23885_BOARD_TBS_6920:
591 case CX23885_BOARD_TEVII_S470:
592 cx_write(MC417_CTL, 0x00000036);
593 cx_write(MC417_OEN, 0x00001000);
594 cx_write(MC417_RWD, 0x00001800);
596 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
597 /* GPIO-0 INTA from CiMax1
598 GPIO-1 INTB from CiMax2
600 GPIO-3 to GPIO-10 data/addr for CA
601 GPIO-11 ~CS0 to CiMax1
602 GPIO-12 ~CS1 to CiMax2
603 GPIO-13 ADL0 load LSB addr
604 GPIO-14 ADL1 load MSB addr
605 GPIO-15 ~RDY from CiMax
609 cx_set(GP0_IO, 0x00040000); /* GPIO as out */
610 /* GPIO1 and GPIO2 as INTA and INTB from CiMaxes, reset low */
611 cx_clear(GP0_IO, 0x00030004);
612 mdelay(100);/* reset delay */
613 cx_set(GP0_IO, 0x00040004); /* GPIO as out, reset high */
614 cx_write(MC417_CTL, 0x00000037);/* enable GPIO3-18 pins */
615 /* GPIO-15 IN as ~ACK, rest as OUT */
616 cx_write(MC417_OEN, 0x00001000);
617 /* ~RD, ~WR high; ADL0, ADL1 low; ~CS0, ~CS1 high */
618 cx_write(MC417_RWD, 0x0000c300);
620 cx_write(GPIO_ISM, 0x00000000);/* INTERRUPTS active low*/
625 int cx23885_ir_init(struct cx23885_dev *dev)
627 switch (dev->board) {
628 case CX23885_BOARD_HAUPPAUGE_HVR1250:
629 case CX23885_BOARD_HAUPPAUGE_HVR1500:
630 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
631 case CX23885_BOARD_HAUPPAUGE_HVR1800:
632 case CX23885_BOARD_HAUPPAUGE_HVR1200:
633 case CX23885_BOARD_HAUPPAUGE_HVR1400:
634 /* FIXME: Implement me */
636 case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP:
637 request_module("ir-kbd-i2c");
644 void cx23885_card_setup(struct cx23885_dev *dev)
646 struct cx23885_tsport *ts1 = &dev->ts1;
647 struct cx23885_tsport *ts2 = &dev->ts2;
649 static u8 eeprom[256];
651 if (dev->i2c_bus[0].i2c_rc == 0) {
652 dev->i2c_bus[0].i2c_client.addr = 0xa0 >> 1;
653 tveeprom_read(&dev->i2c_bus[0].i2c_client,
654 eeprom, sizeof(eeprom));
657 switch (dev->board) {
658 case CX23885_BOARD_HAUPPAUGE_HVR1250:
659 case CX23885_BOARD_HAUPPAUGE_HVR1500:
660 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
661 case CX23885_BOARD_HAUPPAUGE_HVR1400:
662 if (dev->i2c_bus[0].i2c_rc == 0)
663 hauppauge_eeprom(dev, eeprom+0x80);
665 case CX23885_BOARD_HAUPPAUGE_HVR1800:
666 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
667 case CX23885_BOARD_HAUPPAUGE_HVR1200:
668 case CX23885_BOARD_HAUPPAUGE_HVR1700:
669 if (dev->i2c_bus[0].i2c_rc == 0)
670 hauppauge_eeprom(dev, eeprom+0xc0);
674 switch (dev->board) {
675 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
676 case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP:
677 ts2->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
678 ts2->ts_clk_en_val = 0x1; /* Enable TS_CLK */
679 ts2->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
680 /* break omitted intentionally */
681 case CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP:
682 ts1->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
683 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */
684 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
686 case CX23885_BOARD_HAUPPAUGE_HVR1800:
687 /* Defaults for VID B - Analog encoder */
688 /* DREQ_POL, SMODE, PUNC_CLK, MCLK_POL Serial bus + punc clk */
689 ts1->gen_ctrl_val = 0x10e;
690 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */
691 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
693 /* APB_TSVALERR_POL (active low)*/
694 ts1->vld_misc_val = 0x2000;
695 ts1->hw_sop_ctrl_val = (0x47 << 16 | 188 << 4 | 0xc);
697 /* Defaults for VID C */
698 ts2->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
699 ts2->ts_clk_en_val = 0x1; /* Enable TS_CLK */
700 ts2->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
702 case CX23885_BOARD_TEVII_S470:
703 case CX23885_BOARD_TBS_6920:
704 case CX23885_BOARD_DVBWORLD_2005:
705 ts1->gen_ctrl_val = 0x5; /* Parallel */
706 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */
707 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
709 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
710 ts1->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
711 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */
712 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
713 ts2->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
714 ts2->ts_clk_en_val = 0x1; /* Enable TS_CLK */
715 ts2->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
717 case CX23885_BOARD_HAUPPAUGE_HVR1250:
718 case CX23885_BOARD_HAUPPAUGE_HVR1500:
719 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
720 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
721 case CX23885_BOARD_HAUPPAUGE_HVR1200:
722 case CX23885_BOARD_HAUPPAUGE_HVR1700:
723 case CX23885_BOARD_HAUPPAUGE_HVR1400:
724 case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
725 case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
727 ts2->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
728 ts2->ts_clk_en_val = 0x1; /* Enable TS_CLK */
729 ts2->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
732 /* Certain boards support analog, or require the avcore to be
733 * loaded, ensure this happens.
735 switch (dev->board) {
736 case CX23885_BOARD_HAUPPAUGE_HVR1800:
737 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
738 case CX23885_BOARD_HAUPPAUGE_HVR1700:
739 case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
740 case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
741 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
742 dev->sd_cx25840 = v4l2_i2c_new_subdev(&dev->v4l2_dev,
743 &dev->i2c_bus[2].i2c_adap,
744 "cx25840", "cx25840", 0x88 >> 1);
745 v4l2_subdev_call(dev->sd_cx25840, core, load_fw);
749 /* AUX-PLL 27MHz CLK */
750 switch (dev->board) {
751 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
752 netup_initialize(dev);
757 /* ------------------------------------------------------------------ */