4 * Copyright (c) 2006-2008 Dominik Kuhlen <dkuhlen@gmx.net>
6 * TT connect S2-3650-CI Common Interface support, MAC readout
7 * Copyright (C) 2008 Michael H. Schimek <mschimek@gmx.at>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
15 /* dvb usb framework */
16 #define DVB_USB_LOG_PREFIX "pctv452e"
20 #include "stb0899_drv.h"
21 #include "stb0899_reg.h"
22 #include "stb0899_cfg.h"
25 #include "stb6100_cfg.h"
29 #include <media/dvb_ca_en50221.h>
30 #include "ttpci-eeprom.h"
33 module_param(debug
, int, 0644);
34 MODULE_PARM_DESC(debug
, "Turn on/off debugging (default:off).");
36 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr
);
38 #define ISOC_INTERFACE_ALTERNATIVE 3
40 #define SYNC_BYTE_OUT 0xaa
41 #define SYNC_BYTE_IN 0x55
43 /* guessed: (copied from ttusb-budget) */
44 #define PCTV_CMD_RESET 0x15
45 /* command to poll IR receiver */
46 #define PCTV_CMD_IR 0x1b
47 /* command to send I2C */
48 #define PCTV_CMD_I2C 0x31
50 #define I2C_ADDR_STB0899 (0xd0 >> 1)
51 #define I2C_ADDR_STB6100 (0xc0 >> 1)
52 #define I2C_ADDR_LNBP22 (0x10 >> 1)
53 #define I2C_ADDR_24C16 (0xa0 >> 1)
54 #define I2C_ADDR_24C64 (0xa2 >> 1)
57 /* pctv452e sends us this amount of data for each issued usb-command */
58 #define PCTV_ANSWER_LEN 64
59 /* Wait up to 1000ms for device */
60 #define PCTV_TIMEOUT 1000
63 #define PCTV_LED_GPIO STB0899_GPIO01
64 #define PCTV_LED_GREEN 0x82
65 #define PCTV_LED_ORANGE 0x02
67 #define ci_dbg(format, arg...) \
70 printk(KERN_DEBUG DVB_USB_LOG_PREFIX \
71 ": " format "\n" , ## arg); \
75 TT3650_CMD_CI_TEST
= 0x40,
76 TT3650_CMD_CI_RD_CTRL
,
77 TT3650_CMD_CI_WR_CTRL
,
78 TT3650_CMD_CI_RD_ATTR
,
79 TT3650_CMD_CI_WR_ATTR
,
81 TT3650_CMD_CI_SET_VIDEO_PORT
85 static struct stb0899_postproc pctv45e_postproc
[] = {
86 { PCTV_LED_GPIO
, STB0899_GPIOPULLUP
},
91 * stores all private variables for communication with the PCTV452e DVB-S2
93 struct pctv452e_state
{
94 struct dvb_ca_en50221 ca
;
95 struct mutex ca_mutex
;
97 u8 c
; /* transaction counter, wraps around... */
98 u8 initialized
; /* set to 1 if 0x15 has been sent */
102 static int tt3650_ci_msg(struct dvb_usb_device
*d
, u8 cmd
, u8
*data
,
103 unsigned int write_len
, unsigned int read_len
)
105 struct pctv452e_state
*state
= (struct pctv452e_state
*)d
->priv
;
111 if (!data
|| (write_len
> 64 - 4) || (read_len
> 64 - 4)) {
112 err("%s: transfer data invalid", __func__
);
116 buf
= kmalloc(64, GFP_KERNEL
);
122 buf
[0] = SYNC_BYTE_OUT
;
127 memcpy(buf
+ 4, data
, write_len
);
129 rlen
= (read_len
> 0) ? 64 : 0;
130 ret
= dvb_usb_generic_rw(d
, buf
, 4 + write_len
,
131 buf
, rlen
, /* delay_ms */ 0);
136 if (SYNC_BYTE_IN
!= buf
[0] || id
!= buf
[1])
139 memcpy(data
, buf
+ 4, read_len
);
145 err("CI error %d; %02X %02X %02X -> %*ph.",
146 ret
, SYNC_BYTE_OUT
, id
, cmd
, 3, buf
);
152 static int tt3650_ci_msg_locked(struct dvb_ca_en50221
*ca
,
153 u8 cmd
, u8
*data
, unsigned int write_len
,
154 unsigned int read_len
)
156 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
157 struct pctv452e_state
*state
= (struct pctv452e_state
*)d
->priv
;
160 mutex_lock(&state
->ca_mutex
);
161 ret
= tt3650_ci_msg(d
, cmd
, data
, write_len
, read_len
);
162 mutex_unlock(&state
->ca_mutex
);
167 static int tt3650_ci_read_attribute_mem(struct dvb_ca_en50221
*ca
,
168 int slot
, int address
)
176 buf
[0] = (address
>> 8) & 0x0F;
179 ret
= tt3650_ci_msg_locked(ca
, TT3650_CMD_CI_RD_ATTR
, buf
, 2, 3);
181 ci_dbg("%s %04x -> %d 0x%02x",
182 __func__
, address
, ret
, buf
[2]);
190 static int tt3650_ci_write_attribute_mem(struct dvb_ca_en50221
*ca
,
191 int slot
, int address
, u8 value
)
195 ci_dbg("%s %d 0x%04x 0x%02x",
196 __func__
, slot
, address
, value
);
201 buf
[0] = (address
>> 8) & 0x0F;
205 return tt3650_ci_msg_locked(ca
, TT3650_CMD_CI_WR_ATTR
, buf
, 3, 3);
208 static int tt3650_ci_read_cam_control(struct dvb_ca_en50221
*ca
,
218 buf
[0] = address
& 3;
220 ret
= tt3650_ci_msg_locked(ca
, TT3650_CMD_CI_RD_CTRL
, buf
, 1, 2);
222 ci_dbg("%s 0x%02x -> %d 0x%02x",
223 __func__
, address
, ret
, buf
[1]);
231 static int tt3650_ci_write_cam_control(struct dvb_ca_en50221
*ca
,
238 ci_dbg("%s %d 0x%02x 0x%02x",
239 __func__
, slot
, address
, value
);
247 return tt3650_ci_msg_locked(ca
, TT3650_CMD_CI_WR_CTRL
, buf
, 2, 2);
250 static int tt3650_ci_set_video_port(struct dvb_ca_en50221
*ca
,
257 ci_dbg("%s %d %d", __func__
, slot
, enable
);
265 ret
= tt3650_ci_msg_locked(ca
, TT3650_CMD_CI_SET_VIDEO_PORT
, buf
, 1, 1);
269 if (enable
!= buf
[0]) {
270 err("CI not %sabled.", enable
? "en" : "dis");
277 static int tt3650_ci_slot_shutdown(struct dvb_ca_en50221
*ca
, int slot
)
279 return tt3650_ci_set_video_port(ca
, slot
, /* enable */ 0);
282 static int tt3650_ci_slot_ts_enable(struct dvb_ca_en50221
*ca
, int slot
)
284 return tt3650_ci_set_video_port(ca
, slot
, /* enable */ 1);
287 static int tt3650_ci_slot_reset(struct dvb_ca_en50221
*ca
, int slot
)
289 struct dvb_usb_device
*d
= (struct dvb_usb_device
*)ca
->data
;
290 struct pctv452e_state
*state
= (struct pctv452e_state
*)d
->priv
;
294 ci_dbg("%s %d", __func__
, slot
);
301 mutex_lock(&state
->ca_mutex
);
303 ret
= tt3650_ci_msg(d
, TT3650_CMD_CI_RESET
, buf
, 1, 1);
311 ret
= tt3650_ci_msg(d
, TT3650_CMD_CI_RESET
, buf
, 1, 1);
317 buf
[0] = 0; /* FTA */
319 ret
= tt3650_ci_msg(d
, TT3650_CMD_CI_SET_VIDEO_PORT
, buf
, 1, 1);
322 mutex_unlock(&state
->ca_mutex
);
327 static int tt3650_ci_poll_slot_status(struct dvb_ca_en50221
*ca
,
337 ret
= tt3650_ci_msg_locked(ca
, TT3650_CMD_CI_TEST
, buf
, 0, 1);
342 return DVB_CA_EN50221_POLL_CAM_PRESENT
|
343 DVB_CA_EN50221_POLL_CAM_READY
;
349 static void tt3650_ci_uninit(struct dvb_usb_device
*d
)
351 struct pctv452e_state
*state
;
353 ci_dbg("%s", __func__
);
358 state
= (struct pctv452e_state
*)d
->priv
;
362 if (NULL
== state
->ca
.data
)
366 tt3650_ci_set_video_port(&state
->ca
, /* slot */ 0, /* enable */ 0);
368 dvb_ca_en50221_release(&state
->ca
);
370 memset(&state
->ca
, 0, sizeof(state
->ca
));
373 static int tt3650_ci_init(struct dvb_usb_adapter
*a
)
375 struct dvb_usb_device
*d
= a
->dev
;
376 struct pctv452e_state
*state
= (struct pctv452e_state
*)d
->priv
;
379 ci_dbg("%s", __func__
);
381 mutex_init(&state
->ca_mutex
);
383 state
->ca
.owner
= THIS_MODULE
;
384 state
->ca
.read_attribute_mem
= tt3650_ci_read_attribute_mem
;
385 state
->ca
.write_attribute_mem
= tt3650_ci_write_attribute_mem
;
386 state
->ca
.read_cam_control
= tt3650_ci_read_cam_control
;
387 state
->ca
.write_cam_control
= tt3650_ci_write_cam_control
;
388 state
->ca
.slot_reset
= tt3650_ci_slot_reset
;
389 state
->ca
.slot_shutdown
= tt3650_ci_slot_shutdown
;
390 state
->ca
.slot_ts_enable
= tt3650_ci_slot_ts_enable
;
391 state
->ca
.poll_slot_status
= tt3650_ci_poll_slot_status
;
394 ret
= dvb_ca_en50221_init(&a
->dvb_adap
,
399 err("Cannot initialize CI: Error %d.", ret
);
400 memset(&state
->ca
, 0, sizeof(state
->ca
));
404 info("CI initialized.");
409 #define CMD_BUFFER_SIZE 0x28
410 static int pctv452e_i2c_msg(struct dvb_usb_device
*d
, u8 addr
,
411 const u8
*snd_buf
, u8 snd_len
,
412 u8
*rcv_buf
, u8 rcv_len
)
414 struct pctv452e_state
*state
= (struct pctv452e_state
*)d
->priv
;
419 buf
= kmalloc(64, GFP_KERNEL
);
426 if (snd_len
> 64 - 7 || rcv_len
> 64 - 7)
429 buf
[0] = SYNC_BYTE_OUT
;
431 buf
[2] = PCTV_CMD_I2C
;
432 buf
[3] = snd_len
+ 3;
437 memcpy(buf
+ 7, snd_buf
, snd_len
);
439 ret
= dvb_usb_generic_rw(d
, buf
, 7 + snd_len
,
440 buf
, /* rcv_len */ 64,
445 /* TT USB protocol error. */
447 if (SYNC_BYTE_IN
!= buf
[0] || id
!= buf
[1])
450 /* I2C device didn't respond as expected. */
452 if (buf
[5] < snd_len
|| buf
[6] < rcv_len
)
455 memcpy(rcv_buf
, buf
+ 7, rcv_len
);
461 err("I2C error %d; %02X %02X %02X %02X %02X -> %*ph",
462 ret
, SYNC_BYTE_OUT
, id
, addr
<< 1, snd_len
, rcv_len
,
469 static int pctv452e_i2c_xfer(struct i2c_adapter
*adapter
, struct i2c_msg
*msg
,
472 struct dvb_usb_device
*d
= i2c_get_adapdata(adapter
);
475 if (mutex_lock_interruptible(&d
->i2c_mutex
) < 0)
478 for (i
= 0; i
< num
; i
++) {
479 u8 addr
, snd_len
, rcv_len
, *snd_buf
, *rcv_buf
;
482 if (msg
[i
].flags
& I2C_M_RD
) {
486 rcv_buf
= msg
[i
].buf
;
487 rcv_len
= msg
[i
].len
;
490 snd_buf
= msg
[i
].buf
;
491 snd_len
= msg
[i
].len
;
496 ret
= pctv452e_i2c_msg(d
, addr
, snd_buf
, snd_len
, rcv_buf
,
502 mutex_unlock(&d
->i2c_mutex
);
506 static u32
pctv452e_i2c_func(struct i2c_adapter
*adapter
)
511 static int pctv452e_power_ctrl(struct dvb_usb_device
*d
, int i
)
513 struct pctv452e_state
*state
= (struct pctv452e_state
*)d
->priv
;
517 info("%s: %d\n", __func__
, i
);
522 if (state
->initialized
)
525 b0
= kmalloc(5 + PCTV_ANSWER_LEN
, GFP_KERNEL
);
531 /* hmm where shoud this should go? */
532 ret
= usb_set_interface(d
->udev
, 0, ISOC_INTERFACE_ALTERNATIVE
);
534 info("%s: Warning set interface returned: %d\n",
537 /* this is a one-time initialization, dont know where to put */
540 b0
[2] = PCTV_CMD_RESET
;
544 ret
= dvb_usb_generic_rw(d
, b0
, 5, rx
, PCTV_ANSWER_LEN
, 0);
550 /* reset board (again?) */
551 ret
= dvb_usb_generic_rw(d
, b0
, 5, rx
, PCTV_ANSWER_LEN
, 0);
555 state
->initialized
= 1;
562 static int pctv452e_rc_query(struct dvb_usb_device
*d
)
564 struct pctv452e_state
*state
= (struct pctv452e_state
*)d
->priv
;
569 b
= kmalloc(CMD_BUFFER_SIZE
+ PCTV_ANSWER_LEN
, GFP_KERNEL
);
573 rx
= b
+ CMD_BUFFER_SIZE
;
577 /* prepare command header */
578 b
[0] = SYNC_BYTE_OUT
;
583 /* send ir request */
584 ret
= dvb_usb_generic_rw(d
, b
, 4, rx
, PCTV_ANSWER_LEN
, 0);
589 info("%s: read: %2d: %*ph: ", __func__
, ret
, 3, rx
);
590 for (i
= 0; (i
< rx
[3]) && ((i
+3) < PCTV_ANSWER_LEN
); i
++)
591 info(" %02x", rx
[i
+3]);
596 if ((rx
[3] == 9) && (rx
[12] & 0x01)) {
597 /* got a "press" event */
598 state
->last_rc_key
= RC_SCANCODE_RC5(rx
[7], rx
[6]);
600 info("%s: cmd=0x%02x sys=0x%02x\n",
601 __func__
, rx
[6], rx
[7]);
603 rc_keydown(d
->rc_dev
, RC_PROTO_RC5
, state
->last_rc_key
, 0);
604 } else if (state
->last_rc_key
) {
606 state
->last_rc_key
= 0;
613 static int pctv452e_read_mac_address(struct dvb_usb_device
*d
, u8 mac
[6])
615 const u8 mem_addr
[] = { 0x1f, 0xcc };
620 if (mutex_lock_interruptible(&d
->i2c_mutex
) < 0)
623 ret
= pctv452e_i2c_msg(d
, I2C_ADDR_24C16
,
624 mem_addr
+ 1, /* snd_len */ 1,
625 encoded_mac
, /* rcv_len */ 20);
626 if (-EREMOTEIO
== ret
)
627 /* Caution! A 24C16 interprets 0xA2 0x1F 0xCC as a
628 byte write if /WC is low. */
629 ret
= pctv452e_i2c_msg(d
, I2C_ADDR_24C64
,
633 mutex_unlock(&d
->i2c_mutex
);
638 ret
= ttpci_eeprom_decode_mac(mac
, encoded_mac
);
650 static const struct stb0899_s1_reg pctv452e_init_dev
[] = {
651 { STB0899_DISCNTRL1
, 0x26 },
652 { STB0899_DISCNTRL2
, 0x80 },
653 { STB0899_DISRX_ST0
, 0x04 },
654 { STB0899_DISRX_ST1
, 0x20 },
655 { STB0899_DISPARITY
, 0x00 },
656 { STB0899_DISFIFO
, 0x00 },
657 { STB0899_DISF22
, 0x99 },
658 { STB0899_DISF22RX
, 0x85 }, /* 0xa8 */
659 { STB0899_ACRPRESC
, 0x11 },
660 { STB0899_ACRDIV1
, 0x0a },
661 { STB0899_ACRDIV2
, 0x05 },
662 { STB0899_DACR1
, 0x00 },
663 { STB0899_DACR2
, 0x00 },
664 { STB0899_OUTCFG
, 0x00 },
665 { STB0899_MODECFG
, 0x00 }, /* Inversion */
666 { STB0899_IRQMSK_3
, 0xf3 },
667 { STB0899_IRQMSK_2
, 0xfc },
668 { STB0899_IRQMSK_1
, 0xff },
669 { STB0899_IRQMSK_0
, 0xff },
670 { STB0899_I2CCFG
, 0x88 },
671 { STB0899_I2CRPT
, 0x58 },
672 { STB0899_GPIO00CFG
, 0x82 },
673 { STB0899_GPIO01CFG
, 0x82 }, /* LED: 0x02 green, 0x82 orange */
674 { STB0899_GPIO02CFG
, 0x82 },
675 { STB0899_GPIO03CFG
, 0x82 },
676 { STB0899_GPIO04CFG
, 0x82 },
677 { STB0899_GPIO05CFG
, 0x82 },
678 { STB0899_GPIO06CFG
, 0x82 },
679 { STB0899_GPIO07CFG
, 0x82 },
680 { STB0899_GPIO08CFG
, 0x82 },
681 { STB0899_GPIO09CFG
, 0x82 },
682 { STB0899_GPIO10CFG
, 0x82 },
683 { STB0899_GPIO11CFG
, 0x82 },
684 { STB0899_GPIO12CFG
, 0x82 },
685 { STB0899_GPIO13CFG
, 0x82 },
686 { STB0899_GPIO14CFG
, 0x82 },
687 { STB0899_GPIO15CFG
, 0x82 },
688 { STB0899_GPIO16CFG
, 0x82 },
689 { STB0899_GPIO17CFG
, 0x82 },
690 { STB0899_GPIO18CFG
, 0x82 },
691 { STB0899_GPIO19CFG
, 0x82 },
692 { STB0899_GPIO20CFG
, 0x82 },
693 { STB0899_SDATCFG
, 0xb8 },
694 { STB0899_SCLTCFG
, 0xba },
695 { STB0899_AGCRFCFG
, 0x1c }, /* 0x11 DVB-S; 0x1c DVB-S2 (1c, rjkm) */
696 { STB0899_GPIO22
, 0x82 },
697 { STB0899_GPIO21
, 0x91 },
698 { STB0899_DIRCLKCFG
, 0x82 },
699 { STB0899_CLKOUT27CFG
, 0x7e },
700 { STB0899_STDBYCFG
, 0x82 },
701 { STB0899_CS0CFG
, 0x82 },
702 { STB0899_CS1CFG
, 0x82 },
703 { STB0899_DISEQCOCFG
, 0x20 },
704 { STB0899_NCOARSE
, 0x15 }, /* 0x15 27Mhz, F/3 198MHz, F/6 108MHz */
705 { STB0899_SYNTCTRL
, 0x00 }, /* 0x00 CLKI, 0x02 XTALI */
706 { STB0899_FILTCTRL
, 0x00 },
707 { STB0899_SYSCTRL
, 0x00 },
708 { STB0899_STOPCLK1
, 0x20 }, /* orig: 0x00 budget-ci: 0x20 */
709 { STB0899_STOPCLK2
, 0x00 },
710 { STB0899_INTBUFCTRL
, 0x0a },
711 { STB0899_AGC2I1
, 0x00 },
712 { STB0899_AGC2I2
, 0x00 },
713 { STB0899_AGCIQIN
, 0x00 },
714 { STB0899_TSTRES
, 0x40 }, /* rjkm */
718 static const struct stb0899_s1_reg pctv452e_init_s1_demod
[] = {
719 { STB0899_DEMOD
, 0x00 },
720 { STB0899_RCOMPC
, 0xc9 },
721 { STB0899_AGC1CN
, 0x01 },
722 { STB0899_AGC1REF
, 0x10 },
723 { STB0899_RTC
, 0x23 },
724 { STB0899_TMGCFG
, 0x4e },
725 { STB0899_AGC2REF
, 0x34 },
726 { STB0899_TLSR
, 0x84 },
727 { STB0899_CFD
, 0xf7 },
728 { STB0899_ACLC
, 0x87 },
729 { STB0899_BCLC
, 0x94 },
730 { STB0899_EQON
, 0x41 },
731 { STB0899_LDT
, 0xf1 },
732 { STB0899_LDT2
, 0xe3 },
733 { STB0899_EQUALREF
, 0xb4 },
734 { STB0899_TMGRAMP
, 0x10 },
735 { STB0899_TMGTHD
, 0x30 },
736 { STB0899_IDCCOMP
, 0xfd },
737 { STB0899_QDCCOMP
, 0xff },
738 { STB0899_POWERI
, 0x0c },
739 { STB0899_POWERQ
, 0x0f },
740 { STB0899_RCOMP
, 0x6c },
741 { STB0899_AGCIQIN
, 0x80 },
742 { STB0899_AGC2I1
, 0x06 },
743 { STB0899_AGC2I2
, 0x00 },
744 { STB0899_TLIR
, 0x30 },
745 { STB0899_RTF
, 0x7f },
746 { STB0899_DSTATUS
, 0x00 },
747 { STB0899_LDI
, 0xbc },
748 { STB0899_CFRM
, 0xea },
749 { STB0899_CFRL
, 0x31 },
750 { STB0899_NIRM
, 0x2b },
751 { STB0899_NIRL
, 0x80 },
752 { STB0899_ISYMB
, 0x1d },
753 { STB0899_QSYMB
, 0xa6 },
754 { STB0899_SFRH
, 0x2f },
755 { STB0899_SFRM
, 0x68 },
756 { STB0899_SFRL
, 0x40 },
757 { STB0899_SFRUPH
, 0x2f },
758 { STB0899_SFRUPM
, 0x68 },
759 { STB0899_SFRUPL
, 0x40 },
760 { STB0899_EQUAI1
, 0x02 },
761 { STB0899_EQUAQ1
, 0xff },
762 { STB0899_EQUAI2
, 0x04 },
763 { STB0899_EQUAQ2
, 0x05 },
764 { STB0899_EQUAI3
, 0x02 },
765 { STB0899_EQUAQ3
, 0xfd },
766 { STB0899_EQUAI4
, 0x03 },
767 { STB0899_EQUAQ4
, 0x07 },
768 { STB0899_EQUAI5
, 0x08 },
769 { STB0899_EQUAQ5
, 0xf5 },
770 { STB0899_DSTATUS2
, 0x00 },
771 { STB0899_VSTATUS
, 0x00 },
772 { STB0899_VERROR
, 0x86 },
773 { STB0899_IQSWAP
, 0x2a },
774 { STB0899_ECNT1M
, 0x00 },
775 { STB0899_ECNT1L
, 0x00 },
776 { STB0899_ECNT2M
, 0x00 },
777 { STB0899_ECNT2L
, 0x00 },
778 { STB0899_ECNT3M
, 0x0a },
779 { STB0899_ECNT3L
, 0xad },
780 { STB0899_FECAUTO1
, 0x06 },
781 { STB0899_FECM
, 0x01 },
782 { STB0899_VTH12
, 0xb0 },
783 { STB0899_VTH23
, 0x7a },
784 { STB0899_VTH34
, 0x58 },
785 { STB0899_VTH56
, 0x38 },
786 { STB0899_VTH67
, 0x34 },
787 { STB0899_VTH78
, 0x24 },
788 { STB0899_PRVIT
, 0xff },
789 { STB0899_VITSYNC
, 0x19 },
790 { STB0899_RSULC
, 0xb1 }, /* DVB = 0xb1, DSS = 0xa1 */
791 { STB0899_TSULC
, 0x42 },
792 { STB0899_RSLLC
, 0x41 },
793 { STB0899_TSLPL
, 0x12 },
794 { STB0899_TSCFGH
, 0x0c },
795 { STB0899_TSCFGM
, 0x00 },
796 { STB0899_TSCFGL
, 0x00 },
797 { STB0899_TSOUT
, 0x69 }, /* 0x0d for CAM */
798 { STB0899_RSSYNCDEL
, 0x00 },
799 { STB0899_TSINHDELH
, 0x02 },
800 { STB0899_TSINHDELM
, 0x00 },
801 { STB0899_TSINHDELL
, 0x00 },
802 { STB0899_TSLLSTKM
, 0x1b },
803 { STB0899_TSLLSTKL
, 0xb3 },
804 { STB0899_TSULSTKM
, 0x00 },
805 { STB0899_TSULSTKL
, 0x00 },
806 { STB0899_PCKLENUL
, 0xbc },
807 { STB0899_PCKLENLL
, 0xcc },
808 { STB0899_RSPCKLEN
, 0xbd },
809 { STB0899_TSSTATUS
, 0x90 },
810 { STB0899_ERRCTRL1
, 0xb6 },
811 { STB0899_ERRCTRL2
, 0x95 },
812 { STB0899_ERRCTRL3
, 0x8d },
813 { STB0899_DMONMSK1
, 0x27 },
814 { STB0899_DMONMSK0
, 0x03 },
815 { STB0899_DEMAPVIT
, 0x5c },
816 { STB0899_PLPARM
, 0x19 },
817 { STB0899_PDELCTRL
, 0x48 },
818 { STB0899_PDELCTRL2
, 0x00 },
819 { STB0899_BBHCTRL1
, 0x00 },
820 { STB0899_BBHCTRL2
, 0x00 },
821 { STB0899_HYSTTHRESH
, 0x77 },
822 { STB0899_MATCSTM
, 0x00 },
823 { STB0899_MATCSTL
, 0x00 },
824 { STB0899_UPLCSTM
, 0x00 },
825 { STB0899_UPLCSTL
, 0x00 },
826 { STB0899_DFLCSTM
, 0x00 },
827 { STB0899_DFLCSTL
, 0x00 },
828 { STB0899_SYNCCST
, 0x00 },
829 { STB0899_SYNCDCSTM
, 0x00 },
830 { STB0899_SYNCDCSTL
, 0x00 },
831 { STB0899_ISI_ENTRY
, 0x00 },
832 { STB0899_ISI_BIT_EN
, 0x00 },
833 { STB0899_MATSTRM
, 0xf0 },
834 { STB0899_MATSTRL
, 0x02 },
835 { STB0899_UPLSTRM
, 0x45 },
836 { STB0899_UPLSTRL
, 0x60 },
837 { STB0899_DFLSTRM
, 0xe3 },
838 { STB0899_DFLSTRL
, 0x00 },
839 { STB0899_SYNCSTR
, 0x47 },
840 { STB0899_SYNCDSTRM
, 0x05 },
841 { STB0899_SYNCDSTRL
, 0x18 },
842 { STB0899_CFGPDELSTATUS1
, 0x19 },
843 { STB0899_CFGPDELSTATUS2
, 0x2b },
844 { STB0899_BBFERRORM
, 0x00 },
845 { STB0899_BBFERRORL
, 0x01 },
846 { STB0899_UPKTERRORM
, 0x00 },
847 { STB0899_UPKTERRORL
, 0x00 },
851 static struct stb0899_config stb0899_config
= {
852 .init_dev
= pctv452e_init_dev
,
853 .init_s2_demod
= stb0899_s2_init_2
,
854 .init_s1_demod
= pctv452e_init_s1_demod
,
855 .init_s2_fec
= stb0899_s2_init_4
,
856 .init_tst
= stb0899_s1_init_5
,
858 .demod_address
= I2C_ADDR_STB0899
, /* I2C Address */
859 .block_sync_mode
= STB0899_SYNC_FORCED
, /* ? */
861 .xtal_freq
= 27000000, /* Assume Hz ? */
862 .inversion
= IQ_SWAP_ON
,
867 .ts_output_mode
= 0, /* Use parallel mode */
869 .data_clk_parity
= 0,
872 .esno_ave
= STB0899_DVBS2_ESNO_AVE
,
873 .esno_quant
= STB0899_DVBS2_ESNO_QUANT
,
874 .avframes_coarse
= STB0899_DVBS2_AVFRAMES_COARSE
,
875 .avframes_fine
= STB0899_DVBS2_AVFRAMES_FINE
,
876 .miss_threshold
= STB0899_DVBS2_MISS_THRESHOLD
,
877 .uwp_threshold_acq
= STB0899_DVBS2_UWP_THRESHOLD_ACQ
,
878 .uwp_threshold_track
= STB0899_DVBS2_UWP_THRESHOLD_TRACK
,
879 .uwp_threshold_sof
= STB0899_DVBS2_UWP_THRESHOLD_SOF
,
880 .sof_search_timeout
= STB0899_DVBS2_SOF_SEARCH_TIMEOUT
,
882 .btr_nco_bits
= STB0899_DVBS2_BTR_NCO_BITS
,
883 .btr_gain_shift_offset
= STB0899_DVBS2_BTR_GAIN_SHIFT_OFFSET
,
884 .crl_nco_bits
= STB0899_DVBS2_CRL_NCO_BITS
,
885 .ldpc_max_iter
= STB0899_DVBS2_LDPC_MAX_ITER
,
887 .tuner_get_frequency
= stb6100_get_frequency
,
888 .tuner_set_frequency
= stb6100_set_frequency
,
889 .tuner_set_bandwidth
= stb6100_set_bandwidth
,
890 .tuner_get_bandwidth
= stb6100_get_bandwidth
,
891 .tuner_set_rfsiggain
= NULL
,
893 /* helper for switching LED green/orange */
894 .postproc
= pctv45e_postproc
897 static struct stb6100_config stb6100_config
= {
898 .tuner_address
= I2C_ADDR_STB6100
,
903 static struct i2c_algorithm pctv452e_i2c_algo
= {
904 .master_xfer
= pctv452e_i2c_xfer
,
905 .functionality
= pctv452e_i2c_func
908 static int pctv452e_frontend_attach(struct dvb_usb_adapter
*a
)
910 struct usb_device_id
*id
;
912 a
->fe_adap
[0].fe
= dvb_attach(stb0899_attach
, &stb0899_config
,
914 if (!a
->fe_adap
[0].fe
)
918 * dvb_frontend will call dvb_detach for both stb0899_detach
919 * and stb0899_release but we only do dvb_attach(stb0899_attach).
920 * Increment the module refcount instead.
922 symbol_get(stb0899_attach
);
924 if ((dvb_attach(lnbp22_attach
, a
->fe_adap
[0].fe
,
925 &a
->dev
->i2c_adap
)) == NULL
)
926 err("Cannot attach lnbp22\n");
928 id
= a
->dev
->desc
->warm_ids
[0];
929 if (USB_VID_TECHNOTREND
== id
->idVendor
930 && USB_PID_TECHNOTREND_CONNECT_S2_3650_CI
== id
->idProduct
)
937 static int pctv452e_tuner_attach(struct dvb_usb_adapter
*a
)
939 if (!a
->fe_adap
[0].fe
)
941 if (dvb_attach(stb6100_attach
, a
->fe_adap
[0].fe
, &stb6100_config
,
942 &a
->dev
->i2c_adap
) == NULL
) {
943 err("%s failed\n", __func__
);
950 static struct usb_device_id pctv452e_usb_table
[] = {
951 {USB_DEVICE(USB_VID_PINNACLE
, USB_PID_PCTV_452E
)},
952 {USB_DEVICE(USB_VID_TECHNOTREND
, USB_PID_TECHNOTREND_CONNECT_S2_3600
)},
953 {USB_DEVICE(USB_VID_TECHNOTREND
,
954 USB_PID_TECHNOTREND_CONNECT_S2_3650_CI
)},
957 MODULE_DEVICE_TABLE(usb
, pctv452e_usb_table
);
959 static struct dvb_usb_device_properties pctv452e_properties
= {
960 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
, /* more ? */
961 .usb_ctrl
= DEVICE_SPECIFIC
,
963 .size_of_priv
= sizeof(struct pctv452e_state
),
965 .power_ctrl
= pctv452e_power_ctrl
,
968 .rc_codes
= RC_MAP_DIB0700_RC5_TABLE
,
969 .allowed_protos
= RC_PROTO_BIT_RC5
,
970 .rc_query
= pctv452e_rc_query
,
978 .frontend_attach
= pctv452e_frontend_attach
,
979 .tuner_attach
= pctv452e_tuner_attach
,
981 /* parameter for the MPEG2-data transfer */
997 .i2c_algo
= &pctv452e_i2c_algo
,
999 .generic_bulk_ctrl_endpoint
= 1, /* allow generice rw function */
1001 .num_device_descs
= 1,
1003 { .name
= "PCTV HDTV USB",
1004 .cold_ids
= { NULL
, NULL
}, /* this is a warm only device */
1005 .warm_ids
= { &pctv452e_usb_table
[0], NULL
}
1011 static struct dvb_usb_device_properties tt_connect_s2_3600_properties
= {
1012 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
, /* more ? */
1013 .usb_ctrl
= DEVICE_SPECIFIC
,
1015 .size_of_priv
= sizeof(struct pctv452e_state
),
1017 .power_ctrl
= pctv452e_power_ctrl
,
1018 .read_mac_address
= pctv452e_read_mac_address
,
1021 .rc_codes
= RC_MAP_TT_1500
,
1022 .allowed_protos
= RC_PROTO_BIT_RC5
,
1023 .rc_query
= pctv452e_rc_query
,
1031 .frontend_attach
= pctv452e_frontend_attach
,
1032 .tuner_attach
= pctv452e_tuner_attach
,
1034 /* parameter for the MPEG2-data transfer */
1051 .i2c_algo
= &pctv452e_i2c_algo
,
1053 .generic_bulk_ctrl_endpoint
= 1, /* allow generic rw function*/
1055 .num_device_descs
= 2,
1057 { .name
= "Technotrend TT Connect S2-3600",
1058 .cold_ids
= { NULL
, NULL
}, /* this is a warm only device */
1059 .warm_ids
= { &pctv452e_usb_table
[1], NULL
}
1061 { .name
= "Technotrend TT Connect S2-3650-CI",
1062 .cold_ids
= { NULL
, NULL
},
1063 .warm_ids
= { &pctv452e_usb_table
[2], NULL
}
1069 static void pctv452e_usb_disconnect(struct usb_interface
*intf
)
1071 struct dvb_usb_device
*d
= usb_get_intfdata(intf
);
1073 tt3650_ci_uninit(d
);
1074 dvb_usb_device_exit(intf
);
1077 static int pctv452e_usb_probe(struct usb_interface
*intf
,
1078 const struct usb_device_id
*id
)
1080 if (0 == dvb_usb_device_init(intf
, &pctv452e_properties
,
1081 THIS_MODULE
, NULL
, adapter_nr
) ||
1082 0 == dvb_usb_device_init(intf
, &tt_connect_s2_3600_properties
,
1083 THIS_MODULE
, NULL
, adapter_nr
))
1089 static struct usb_driver pctv452e_usb_driver
= {
1091 .probe
= pctv452e_usb_probe
,
1092 .disconnect
= pctv452e_usb_disconnect
,
1093 .id_table
= pctv452e_usb_table
,
1096 module_usb_driver(pctv452e_usb_driver
);
1098 MODULE_AUTHOR("Dominik Kuhlen <dkuhlen@gmx.net>");
1099 MODULE_AUTHOR("Andre Weidemann <Andre.Weidemann@web.de>");
1100 MODULE_AUTHOR("Michael H. Schimek <mschimek@gmx.at>");
1101 MODULE_DESCRIPTION("Pinnacle PCTV HDTV USB DVB / TT connect S2-3600 Driver");
1102 MODULE_LICENSE("GPL");