aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/common/tuners/tuner-xc2028.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2008-09-28 01:24:44 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-12 07:37:09 -0400
commit0975fc68719c75cbe14132c6f0dead57cd4d5210 (patch)
tree7dedb552fb9e2e8d874ca2b66cefe39406fd7737 /drivers/media/common/tuners/tuner-xc2028.h
parent767f3b3bf23244d52be0492df20b0eaf14f501c5 (diff)
V4L/DVB (9055): tuner-xc2028: Do a better job selecting firmware type
Firmware selection is very tricky on this device. This patch do a better selection of the proper firmware type, by using a code to hint if the firmware to be loaded should be D2620 or D2633. It also allows overriding the hint at the control structure. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/common/tuners/tuner-xc2028.h')
-rw-r--r--drivers/media/common/tuners/tuner-xc2028.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/media/common/tuners/tuner-xc2028.h b/drivers/media/common/tuners/tuner-xc2028.h
index 1af69f49f8e1..19de7928a74e 100644
--- a/drivers/media/common/tuners/tuner-xc2028.h
+++ b/drivers/media/common/tuners/tuner-xc2028.h
@@ -24,16 +24,22 @@
24#define XC3028_FE_ZARLINK456 4560 24#define XC3028_FE_ZARLINK456 4560
25#define XC3028_FE_CHINA 5200 25#define XC3028_FE_CHINA 5200
26 26
27enum firmware_type {
28 XC2028_AUTO = 0, /* By default, auto-detects */
29 XC2028_D2633,
30 XC2028_D2620,
31};
32
27struct xc2028_ctrl { 33struct xc2028_ctrl {
28 char *fname; 34 char *fname;
29 int max_len; 35 int max_len;
30 unsigned int scode_table; 36 unsigned int scode_table;
31 unsigned int mts :1; 37 unsigned int mts :1;
32 unsigned int d2633 :1;
33 unsigned int input1:1; 38 unsigned int input1:1;
34 unsigned int vhfbw7:1; 39 unsigned int vhfbw7:1;
35 unsigned int uhfbw8:1; 40 unsigned int uhfbw8:1;
36 unsigned int demod; 41 unsigned int demod;
42 enum firmware_type type:2;
37}; 43};
38 44
39struct xc2028_config { 45struct xc2028_config {