Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6
[pandora-kernel.git] / drivers / media / video / pvrusb2 / pvrusb2-i2c-core.h
1 /*
2  *
3  *  $Id$
4  *
5  *  Copyright (C) 2005 Mike Isely <isely@pobox.com>
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21 #ifndef __PVRUSB2_I2C_CORE_H
22 #define __PVRUSB2_I2C_CORE_H
23
24 #include <linux/list.h>
25 #include <linux/i2c.h>
26
27 struct pvr2_hdw;
28 struct pvr2_i2c_client;
29 struct pvr2_i2c_handler;
30 struct pvr2_i2c_handler_functions;
31 struct pvr2_i2c_op;
32 struct pvr2_i2c_op_functions;
33
34 struct pvr2_i2c_client {
35         struct i2c_client *client;
36         struct pvr2_i2c_handler *handler;
37         struct list_head list;
38         int detected_flag;
39         int recv_enable;
40         unsigned long pend_mask;
41         unsigned long ctl_mask;
42 };
43
44 struct pvr2_i2c_handler {
45         void *func_data;
46         const struct pvr2_i2c_handler_functions *func_table;
47 };
48
49 struct pvr2_i2c_handler_functions {
50         void (*detach)(void *);
51         int (*check)(void *);
52         void (*update)(void *);
53         unsigned int (*describe)(void *,char *,unsigned int);
54 };
55
56 struct pvr2_i2c_op {
57         int (*check)(struct pvr2_hdw *);
58         void (*update)(struct pvr2_hdw *);
59         const char *name;
60 };
61
62 void pvr2_i2c_core_init(struct pvr2_hdw *);
63 void pvr2_i2c_core_done(struct pvr2_hdw *);
64
65 int pvr2_i2c_client_cmd(struct pvr2_i2c_client *,unsigned int cmd,void *arg);
66 int pvr2_i2c_core_cmd(struct pvr2_hdw *,unsigned int cmd,void *arg);
67
68 int pvr2_i2c_core_check_stale(struct pvr2_hdw *);
69 void pvr2_i2c_core_sync(struct pvr2_hdw *);
70 unsigned int pvr2_i2c_report(struct pvr2_hdw *,char *buf,unsigned int maxlen);
71 #define PVR2_I2C_DETAIL_DEBUG   0x0001
72 #define PVR2_I2C_DETAIL_HANDLER 0x0002
73 #define PVR2_I2C_DETAIL_CTLMASK 0x0004
74 #define PVR2_I2C_DETAIL_ALL (\
75         PVR2_I2C_DETAIL_DEBUG |\
76         PVR2_I2C_DETAIL_HANDLER |\
77         PVR2_I2C_DETAIL_CTLMASK)
78 unsigned int pvr2_i2c_client_describe(struct pvr2_i2c_client *,
79                                       unsigned int detail_mask,
80                                       char *buf,unsigned int maxlen);
81
82 void pvr2_i2c_probe(struct pvr2_hdw *,struct pvr2_i2c_client *);
83 const struct pvr2_i2c_op *pvr2_i2c_get_op(unsigned int idx);
84
85 #endif /* __PVRUSB2_I2C_CORE_H */
86
87
88 /*
89   Stuff for Emacs to see, in order to encourage consistent editing style:
90   *** Local Variables: ***
91   *** mode: c ***
92   *** fill-column: 75 ***
93   *** tab-width: 8 ***
94   *** c-basic-offset: 8 ***
95   *** End: ***
96   */