aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorHartmut Hackmann <hartmut.hackmann@t-online.de>2007-04-27 12:31:12 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-04-27 15:43:31 -0300
commitde956c1e0f89413a3837b642d592e2dff3e3eb78 (patch)
tree71f803d3854d497e63dbe728695250b16c0e0b18 /include/media
parentV4L/DVB (5312): Saa713x: added a GPIO handler function (diff)
downloadlinux-dev-de956c1e0f89413a3837b642d592e2dff3e3eb78.tar.xz
linux-dev-de956c1e0f89413a3837b642d592e2dff3e3eb78.zip
V4L/DVB (5313): Added a config entry and a gpio function pointer to tuner struct
These entries mainly are to support configurations of the tda827x silicon tuner with a preamplifier. The values can be set throgh the attach inform or through the extended TUNER_SET_TYPE_ADDR client call. The function pointer will only be updated if the parameter is not NULL. Since a typecast is necessary to set the pointer, i added a typedef for this pointer (tuner_gpio_func_t) in tuner.h Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t-online.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'include/media')
-rw-r--r--include/media/tuner.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/media/tuner.h b/include/media/tuner.h
index 99acf847365c..fe567129b22b 100644
--- a/include/media/tuner.h
+++ b/include/media/tuner.h
@@ -173,10 +173,15 @@ enum tuner_mode {
when the tuner is set to TV mode.
*/
+/* allows to access the GPIOs of the host (pci bridge) */
+typedef void (*tuner_gpio_func_t) (void *dev, int bit_no,int value);
+
struct tuner_setup {
unsigned short addr; /* I2C address */
unsigned int type; /* Tuner type */
unsigned int mode_mask; /* Allowed tuner modes */
+ unsigned int config; /* configuraion for more complex tuners */
+ tuner_gpio_func_t gpio_func;
};
struct tuner {
@@ -210,6 +215,8 @@ struct tuner {
unsigned char tda827x_addr;
unsigned char tda827x_ver;
unsigned int sgIF;
+ unsigned int config;
+ tuner_gpio_func_t gpio_func;
/* function ptrs */
void (*set_tv_freq)(struct i2c_client *c, unsigned int freq);