summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/cx23885/cx23885-dvb.c
diff options
context:
space:
mode:
authorSteven Toth <stoth@hauppauge.com>2007-08-22 20:01:20 -0400
committerSteven Toth <stoth@hauppauge.com>2007-08-22 20:01:20 -0400
commitd51e6775583dc69a5e4b9f566a571c36566a88d7 (patch)
tree669850e95e224959a0c5dc112900e871e0d91ee0 /linux/drivers/media/video/cx23885/cx23885-dvb.c
parent5818756e0a4b5b7a5c6c5c84dbce5dbe784fd8ae (diff)
downloadmediapointer-dvb-s2-d51e6775583dc69a5e4b9f566a571c36566a88d7.tar.gz
mediapointer-dvb-s2-d51e6775583dc69a5e4b9f566a571c36566a88d7.tar.bz2
cx23885: Added HVR1250 ATSC support.
From: Steven Toth <stoth@hauppauge.com> Adding support for the Hauppauge HVR1250 PCIe ATSC board. Signed-off-by: Steven Toth <stoth@hauppauge.com> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video/cx23885/cx23885-dvb.c')
-rw-r--r--linux/drivers/media/video/cx23885/cx23885-dvb.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx23885/cx23885-dvb.c b/linux/drivers/media/video/cx23885/cx23885-dvb.c
index e23c80082..a4dd46da8 100644
--- a/linux/drivers/media/video/cx23885/cx23885-dvb.c
+++ b/linux/drivers/media/video/cx23885/cx23885-dvb.c
@@ -98,6 +98,16 @@ static struct s5h1409_config hauppauge_hvr1800_config = {
.status_mode = S5H1409_DEMODLOCKING
};
+static struct s5h1409_config hauppauge_hvr1250_config = {
+ .demod_address = 0x32 >> 1,
+ .output_mode = S5H1409_SERIAL_OUTPUT,
+ .gpio = S5H1409_GPIO_ON,
+ .if_freq = 44000,
+ .inversion = S5H1409_INVERSION_OFF,
+ .status_mode = S5H1409_DEMODLOCKING
+};
+
+
#if 0
/* FIXME: For older pre production samples */
static struct mt2131_config hauppauge_hvr1800lp_rev1_tunerconfig = {
@@ -113,6 +123,10 @@ static struct mt2131_config hauppauge_hvr1800_tunerconfig = {
0x61
};
+static struct mt2131_config hauppauge_hvr1250_tunerconfig = {
+ 0x61
+};
+
static int dvb_register(struct cx23885_tsport *port)
{
struct cx23885_dev *dev = port->dev;
@@ -122,6 +136,16 @@ static int dvb_register(struct cx23885_tsport *port)
/* init frontend */
switch (dev->board) {
+ case CX23885_BOARD_HAUPPAUGE_HVR1250:
+ port->dvb.frontend = dvb_attach(s5h1409_attach,
+ &hauppauge_hvr1250_config,
+ &dev->i2c_bus[0].i2c_adap);
+ if (port->dvb.frontend != NULL) {
+ dvb_attach(mt2131_attach, port->dvb.frontend,
+ &dev->i2c_bus[0].i2c_adap,
+ &hauppauge_hvr1250_tunerconfig, 0);
+ }
+ break;
case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
port->dvb.frontend = dvb_attach(s5h1409_attach,
&hauppauge_hvr1800lp_config,