blob: 234adf7aa614e62ad5fc2e0f675bd48baeba32b9 [file] [log] [blame]
Mike Iselyd8554972006-06-26 20:58:46 -03001/*
2 *
3 * $Id$
4 *
5 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
6 * Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23/*
24
25 This source file is specifically designed to interface with the
26 wm8775.
27
28*/
29
30#include "pvrusb2-wm8775.h"
31#include "pvrusb2-i2c-cmd-v4l2.h"
32
33
34#include "pvrusb2-hdw-internal.h"
35#include "pvrusb2-debug.h"
36#include <linux/videodev2.h>
37#include <media/v4l2-common.h>
38#include <linux/errno.h>
39#include <linux/slab.h>
40
41struct pvr2_v4l_wm8775 {
42 struct pvr2_i2c_handler handler;
43 struct pvr2_i2c_client *client;
44 struct pvr2_hdw *hdw;
45 unsigned long stale_mask;
46};
47
48
49static void set_input(struct pvr2_v4l_wm8775 *ctxt)
50{
51 struct v4l2_routing route;
52 struct pvr2_hdw *hdw = ctxt->hdw;
Mike Iselyd8554972006-06-26 20:58:46 -030053
54 memset(&route,0,sizeof(route));
55
Mike Isely20832302006-12-27 23:26:55 -030056 switch(hdw->input_val) {
57 case PVR2_CVAL_INPUT_RADIO:
58 route.input = 1;
59 break;
60 default:
61 /* All other cases just use the second input */
62 route.input = 2;
63 break;
64 }
65 pvr2_trace(PVR2_TRACE_CHIPS,"i2c wm8775 set_input(val=%d route=0x%x)",
66 hdw->input_val,route.input);
Mike Iselyd8554972006-06-26 20:58:46 -030067
Mike Iselyd8554972006-06-26 20:58:46 -030068 pvr2_i2c_client_cmd(ctxt->client,VIDIOC_INT_S_AUDIO_ROUTING,&route);
69}
70
71static int check_input(struct pvr2_v4l_wm8775 *ctxt)
72{
73 struct pvr2_hdw *hdw = ctxt->hdw;
74 return hdw->input_dirty != 0;
75}
76
77
78struct pvr2_v4l_wm8775_ops {
79 void (*update)(struct pvr2_v4l_wm8775 *);
80 int (*check)(struct pvr2_v4l_wm8775 *);
81};
82
83
84static const struct pvr2_v4l_wm8775_ops wm8775_ops[] = {
85 { .update = set_input, .check = check_input},
86};
87
88
89static unsigned int wm8775_describe(struct pvr2_v4l_wm8775 *ctxt,
90 char *buf,unsigned int cnt)
91{
92 return scnprintf(buf,cnt,"handler: pvrusb2-wm8775");
93}
94
95
96static void wm8775_detach(struct pvr2_v4l_wm8775 *ctxt)
97{
Mike Iselya0fd1cb2006-06-30 11:35:28 -030098 ctxt->client->handler = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -030099 kfree(ctxt);
100}
101
102
103static int wm8775_check(struct pvr2_v4l_wm8775 *ctxt)
104{
105 unsigned long msk;
106 unsigned int idx;
107
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -0300108 for (idx = 0; idx < ARRAY_SIZE(wm8775_ops); idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -0300109 msk = 1 << idx;
110 if (ctxt->stale_mask & msk) continue;
111 if (wm8775_ops[idx].check(ctxt)) {
112 ctxt->stale_mask |= msk;
113 }
114 }
115 return ctxt->stale_mask != 0;
116}
117
118
119static void wm8775_update(struct pvr2_v4l_wm8775 *ctxt)
120{
121 unsigned long msk;
122 unsigned int idx;
123
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -0300124 for (idx = 0; idx < ARRAY_SIZE(wm8775_ops); idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -0300125 msk = 1 << idx;
126 if (!(ctxt->stale_mask & msk)) continue;
127 ctxt->stale_mask &= ~msk;
128 wm8775_ops[idx].update(ctxt);
129 }
130}
131
132
Tobias Klauserc5a69d52007-02-17 20:11:19 +0100133static const struct pvr2_i2c_handler_functions hfuncs = {
Mike Iselyd8554972006-06-26 20:58:46 -0300134 .detach = (void (*)(void *))wm8775_detach,
135 .check = (int (*)(void *))wm8775_check,
136 .update = (void (*)(void *))wm8775_update,
137 .describe = (unsigned int (*)(void *,char *,unsigned int))wm8775_describe,
138};
139
140
141int pvr2_i2c_wm8775_setup(struct pvr2_hdw *hdw,struct pvr2_i2c_client *cp)
142{
143 struct pvr2_v4l_wm8775 *ctxt;
144
145 if (cp->handler) return 0;
146
147 ctxt = kmalloc(sizeof(*ctxt),GFP_KERNEL);
148 if (!ctxt) return 0;
149 memset(ctxt,0,sizeof(*ctxt));
150
151 ctxt->handler.func_data = ctxt;
152 ctxt->handler.func_table = &hfuncs;
153 ctxt->client = cp;
154 ctxt->hdw = hdw;
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -0300155 ctxt->stale_mask = (1 << ARRAY_SIZE(wm8775_ops)) - 1;
Mike Iselyd8554972006-06-26 20:58:46 -0300156 cp->handler = &ctxt->handler;
157 pvr2_trace(PVR2_TRACE_CHIPS,"i2c 0x%x wm8775 V4L2 handler set up",
158 cp->client->addr);
159 return !0;
160}
161
162
163
164
165/*
166 Stuff for Emacs to see, in order to encourage consistent editing style:
167 *** Local Variables: ***
168 *** mode: c ***
169 *** fill-column: 70 ***
170 *** tab-width: 8 ***
171 *** c-basic-offset: 8 ***
172 *** End: ***
173 */