blob: a4540e858f213883fa5cfe8d40b3fdbc46e4611b [file] [log] [blame]
Hans Verkuilbd985162005-11-13 16:07:56 -08001/* cx25840 audio functions
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License
5 * as published by the Free Software Foundation; either version 2
6 * of the License, or (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 */
17
18
19#include <linux/videodev2.h>
20#include <linux/i2c.h>
Hans Verkuilbd985162005-11-13 16:07:56 -080021#include <media/v4l2-common.h>
22
23#include "cx25840.h"
24
Hans Verkuil3578d3d2006-01-09 15:25:41 -020025static int set_audclk_freq(struct i2c_client *client, u32 freq)
Hans Verkuilbd985162005-11-13 16:07:56 -080026{
27 struct cx25840_state *state = i2c_get_clientdata(client);
28
Hans Verkuil3578d3d2006-01-09 15:25:41 -020029 if (freq != 32000 && freq != 44100 && freq != 48000)
30 return -EINVAL;
31
Hans Verkuilbd985162005-11-13 16:07:56 -080032 /* assert soft reset */
33 cx25840_and_or(client, 0x810, ~0x1, 0x01);
34
35 /* common for all inputs and rates */
36 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x10 */
37 cx25840_write(client, 0x127, 0x50);
38
Hans Verkuila8bbf122006-01-09 15:25:42 -020039 if (state->aud_input != CX25840_AUDIO_SERIAL) {
Hans Verkuilbd985162005-11-13 16:07:56 -080040 switch (freq) {
Hans Verkuil3578d3d2006-01-09 15:25:41 -020041 case 32000:
Hans Verkuilbd985162005-11-13 16:07:56 -080042 /* VID_PLL and AUX_PLL */
43 cx25840_write4(client, 0x108, 0x0f040610);
44
45 /* AUX_PLL_FRAC */
46 cx25840_write4(client, 0x110, 0xee39bb01);
47
48 /* src3/4/6_ctl = 0x0801f77f */
49 cx25840_write4(client, 0x900, 0x7ff70108);
50 cx25840_write4(client, 0x904, 0x7ff70108);
51 cx25840_write4(client, 0x90c, 0x7ff70108);
52 break;
53
Hans Verkuil3578d3d2006-01-09 15:25:41 -020054 case 44100:
Hans Verkuilbd985162005-11-13 16:07:56 -080055 /* VID_PLL and AUX_PLL */
56 cx25840_write4(client, 0x108, 0x0f040910);
57
58 /* AUX_PLL_FRAC */
59 cx25840_write4(client, 0x110, 0xd66bec00);
60
61 /* src3/4/6_ctl = 0x08016d59 */
62 cx25840_write4(client, 0x900, 0x596d0108);
63 cx25840_write4(client, 0x904, 0x596d0108);
64 cx25840_write4(client, 0x90c, 0x596d0108);
65 break;
66
Hans Verkuil3578d3d2006-01-09 15:25:41 -020067 case 48000:
Hans Verkuilbd985162005-11-13 16:07:56 -080068 /* VID_PLL and AUX_PLL */
69 cx25840_write4(client, 0x108, 0x0f040a10);
70
71 /* AUX_PLL_FRAC */
72 cx25840_write4(client, 0x110, 0xe5d69800);
73
74 /* src3/4/6_ctl = 0x08014faa */
75 cx25840_write4(client, 0x900, 0xaa4f0108);
76 cx25840_write4(client, 0x904, 0xaa4f0108);
77 cx25840_write4(client, 0x90c, 0xaa4f0108);
78 break;
79 }
Hans Verkuila8bbf122006-01-09 15:25:42 -020080 } else {
Hans Verkuilbd985162005-11-13 16:07:56 -080081 switch (freq) {
Hans Verkuil3578d3d2006-01-09 15:25:41 -020082 case 32000:
Hans Verkuilbd985162005-11-13 16:07:56 -080083 /* VID_PLL and AUX_PLL */
84 cx25840_write4(client, 0x108, 0x0f04081e);
85
86 /* AUX_PLL_FRAC */
87 cx25840_write4(client, 0x110, 0x69082a01);
88
89 /* src1_ctl = 0x08010000 */
90 cx25840_write4(client, 0x8f8, 0x00000108);
91
92 /* src3/4/6_ctl = 0x08020000 */
93 cx25840_write4(client, 0x900, 0x00000208);
94 cx25840_write4(client, 0x904, 0x00000208);
95 cx25840_write4(client, 0x90c, 0x00000208);
96
97 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x14 */
98 cx25840_write(client, 0x127, 0x54);
99 break;
100
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200101 case 44100:
Hans Verkuilbd985162005-11-13 16:07:56 -0800102 /* VID_PLL and AUX_PLL */
103 cx25840_write4(client, 0x108, 0x0f040918);
104
105 /* AUX_PLL_FRAC */
106 cx25840_write4(client, 0x110, 0xd66bec00);
107
108 /* src1_ctl = 0x08010000 */
109 cx25840_write4(client, 0x8f8, 0xcd600108);
110
111 /* src3/4/6_ctl = 0x08020000 */
112 cx25840_write4(client, 0x900, 0x85730108);
113 cx25840_write4(client, 0x904, 0x85730108);
114 cx25840_write4(client, 0x90c, 0x85730108);
115 break;
116
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200117 case 48000:
Hans Verkuilbd985162005-11-13 16:07:56 -0800118 /* VID_PLL and AUX_PLL */
119 cx25840_write4(client, 0x108, 0x0f040a18);
120
121 /* AUX_PLL_FRAC */
122 cx25840_write4(client, 0x110, 0xe5d69800);
123
124 /* src1_ctl = 0x08010000 */
125 cx25840_write4(client, 0x8f8, 0x00800108);
126
127 /* src3/4/6_ctl = 0x08020000 */
128 cx25840_write4(client, 0x900, 0x55550108);
129 cx25840_write4(client, 0x904, 0x55550108);
130 cx25840_write4(client, 0x90c, 0x55550108);
131 break;
132 }
Hans Verkuilbd985162005-11-13 16:07:56 -0800133 }
134
135 /* deassert soft reset */
136 cx25840_and_or(client, 0x810, ~0x1, 0x00);
137
138 state->audclk_freq = freq;
139
140 return 0;
141}
142
Hans Verkuila8bbf122006-01-09 15:25:42 -0200143void cx25840_audio_set_path(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800144{
145 struct cx25840_state *state = i2c_get_clientdata(client);
146
Hans Verkuilbd985162005-11-13 16:07:56 -0800147 /* stop microcontroller */
148 cx25840_and_or(client, 0x803, ~0x10, 0);
149
150 /* Mute everything to prevent the PFFT! */
151 cx25840_write(client, 0x8d3, 0x1f);
152
Hans Verkuila8bbf122006-01-09 15:25:42 -0200153 if (state->aud_input == CX25840_AUDIO_SERIAL) {
Hans Verkuilbd985162005-11-13 16:07:56 -0800154 /* Set Path1 to Serial Audio Input */
155 cx25840_write4(client, 0x8d0, 0x12100101);
156
157 /* The microcontroller should not be started for the
158 * non-tuner inputs: autodetection is specific for
159 * TV audio. */
Hans Verkuila8bbf122006-01-09 15:25:42 -0200160 } else {
161 /* Set Path1 to Analog Demod Main Channel */
162 cx25840_write4(client, 0x8d0, 0x7038061f);
Hans Verkuilbd985162005-11-13 16:07:56 -0800163
Hans Verkuila8bbf122006-01-09 15:25:42 -0200164 /* When the microcontroller detects the
165 * audio format, it will unmute the lines */
166 cx25840_and_or(client, 0x803, ~0x10, 0x10);
Hans Verkuilbd985162005-11-13 16:07:56 -0800167 }
168
Hans Verkuila8bbf122006-01-09 15:25:42 -0200169 set_audclk_freq(client, state->audclk_freq);
Hans Verkuilbd985162005-11-13 16:07:56 -0800170}
171
Hans Verkuild92c20e2006-01-09 15:32:41 -0200172static int get_volume(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800173{
174 /* Volume runs +18dB to -96dB in 1/2dB steps
175 * change to fit the msp3400 -114dB to +12dB range */
176
177 /* check PATH1_VOLUME */
178 int vol = 228 - cx25840_read(client, 0x8d4);
179 vol = (vol / 2) + 23;
180 return vol << 9;
181}
182
Hans Verkuild92c20e2006-01-09 15:32:41 -0200183static void set_volume(struct i2c_client *client, int volume)
Hans Verkuilbd985162005-11-13 16:07:56 -0800184{
185 /* First convert the volume to msp3400 values (0-127) */
186 int vol = volume >> 9;
187 /* now scale it up to cx25840 values
188 * -114dB to -96dB maps to 0
189 * this should be 19, but in my testing that was 4dB too loud */
190 if (vol <= 23) {
191 vol = 0;
192 } else {
193 vol -= 23;
194 }
195
196 /* PATH1_VOLUME */
197 cx25840_write(client, 0x8d4, 228 - (vol * 2));
198}
199
Hans Verkuild92c20e2006-01-09 15:32:41 -0200200static int get_bass(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800201{
202 /* bass is 49 steps +12dB to -12dB */
203
204 /* check PATH1_EQ_BASS_VOL */
205 int bass = cx25840_read(client, 0x8d9) & 0x3f;
206 bass = (((48 - bass) * 0xffff) + 47) / 48;
207 return bass;
208}
209
Hans Verkuild92c20e2006-01-09 15:32:41 -0200210static void set_bass(struct i2c_client *client, int bass)
Hans Verkuilbd985162005-11-13 16:07:56 -0800211{
212 /* PATH1_EQ_BASS_VOL */
213 cx25840_and_or(client, 0x8d9, ~0x3f, 48 - (bass * 48 / 0xffff));
214}
215
Hans Verkuild92c20e2006-01-09 15:32:41 -0200216static int get_treble(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800217{
218 /* treble is 49 steps +12dB to -12dB */
219
220 /* check PATH1_EQ_TREBLE_VOL */
221 int treble = cx25840_read(client, 0x8db) & 0x3f;
222 treble = (((48 - treble) * 0xffff) + 47) / 48;
223 return treble;
224}
225
Hans Verkuild92c20e2006-01-09 15:32:41 -0200226static void set_treble(struct i2c_client *client, int treble)
Hans Verkuilbd985162005-11-13 16:07:56 -0800227{
228 /* PATH1_EQ_TREBLE_VOL */
229 cx25840_and_or(client, 0x8db, ~0x3f, 48 - (treble * 48 / 0xffff));
230}
231
Hans Verkuild92c20e2006-01-09 15:32:41 -0200232static int get_balance(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800233{
234 /* balance is 7 bit, 0 to -96dB */
235
236 /* check PATH1_BAL_LEVEL */
237 int balance = cx25840_read(client, 0x8d5) & 0x7f;
238 /* check PATH1_BAL_LEFT */
239 if ((cx25840_read(client, 0x8d5) & 0x80) == 0)
240 balance = 0x80 - balance;
241 else
242 balance = 0x80 + balance;
243 return balance << 8;
244}
245
Hans Verkuild92c20e2006-01-09 15:32:41 -0200246static void set_balance(struct i2c_client *client, int balance)
Hans Verkuilbd985162005-11-13 16:07:56 -0800247{
248 int bal = balance >> 8;
249 if (bal > 0x80) {
250 /* PATH1_BAL_LEFT */
251 cx25840_and_or(client, 0x8d5, 0x7f, 0x80);
252 /* PATH1_BAL_LEVEL */
253 cx25840_and_or(client, 0x8d5, ~0x7f, bal & 0x7f);
254 } else {
255 /* PATH1_BAL_LEFT */
256 cx25840_and_or(client, 0x8d5, 0x7f, 0x00);
257 /* PATH1_BAL_LEVEL */
258 cx25840_and_or(client, 0x8d5, ~0x7f, 0x80 - bal);
259 }
260}
261
Hans Verkuild92c20e2006-01-09 15:32:41 -0200262static int get_mute(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800263{
264 /* check SRC1_MUTE_EN */
265 return cx25840_read(client, 0x8d3) & 0x2 ? 1 : 0;
266}
267
Hans Verkuild92c20e2006-01-09 15:32:41 -0200268static void set_mute(struct i2c_client *client, int mute)
Hans Verkuilbd985162005-11-13 16:07:56 -0800269{
270 struct cx25840_state *state = i2c_get_clientdata(client);
271
Hans Verkuila8bbf122006-01-09 15:25:42 -0200272 if (state->aud_input != CX25840_AUDIO_SERIAL) {
Hans Verkuilbd985162005-11-13 16:07:56 -0800273 /* Must turn off microcontroller in order to mute sound.
274 * Not sure if this is the best method, but it does work.
275 * If the microcontroller is running, then it will undo any
276 * changes to the mute register. */
277 if (mute) {
278 /* disable microcontroller */
279 cx25840_and_or(client, 0x803, ~0x10, 0x00);
280 cx25840_write(client, 0x8d3, 0x1f);
281 } else {
282 /* enable microcontroller */
283 cx25840_and_or(client, 0x803, ~0x10, 0x10);
284 }
285 } else {
286 /* SRC1_MUTE_EN */
287 cx25840_and_or(client, 0x8d3, ~0x2, mute ? 0x02 : 0x00);
288 }
289}
290
291int cx25840_audio(struct i2c_client *client, unsigned int cmd, void *arg)
292{
293 struct v4l2_control *ctrl = arg;
294
295 switch (cmd) {
Hans Verkuilbd985162005-11-13 16:07:56 -0800296 case VIDIOC_INT_AUDIO_CLOCK_FREQ:
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200297 return set_audclk_freq(client, *(u32 *)arg);
Hans Verkuila8bbf122006-01-09 15:25:42 -0200298
Hans Verkuilbd985162005-11-13 16:07:56 -0800299 case VIDIOC_G_CTRL:
300 switch (ctrl->id) {
301 case V4L2_CID_AUDIO_VOLUME:
302 ctrl->value = get_volume(client);
303 break;
304 case V4L2_CID_AUDIO_BASS:
305 ctrl->value = get_bass(client);
306 break;
307 case V4L2_CID_AUDIO_TREBLE:
308 ctrl->value = get_treble(client);
309 break;
310 case V4L2_CID_AUDIO_BALANCE:
311 ctrl->value = get_balance(client);
312 break;
313 case V4L2_CID_AUDIO_MUTE:
314 ctrl->value = get_mute(client);
315 break;
316 default:
317 return -EINVAL;
318 }
319 break;
Hans Verkuila8bbf122006-01-09 15:25:42 -0200320
Hans Verkuilbd985162005-11-13 16:07:56 -0800321 case VIDIOC_S_CTRL:
322 switch (ctrl->id) {
323 case V4L2_CID_AUDIO_VOLUME:
324 set_volume(client, ctrl->value);
325 break;
326 case V4L2_CID_AUDIO_BASS:
327 set_bass(client, ctrl->value);
328 break;
329 case V4L2_CID_AUDIO_TREBLE:
330 set_treble(client, ctrl->value);
331 break;
332 case V4L2_CID_AUDIO_BALANCE:
333 set_balance(client, ctrl->value);
334 break;
335 case V4L2_CID_AUDIO_MUTE:
336 set_mute(client, ctrl->value);
337 break;
338 default:
339 return -EINVAL;
340 }
341 break;
Hans Verkuila8bbf122006-01-09 15:25:42 -0200342
Hans Verkuilbd985162005-11-13 16:07:56 -0800343 default:
344 return -EINVAL;
345 }
346
347 return 0;
348}