Merge git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb
[pandora-kernel.git] / drivers / media / video / cx18 / cx18-audio.c
1 /*
2  *  cx18 audio-related functions
3  *
4  *  Derived from ivtv-audio.c
5  *
6  *  Copyright (C) 2007  Hans Verkuil <hverkuil@xs4all.nl>
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, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21  *  02111-1307  USA
22  */
23
24 #include "cx18-driver.h"
25 #include "cx18-i2c.h"
26 #include "cx18-cards.h"
27 #include "cx18-audio.h"
28
29 #define CX18_AUDIO_ENABLE 0xc72014
30
31 /* Selects the audio input and output according to the current
32    settings. */
33 int cx18_audio_set_io(struct cx18 *cx)
34 {
35         struct v4l2_routing route;
36         u32 audio_input;
37         u32 val;
38         int mux_input;
39         int err;
40
41         /* Determine which input to use */
42         if (test_bit(CX18_F_I_RADIO_USER, &cx->i_flags)) {
43                 audio_input = cx->card->radio_input.audio_input;
44                 mux_input = cx->card->radio_input.muxer_input;
45         } else {
46                 audio_input =
47                         cx->card->audio_inputs[cx->audio_input].audio_input;
48                 mux_input =
49                         cx->card->audio_inputs[cx->audio_input].muxer_input;
50         }
51
52         /* handle muxer chips */
53         route.input = mux_input;
54         route.output = 0;
55         cx18_i2c_hw(cx, cx->card->hw_muxer, VIDIOC_INT_S_AUDIO_ROUTING, &route);
56
57         route.input = audio_input;
58         err = cx18_i2c_hw(cx, cx->card->hw_audio_ctrl,
59                         VIDIOC_INT_S_AUDIO_ROUTING, &route);
60         if (err)
61                 return err;
62
63         val = read_reg(CX18_AUDIO_ENABLE) & ~0x30;
64         val |= (audio_input > CX18_AV_AUDIO_SERIAL2) ? 0x20 :
65                                         (audio_input << 4);
66         write_reg(val | 0xb00, CX18_AUDIO_ENABLE);
67         cx18_vapi(cx, CX18_APU_RESETAI, 1, 0);
68         return 0;
69 }
70
71 void cx18_audio_set_route(struct cx18 *cx, struct v4l2_routing *route)
72 {
73         cx18_i2c_hw(cx, cx->card->hw_audio_ctrl,
74                         VIDIOC_INT_S_AUDIO_ROUTING, route);
75 }
76
77 void cx18_audio_set_audio_clock_freq(struct cx18 *cx, u8 freq)
78 {
79         static u32 freqs[3] = { 44100, 48000, 32000 };
80
81         /* The audio clock of the digitizer must match the codec sample
82            rate otherwise you get some very strange effects. */
83         if (freq > 2)
84                 return;
85         cx18_call_i2c_clients(cx, VIDIOC_INT_AUDIO_CLOCK_FREQ, &freqs[freq]);
86 }