|
@@ -210,6 +210,10 @@ struct cx23885_board cx23885_boards[] = {
|
|
|
.portb = CX23885_MPEG_ENCODER,
|
|
|
.portc = CX23885_MPEG_DVB,
|
|
|
},
|
|
|
+ [CX23885_BOARD_COMPRO_VIDEOMATE_E800] = {
|
|
|
+ .name = "Compro VideoMate E800",
|
|
|
+ .portc = CX23885_MPEG_DVB,
|
|
|
+ },
|
|
|
};
|
|
|
const unsigned int cx23885_bcount = ARRAY_SIZE(cx23885_boards);
|
|
|
|
|
@@ -341,6 +345,10 @@ struct cx23885_subid cx23885_subids[] = {
|
|
|
.subvendor = 0x0070,
|
|
|
.subdevice = 0x8541,
|
|
|
.card = CX23885_BOARD_HAUPPAUGE_HVR1850,
|
|
|
+ }, {
|
|
|
+ .subvendor = 0x1858,
|
|
|
+ .subdevice = 0xe800,
|
|
|
+ .card = CX23885_BOARD_COMPRO_VIDEOMATE_E800,
|
|
|
},
|
|
|
};
|
|
|
const unsigned int cx23885_idcount = ARRAY_SIZE(cx23885_subids);
|
|
@@ -536,6 +544,7 @@ int cx23885_tuner_callback(void *priv, int component, int command, int arg)
|
|
|
case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
|
|
|
case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
|
|
|
case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
|
|
|
+ case CX23885_BOARD_COMPRO_VIDEOMATE_E800:
|
|
|
/* Tuner Reset Command */
|
|
|
bitmask = 0x04;
|
|
|
break;
|
|
@@ -687,6 +696,7 @@ void cx23885_gpio_setup(struct cx23885_dev *dev)
|
|
|
break;
|
|
|
case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
|
|
|
case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
|
|
|
+ case CX23885_BOARD_COMPRO_VIDEOMATE_E800:
|
|
|
/* GPIO-2 xc3028 tuner reset */
|
|
|
|
|
|
/* The following GPIO's are on the internal AVCore (cx25840) */
|
|
@@ -911,6 +921,7 @@ void cx23885_card_setup(struct cx23885_dev *dev)
|
|
|
case CX23885_BOARD_HAUPPAUGE_HVR1255:
|
|
|
case CX23885_BOARD_HAUPPAUGE_HVR1210:
|
|
|
case CX23885_BOARD_HAUPPAUGE_HVR1850:
|
|
|
+ case CX23885_BOARD_COMPRO_VIDEOMATE_E800:
|
|
|
default:
|
|
|
ts2->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
|
|
|
ts2->ts_clk_en_val = 0x1; /* Enable TS_CLK */
|
|
@@ -927,6 +938,7 @@ void cx23885_card_setup(struct cx23885_dev *dev)
|
|
|
case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
|
|
|
case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
|
|
|
case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
|
|
|
+ case CX23885_BOARD_COMPRO_VIDEOMATE_E800:
|
|
|
dev->sd_cx25840 = v4l2_i2c_new_subdev(&dev->v4l2_dev,
|
|
|
&dev->i2c_bus[2].i2c_adap,
|
|
|
"cx25840", "cx25840", 0x88 >> 1, NULL);
|