Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30042
b: refs/heads/master
c: 4e7024b
h: refs/heads/master
v: v3
  • Loading branch information
Manu Abraham authored and Mauro Carvalho Chehab committed Jun 25, 2006
1 parent 2c33285 commit 56b960e
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1da5e8d3cf561508ddbc62283e65dc079d750550
refs/heads/master: 4e7024bd3278f14fdc435e6ff11c37cee752de99
108 changes: 98 additions & 10 deletions trunk/drivers/media/dvb/bt8xx/dst.c
Original file line number Diff line number Diff line change
Expand Up @@ -590,28 +590,116 @@ static int dst_type_print(u8 type)

struct tuner_types tuner_list[] = {
{
.tuner_type = 2,
.tuner_type = TUNER_TYPE_L64724,
.tuner_name = "L 64724",
.board_name = " "
.board_name = "UNKNOWN",
.fw_name = "UNKNOWN"
},

{
.tuner_type = 4,
.tuner_type = TUNER_TYPE_STV0299,
.tuner_name = "STV 0299",
.board_name = "VP1030"
.board_name = "VP1020",
.fw_name = "DST-MOT"
},

{
.tuner_type = 8,
.tuner_type = TUNER_TYPE_STV0299,
.tuner_name = "STV 0299",
.board_name = "VP1020",
.fw_name = "DST-03T"
},

{
.tuner_type = TUNER_TYPE_MB86A15,
.tuner_name = "MB 86A15",
.board_name = "VP1025"
.board_name = "VP1022",
.fw_name = "DST-03T"
},

{
.tuner_type = 16,
.tuner_name = "NXT 200x",
.board_name = "VP3250"
}
.tuner_type = TUNER_TYPE_MB86A15,
.tuner_name = "MB 86A15",
.board_name = "VP1025",
.fw_name = "DST-03T"
},

{
.tuner_type = TUNER_TYPE_STV0299,
.tuner_name = "STV 0299",
.board_name = "VP1030",
.fw_name = "DST-CI"
},

{
.tuner_type = TUNER_TYPE_STV0299,
.tuner_name = "STV 0299",
.board_name = "VP1030",
.fw_name = "DSTMCI"
},

{
.tuner_type = TUNER_TYPE_UNKNOWN,
.tuner_name = "UNKNOWN",
.board_name = "VP2030",
.fw_name = "DCT-CI"
},

{
.tuner_type = TUNER_TYPE_UNKNOWN,
.tuner_name = "UNKNOWN",
.board_name = "VP2031",
.fw_name = "DCT-CI"
},

{
.tuner_type = TUNER_TYPE_UNKNOWN,
.tuner_name = "UNKNOWN",
.board_name = "VP2040",
.fw_name = "DCT-CI"
},

{
.tuner_type = TUNER_TYPE_UNKNOWN,
.tuner_name = "UNKNOWN",
.board_name = "VP3020",
.fw_name = "DTTFTA"
},

{
.tuner_type = TUNER_TYPE_UNKNOWN,
.tuner_name = "UNKNOWN",
.board_name = "VP3021",
.fw_name = "DTTFTA"
},

{
.tuner_type = TUNER_TYPE_TDA10046,
.tuner_name = "TDA10046",
.board_name = "VP3040",
.fw_name = "DTT-CI"
},

{
.tuner_type = TUNER_TYPE_UNKNOWN,
.tuner_name = "UNKNOWN",
.board_name = "VP3051",
.fw_name = "DTTNXT"
},

{
.tuner_type = TUNER_TYPE_NXT200x,
.tuner_name = "NXT200x",
.board_name = "VP3220",
.fw_name = "ATSCDI"
},

{
.tuner_type = TUNER_TYPE_NXT200x,
.tuner_name = "NXT200x",
.board_name = "VP3250",
.fw_name = "ATSCAD"
},
};

/*
Expand Down
14 changes: 9 additions & 5 deletions trunk/drivers/media/dvb/bt8xx/dst_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,17 @@
#define DST_TYPE_HAS_SESSION 128

#define TUNER_TYPE_MULTI 1

#define TUNER_TYPE_UNKNOWN 2
/* DVB-S */
#define TUNER_TYPE_L64724 2
#define TUNER_TYPE_STV0299 4
#define TUNER_TYPE_MB86A15 8
#define TUNER_TYPE_L64724 4
#define TUNER_TYPE_STV0299 8
#define TUNER_TYPE_MB86A15 16

/* DVB-T */
#define TUNER_TYPE_TDA10046 32

/* ATSC */
#define TUNER_TYPE_NXT200x 16
#define TUNER_TYPE_NXT200x 64


#define RDC_8820_PIO_0_DISABLE 0
Expand Down Expand Up @@ -140,6 +143,7 @@ struct tuner_types {
u32 tuner_type;
char *tuner_name;
char *board_name;
char *fw_name;
};

struct dst_types {
Expand Down

0 comments on commit 56b960e

Please sign in to comment.