diff mbox

Add support for ProVideo PV-183 to bttv

Message ID 20090313114649.e774c9be.alan.mcivor@reveal.co.nz (mailing list archive)
State RFC
Headers show

Commit Message

Alan McIvor March 12, 2009, 10:46 p.m. UTC
This patch adds support for the ProVideo PV-183 card to the bttv
device driver. The PV-183 is a PCI card with 8 BT878 devices plus a Hint
Corp HiNT HB4 PCI-PCI Bridge. Each BT878 has two composite input channels
available. There are no tuners on this card.

This patch was generated against the V4L-DVB mercurial tree as of 12
March 2009.

Signed-off-by: Alan McIvor <alan.mcivor@reveal.co.nz>

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Trent Piepho March 13, 2009, 12:13 a.m. UTC | #1
On Fri, 13 Mar 2009, Alan McIvor wrote:
> +
> +        { 0x15401830, BTTV_BOARD_PV183,         "Provideo PV183-1" },
> +        { 0x15401831, BTTV_BOARD_PV183,         "Provideo PV183-2" },
> +        { 0x15401832, BTTV_BOARD_PV183,         "Provideo PV183-3" },
> +        { 0x15401833, BTTV_BOARD_PV183,         "Provideo PV183-4" },
> +        { 0x15401834, BTTV_BOARD_PV183,         "Provideo PV183-5" },
> +        { 0x15401835, BTTV_BOARD_PV183,         "Provideo PV183-6" },
> +        { 0x15401836, BTTV_BOARD_PV183,         "Provideo PV183-7" },
> +        { 0x15401837, BTTV_BOARD_PV183,         "Provideo PV183-8" },
> +
>  	{ 0, -1, NULL }
>  };

Looks like you used spaces here instead of tabs.  If you run make commit
from the v4l-dvb tree it will fix these things.
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

--- linux/drivers/media/video/bt8xx/bttv.h.orig	2009-03-13 10:12:09.000000000 +1300
+++ linux/drivers/media/video/bt8xx/bttv.h	2009-03-13 10:18:46.000000000 +1300
@@ -184,6 +184,7 @@ 
 #define BTTV_BOARD_IVCE8784		   0x9c
 #define BTTV_BOARD_GEOVISION_GV800S	   0x9d
 #define BTTV_BOARD_GEOVISION_GV800S_SL	   0x9e
+#define BTTV_BOARD_PV183                   0x9f
 
 
 /* more card-specific defines */
--- linux/drivers/media/video/bt8xx/bttv-cards.c.orig	2009-03-13 10:12:19.000000000 +1300
+++ linux/drivers/media/video/bt8xx/bttv-cards.c	2009-03-13 10:24:28.000000000 +1300
@@ -321,6 +321,16 @@  static struct CARD {
 	{ 0x763d800b, BTTV_BOARD_GEOVISION_GV800S_SL,	"GeoVision GV-800(S) (slave)" },
 	{ 0x763d800c, BTTV_BOARD_GEOVISION_GV800S_SL,	"GeoVision GV-800(S) (slave)" },
 	{ 0x763d800d, BTTV_BOARD_GEOVISION_GV800S_SL,	"GeoVision GV-800(S) (slave)" },
+
+        { 0x15401830, BTTV_BOARD_PV183,         "Provideo PV183-1" },
+        { 0x15401831, BTTV_BOARD_PV183,         "Provideo PV183-2" },
+        { 0x15401832, BTTV_BOARD_PV183,         "Provideo PV183-3" },
+        { 0x15401833, BTTV_BOARD_PV183,         "Provideo PV183-4" },
+        { 0x15401834, BTTV_BOARD_PV183,         "Provideo PV183-5" },
+        { 0x15401835, BTTV_BOARD_PV183,         "Provideo PV183-6" },
+        { 0x15401836, BTTV_BOARD_PV183,         "Provideo PV183-7" },
+        { 0x15401837, BTTV_BOARD_PV183,         "Provideo PV183-8" },
+	
 	{ 0, -1, NULL }
 };
 
@@ -2910,6 +2920,20 @@  struct tvcard bttv_tvcards[] = {
 		.no_tda9875	= 1,
 		.muxsel_hook    = gv800s_muxsel,
 	},
+	[BTTV_BOARD_PV183] = {
+		.name           = "ProVideo PV183", /* 0x9f */
+		.video_inputs   = 2,
+		/* .audio_inputs= 0, */
+		.svhs           = NO_SVHS,
+		.gpiomask       = 0,
+		.muxsel         = MUXSEL(2, 3),
+		.gpiomux        = { 0 },
+		.needs_tvaudio  = 0,
+		.no_msp34xx     = 1,
+		.pll            = PLL_28,
+		.tuner_type     = TUNER_ABSENT,
+		.tuner_addr	= ADDR_UNSET,
+	},
 };
 
 static const unsigned int bttv_num_tvcards = ARRAY_SIZE(bttv_tvcards);