blob: 7e61d4a17846b2442297859e394e31012621b5b1 [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#include "pvrusb2-audio.h"
24#include "pvrusb2-hdw-internal.h"
25#include "pvrusb2-debug.h"
26#include <linux/videodev2.h>
27#include <media/msp3400.h>
28#include <media/v4l2-common.h>
29
30struct pvr2_msp3400_handler {
31 struct pvr2_hdw *hdw;
32 struct pvr2_i2c_client *client;
33 struct pvr2_i2c_handler i2c_handler;
Mike Iselyd8554972006-06-26 20:58:46 -030034 unsigned long stale_mask;
35};
36
37
38/* This function selects the correct audio input source */
39static void set_stereo(struct pvr2_msp3400_handler *ctxt)
40{
41 struct pvr2_hdw *hdw = ctxt->hdw;
42 struct v4l2_routing route;
43
44 pvr2_trace(PVR2_TRACE_CHIPS,"i2c msp3400 v4l2 set_stereo");
45
46 if (hdw->input_val == PVR2_CVAL_INPUT_TV) {
47 struct v4l2_tuner vt;
48 memset(&vt,0,sizeof(vt));
49 vt.audmode = hdw->audiomode_val;
50 pvr2_i2c_client_cmd(ctxt->client,VIDIOC_S_TUNER,&vt);
51 }
52
53 route.input = MSP_INPUT_DEFAULT;
54 route.output = MSP_OUTPUT(MSP_SC_IN_DSP_SCART1);
55 switch (hdw->input_val) {
56 case PVR2_CVAL_INPUT_TV:
57 break;
58 case PVR2_CVAL_INPUT_RADIO:
59 /* Assume that msp34xx also handle FM decoding, in which case
60 we're still using the tuner. */
61 /* HV: actually it is more likely to be the SCART2 input if
62 the ivtv experience is any indication. */
63 route.input = MSP_INPUT(MSP_IN_SCART2, MSP_IN_TUNER1,
64 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
65 break;
66 case PVR2_CVAL_INPUT_SVIDEO:
67 case PVR2_CVAL_INPUT_COMPOSITE:
68 /* SCART 1 input */
69 route.input = MSP_INPUT(MSP_IN_SCART1, MSP_IN_TUNER1,
70 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
71 break;
72 }
73 pvr2_i2c_client_cmd(ctxt->client,VIDIOC_INT_S_AUDIO_ROUTING,&route);
74}
75
76
77static int check_stereo(struct pvr2_msp3400_handler *ctxt)
78{
79 struct pvr2_hdw *hdw = ctxt->hdw;
80 return (hdw->input_dirty ||
81 hdw->audiomode_dirty);
82}
83
84
85struct pvr2_msp3400_ops {
86 void (*update)(struct pvr2_msp3400_handler *);
87 int (*check)(struct pvr2_msp3400_handler *);
88};
89
90
91static const struct pvr2_msp3400_ops msp3400_ops[] = {
92 { .update = set_stereo, .check = check_stereo},
93};
94
95
96static int msp3400_check(struct pvr2_msp3400_handler *ctxt)
97{
98 unsigned long msk;
99 unsigned int idx;
100
101 for (idx = 0; idx < sizeof(msp3400_ops)/sizeof(msp3400_ops[0]);
102 idx++) {
103 msk = 1 << idx;
104 if (ctxt->stale_mask & msk) continue;
105 if (msp3400_ops[idx].check(ctxt)) {
106 ctxt->stale_mask |= msk;
107 }
108 }
109 return ctxt->stale_mask != 0;
110}
111
112
113static void msp3400_update(struct pvr2_msp3400_handler *ctxt)
114{
115 unsigned long msk;
116 unsigned int idx;
117
118 for (idx = 0; idx < sizeof(msp3400_ops)/sizeof(msp3400_ops[0]);
119 idx++) {
120 msk = 1 << idx;
121 if (!(ctxt->stale_mask & msk)) continue;
122 ctxt->stale_mask &= ~msk;
123 msp3400_ops[idx].update(ctxt);
124 }
125}
126
127
Mike Iselyd8554972006-06-26 20:58:46 -0300128static void pvr2_msp3400_detach(struct pvr2_msp3400_handler *ctxt)
129{
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300130 ctxt->client->handler = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -0300131 kfree(ctxt);
132}
133
134
135static unsigned int pvr2_msp3400_describe(struct pvr2_msp3400_handler *ctxt,
136 char *buf,unsigned int cnt)
137{
138 return scnprintf(buf,cnt,"handler: pvrusb2-audio v4l2");
139}
140
141
Tobias Klauserc5a69d52007-02-17 20:11:19 +0100142static const struct pvr2_i2c_handler_functions msp3400_funcs = {
Mike Iselyd8554972006-06-26 20:58:46 -0300143 .detach = (void (*)(void *))pvr2_msp3400_detach,
144 .check = (int (*)(void *))msp3400_check,
145 .update = (void (*)(void *))msp3400_update,
146 .describe = (unsigned int (*)(void *,char *,unsigned int))pvr2_msp3400_describe,
147};
148
149
150int pvr2_i2c_msp3400_setup(struct pvr2_hdw *hdw,struct pvr2_i2c_client *cp)
151{
152 struct pvr2_msp3400_handler *ctxt;
Mike Iselyd8554972006-06-26 20:58:46 -0300153 if (cp->handler) return 0;
154
Mike Iselyca545f72007-01-20 00:37:11 -0300155 ctxt = kzalloc(sizeof(*ctxt),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -0300156 if (!ctxt) return 0;
Mike Iselyd8554972006-06-26 20:58:46 -0300157
158 ctxt->i2c_handler.func_data = ctxt;
159 ctxt->i2c_handler.func_table = &msp3400_funcs;
160 ctxt->client = cp;
161 ctxt->hdw = hdw;
Mike Iselyd8554972006-06-26 20:58:46 -0300162 ctxt->stale_mask = (1 << (sizeof(msp3400_ops)/
163 sizeof(msp3400_ops[0]))) - 1;
164 cp->handler = &ctxt->i2c_handler;
Mike Iselyd8554972006-06-26 20:58:46 -0300165 pvr2_trace(PVR2_TRACE_CHIPS,"i2c 0x%x msp3400 V4L2 handler set up",
166 cp->client->addr);
167 return !0;
168}
169
170
171/*
172 Stuff for Emacs to see, in order to encourage consistent editing style:
173 *** Local Variables: ***
174 *** mode: c ***
175 *** fill-column: 70 ***
176 *** tab-width: 8 ***
177 *** c-basic-offset: 8 ***
178 *** End: ***
179 */