diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-18 19:10:07 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:00:54 -0500 |
commit | 0e1165e8d05ef4a530001ea4ac5ff0df78129dd2 (patch) | |
tree | c018261ded3131c6e4cd0957d5434110efa6dd68 /drivers/media/video/tea5767.h | |
parent | 7f1711234e6a21c153e892758d9d82c333ab37ac (diff) |
V4L/DVB (6385): Adds the capability of configuring tea5767 support
tea5767 has several possible configurations. Before the patch, the
driver were assuming the more common configuration. However, some newer
cards, like MSI @nyware Master requires other configurations, like
de-activating a gpio port and changing chip Xtal.
This patch adds the capability of altering device configuration at
runtime. This may also be used later to activate some features like
auto-mute when signal is weak.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tea5767.h')
-rw-r--r-- | drivers/media/video/tea5767.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/media/video/tea5767.h b/drivers/media/video/tea5767.h index 5d78281adcc2..a44451f61145 100644 --- a/drivers/media/video/tea5767.h +++ b/drivers/media/video/tea5767.h | |||
@@ -20,6 +20,25 @@ | |||
20 | #include <linux/i2c.h> | 20 | #include <linux/i2c.h> |
21 | #include "dvb_frontend.h" | 21 | #include "dvb_frontend.h" |
22 | 22 | ||
23 | enum tea5767_xtal { | ||
24 | TEA5767_LOW_LO_32768 = 0, | ||
25 | TEA5767_HIGH_LO_32768 = 1, | ||
26 | TEA5767_LOW_LO_13MHz = 2, | ||
27 | TEA5767_HIGH_LO_13MHz = 3, | ||
28 | }; | ||
29 | |||
30 | struct tea5767_ctrl { | ||
31 | unsigned int port1:1; | ||
32 | unsigned int port2:1; | ||
33 | unsigned int high_cut:1; | ||
34 | unsigned int st_noise:1; | ||
35 | unsigned int soft_mute:1; | ||
36 | unsigned int japan_band:1; | ||
37 | unsigned int deemph_75:1; | ||
38 | unsigned int pllref:1; | ||
39 | enum tea5767_xtal xtal_freq; | ||
40 | }; | ||
41 | |||
23 | #if defined(CONFIG_TUNER_TEA5767) || (defined(CONFIG_TUNER_TEA5767_MODULE) && defined(MODULE)) | 42 | #if defined(CONFIG_TUNER_TEA5767) || (defined(CONFIG_TUNER_TEA5767_MODULE) && defined(MODULE)) |
24 | extern int tea5767_autodetection(struct i2c_adapter* i2c_adap, u8 i2c_addr); | 43 | extern int tea5767_autodetection(struct i2c_adapter* i2c_adap, u8 i2c_addr); |
25 | 44 | ||