blob: f897c1ebd5f3d809f4bf6bf6f111b2754395a4bc [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>
Hans Verkuil31bc09b2006-03-25 10:26:09 -030022#include <media/cx25840.h>
Hans Verkuilbd985162005-11-13 16:07:56 -080023
Hans Verkuil31bc09b2006-03-25 10:26:09 -030024#include "cx25840-core.h"
Hans Verkuilbd985162005-11-13 16:07:56 -080025
Hans Verkuil3578d3d2006-01-09 15:25:41 -020026static int set_audclk_freq(struct i2c_client *client, u32 freq)
Hans Verkuilbd985162005-11-13 16:07:56 -080027{
28 struct cx25840_state *state = i2c_get_clientdata(client);
29
Hans Verkuil3578d3d2006-01-09 15:25:41 -020030 if (freq != 32000 && freq != 44100 && freq != 48000)
31 return -EINVAL;
32
Hans Verkuilbd985162005-11-13 16:07:56 -080033 /* common for all inputs and rates */
34 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x10 */
35 cx25840_write(client, 0x127, 0x50);
36
Hans Verkuila8bbf122006-01-09 15:25:42 -020037 if (state->aud_input != CX25840_AUDIO_SERIAL) {
Hans Verkuilbd985162005-11-13 16:07:56 -080038 switch (freq) {
Hans Verkuil3578d3d2006-01-09 15:25:41 -020039 case 32000:
Hans Verkuilbd985162005-11-13 16:07:56 -080040 /* VID_PLL and AUX_PLL */
41 cx25840_write4(client, 0x108, 0x0f040610);
42
43 /* AUX_PLL_FRAC */
44 cx25840_write4(client, 0x110, 0xee39bb01);
45
Hans Verkuile2b8cf42006-04-22 10:22:46 -030046 if (state->is_cx25836)
47 break;
48
Hans Verkuilbd985162005-11-13 16:07:56 -080049 /* src3/4/6_ctl = 0x0801f77f */
50 cx25840_write4(client, 0x900, 0x7ff70108);
51 cx25840_write4(client, 0x904, 0x7ff70108);
52 cx25840_write4(client, 0x90c, 0x7ff70108);
53 break;
54
Hans Verkuil3578d3d2006-01-09 15:25:41 -020055 case 44100:
Hans Verkuilbd985162005-11-13 16:07:56 -080056 /* VID_PLL and AUX_PLL */
57 cx25840_write4(client, 0x108, 0x0f040910);
58
59 /* AUX_PLL_FRAC */
60 cx25840_write4(client, 0x110, 0xd66bec00);
61
Hans Verkuile2b8cf42006-04-22 10:22:46 -030062 if (state->is_cx25836)
63 break;
64
Hans Verkuilbd985162005-11-13 16:07:56 -080065 /* src3/4/6_ctl = 0x08016d59 */
66 cx25840_write4(client, 0x900, 0x596d0108);
67 cx25840_write4(client, 0x904, 0x596d0108);
68 cx25840_write4(client, 0x90c, 0x596d0108);
69 break;
70
Hans Verkuil3578d3d2006-01-09 15:25:41 -020071 case 48000:
Hans Verkuilbd985162005-11-13 16:07:56 -080072 /* VID_PLL and AUX_PLL */
73 cx25840_write4(client, 0x108, 0x0f040a10);
74
75 /* AUX_PLL_FRAC */
76 cx25840_write4(client, 0x110, 0xe5d69800);
77
Hans Verkuile2b8cf42006-04-22 10:22:46 -030078 if (state->is_cx25836)
79 break;
80
Hans Verkuilbd985162005-11-13 16:07:56 -080081 /* src3/4/6_ctl = 0x08014faa */
82 cx25840_write4(client, 0x900, 0xaa4f0108);
83 cx25840_write4(client, 0x904, 0xaa4f0108);
84 cx25840_write4(client, 0x90c, 0xaa4f0108);
85 break;
86 }
Hans Verkuila8bbf122006-01-09 15:25:42 -020087 } else {
Hans Verkuilbd985162005-11-13 16:07:56 -080088 switch (freq) {
Hans Verkuil3578d3d2006-01-09 15:25:41 -020089 case 32000:
Hans Verkuilbd985162005-11-13 16:07:56 -080090 /* VID_PLL and AUX_PLL */
91 cx25840_write4(client, 0x108, 0x0f04081e);
92
93 /* AUX_PLL_FRAC */
94 cx25840_write4(client, 0x110, 0x69082a01);
95
Hans Verkuile2b8cf42006-04-22 10:22:46 -030096 if (state->is_cx25836)
97 break;
98
Hans Verkuilbd985162005-11-13 16:07:56 -080099 /* src1_ctl = 0x08010000 */
100 cx25840_write4(client, 0x8f8, 0x00000108);
101
102 /* src3/4/6_ctl = 0x08020000 */
103 cx25840_write4(client, 0x900, 0x00000208);
104 cx25840_write4(client, 0x904, 0x00000208);
105 cx25840_write4(client, 0x90c, 0x00000208);
106
107 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x14 */
108 cx25840_write(client, 0x127, 0x54);
109 break;
110
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200111 case 44100:
Hans Verkuilbd985162005-11-13 16:07:56 -0800112 /* VID_PLL and AUX_PLL */
113 cx25840_write4(client, 0x108, 0x0f040918);
114
115 /* AUX_PLL_FRAC */
116 cx25840_write4(client, 0x110, 0xd66bec00);
117
Hans Verkuile2b8cf42006-04-22 10:22:46 -0300118 if (state->is_cx25836)
119 break;
120
Hans Verkuilbd985162005-11-13 16:07:56 -0800121 /* src1_ctl = 0x08010000 */
122 cx25840_write4(client, 0x8f8, 0xcd600108);
123
124 /* src3/4/6_ctl = 0x08020000 */
125 cx25840_write4(client, 0x900, 0x85730108);
126 cx25840_write4(client, 0x904, 0x85730108);
127 cx25840_write4(client, 0x90c, 0x85730108);
128 break;
129
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200130 case 48000:
Hans Verkuilbd985162005-11-13 16:07:56 -0800131 /* VID_PLL and AUX_PLL */
132 cx25840_write4(client, 0x108, 0x0f040a18);
133
134 /* AUX_PLL_FRAC */
135 cx25840_write4(client, 0x110, 0xe5d69800);
136
Hans Verkuile2b8cf42006-04-22 10:22:46 -0300137 if (state->is_cx25836)
138 break;
139
Hans Verkuilbd985162005-11-13 16:07:56 -0800140 /* src1_ctl = 0x08010000 */
141 cx25840_write4(client, 0x8f8, 0x00800108);
142
143 /* src3/4/6_ctl = 0x08020000 */
144 cx25840_write4(client, 0x900, 0x55550108);
145 cx25840_write4(client, 0x904, 0x55550108);
146 cx25840_write4(client, 0x90c, 0x55550108);
147 break;
148 }
Hans Verkuilbd985162005-11-13 16:07:56 -0800149 }
150
Hans Verkuilbd985162005-11-13 16:07:56 -0800151 state->audclk_freq = freq;
152
153 return 0;
154}
155
Hans Verkuila8bbf122006-01-09 15:25:42 -0200156void cx25840_audio_set_path(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800157{
158 struct cx25840_state *state = i2c_get_clientdata(client);
159
Hans Verkuilbd985162005-11-13 16:07:56 -0800160 /* stop microcontroller */
161 cx25840_and_or(client, 0x803, ~0x10, 0);
162
Hans Verkuil2e2aef72006-04-29 12:26:46 -0300163 /* assert soft reset */
164 if (!state->is_cx25836)
165 cx25840_and_or(client, 0x810, ~0x1, 0x01);
166
Hans Verkuilbd985162005-11-13 16:07:56 -0800167 /* Mute everything to prevent the PFFT! */
168 cx25840_write(client, 0x8d3, 0x1f);
169
Hans Verkuila8bbf122006-01-09 15:25:42 -0200170 if (state->aud_input == CX25840_AUDIO_SERIAL) {
Hans Verkuilbd985162005-11-13 16:07:56 -0800171 /* Set Path1 to Serial Audio Input */
172 cx25840_write4(client, 0x8d0, 0x12100101);
173
174 /* The microcontroller should not be started for the
175 * non-tuner inputs: autodetection is specific for
176 * TV audio. */
Hans Verkuila8bbf122006-01-09 15:25:42 -0200177 } else {
178 /* Set Path1 to Analog Demod Main Channel */
179 cx25840_write4(client, 0x8d0, 0x7038061f);
Hans Verkuilc0c044a2006-04-29 12:11:18 -0300180 }
Hans Verkuilbd985162005-11-13 16:07:56 -0800181
Hans Verkuilc0c044a2006-04-29 12:11:18 -0300182 set_audclk_freq(client, state->audclk_freq);
183
Hans Verkuil2e2aef72006-04-29 12:26:46 -0300184 /* deassert soft reset */
185 if (!state->is_cx25836)
186 cx25840_and_or(client, 0x810, ~0x1, 0x00);
187
Hans Verkuilc0c044a2006-04-29 12:11:18 -0300188 if (state->aud_input != CX25840_AUDIO_SERIAL) {
Hans Verkuila8bbf122006-01-09 15:25:42 -0200189 /* When the microcontroller detects the
190 * audio format, it will unmute the lines */
191 cx25840_and_or(client, 0x803, ~0x10, 0x10);
Hans Verkuilbd985162005-11-13 16:07:56 -0800192 }
Hans Verkuilbd985162005-11-13 16:07:56 -0800193}
194
Hans Verkuild92c20e2006-01-09 15:32:41 -0200195static int get_volume(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800196{
197 /* Volume runs +18dB to -96dB in 1/2dB steps
198 * change to fit the msp3400 -114dB to +12dB range */
199
200 /* check PATH1_VOLUME */
201 int vol = 228 - cx25840_read(client, 0x8d4);
202 vol = (vol / 2) + 23;
203 return vol << 9;
204}
205
Hans Verkuild92c20e2006-01-09 15:32:41 -0200206static void set_volume(struct i2c_client *client, int volume)
Hans Verkuilbd985162005-11-13 16:07:56 -0800207{
208 /* First convert the volume to msp3400 values (0-127) */
209 int vol = volume >> 9;
210 /* now scale it up to cx25840 values
211 * -114dB to -96dB maps to 0
212 * this should be 19, but in my testing that was 4dB too loud */
213 if (vol <= 23) {
214 vol = 0;
215 } else {
216 vol -= 23;
217 }
218
219 /* PATH1_VOLUME */
220 cx25840_write(client, 0x8d4, 228 - (vol * 2));
221}
222
Hans Verkuild92c20e2006-01-09 15:32:41 -0200223static int get_bass(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800224{
225 /* bass is 49 steps +12dB to -12dB */
226
227 /* check PATH1_EQ_BASS_VOL */
228 int bass = cx25840_read(client, 0x8d9) & 0x3f;
229 bass = (((48 - bass) * 0xffff) + 47) / 48;
230 return bass;
231}
232
Hans Verkuild92c20e2006-01-09 15:32:41 -0200233static void set_bass(struct i2c_client *client, int bass)
Hans Verkuilbd985162005-11-13 16:07:56 -0800234{
235 /* PATH1_EQ_BASS_VOL */
236 cx25840_and_or(client, 0x8d9, ~0x3f, 48 - (bass * 48 / 0xffff));
237}
238
Hans Verkuild92c20e2006-01-09 15:32:41 -0200239static int get_treble(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800240{
241 /* treble is 49 steps +12dB to -12dB */
242
243 /* check PATH1_EQ_TREBLE_VOL */
244 int treble = cx25840_read(client, 0x8db) & 0x3f;
245 treble = (((48 - treble) * 0xffff) + 47) / 48;
246 return treble;
247}
248
Hans Verkuild92c20e2006-01-09 15:32:41 -0200249static void set_treble(struct i2c_client *client, int treble)
Hans Verkuilbd985162005-11-13 16:07:56 -0800250{
251 /* PATH1_EQ_TREBLE_VOL */
252 cx25840_and_or(client, 0x8db, ~0x3f, 48 - (treble * 48 / 0xffff));
253}
254
Hans Verkuild92c20e2006-01-09 15:32:41 -0200255static int get_balance(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800256{
257 /* balance is 7 bit, 0 to -96dB */
258
259 /* check PATH1_BAL_LEVEL */
260 int balance = cx25840_read(client, 0x8d5) & 0x7f;
261 /* check PATH1_BAL_LEFT */
262 if ((cx25840_read(client, 0x8d5) & 0x80) == 0)
263 balance = 0x80 - balance;
264 else
265 balance = 0x80 + balance;
266 return balance << 8;
267}
268
Hans Verkuild92c20e2006-01-09 15:32:41 -0200269static void set_balance(struct i2c_client *client, int balance)
Hans Verkuilbd985162005-11-13 16:07:56 -0800270{
271 int bal = balance >> 8;
272 if (bal > 0x80) {
273 /* PATH1_BAL_LEFT */
274 cx25840_and_or(client, 0x8d5, 0x7f, 0x80);
275 /* PATH1_BAL_LEVEL */
276 cx25840_and_or(client, 0x8d5, ~0x7f, bal & 0x7f);
277 } else {
278 /* PATH1_BAL_LEFT */
279 cx25840_and_or(client, 0x8d5, 0x7f, 0x00);
280 /* PATH1_BAL_LEVEL */
281 cx25840_and_or(client, 0x8d5, ~0x7f, 0x80 - bal);
282 }
283}
284
Hans Verkuild92c20e2006-01-09 15:32:41 -0200285static int get_mute(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -0800286{
287 /* check SRC1_MUTE_EN */
288 return cx25840_read(client, 0x8d3) & 0x2 ? 1 : 0;
289}
290
Hans Verkuild92c20e2006-01-09 15:32:41 -0200291static void set_mute(struct i2c_client *client, int mute)
Hans Verkuilbd985162005-11-13 16:07:56 -0800292{
293 struct cx25840_state *state = i2c_get_clientdata(client);
294
Hans Verkuila8bbf122006-01-09 15:25:42 -0200295 if (state->aud_input != CX25840_AUDIO_SERIAL) {
Hans Verkuilbd985162005-11-13 16:07:56 -0800296 /* Must turn off microcontroller in order to mute sound.
297 * Not sure if this is the best method, but it does work.
298 * If the microcontroller is running, then it will undo any
299 * changes to the mute register. */
300 if (mute) {
301 /* disable microcontroller */
302 cx25840_and_or(client, 0x803, ~0x10, 0x00);
303 cx25840_write(client, 0x8d3, 0x1f);
304 } else {
305 /* enable microcontroller */
306 cx25840_and_or(client, 0x803, ~0x10, 0x10);
307 }
308 } else {
309 /* SRC1_MUTE_EN */
310 cx25840_and_or(client, 0x8d3, ~0x2, mute ? 0x02 : 0x00);
311 }
312}
313
314int cx25840_audio(struct i2c_client *client, unsigned int cmd, void *arg)
315{
Hans Verkuilc0c044a2006-04-29 12:11:18 -0300316 struct cx25840_state *state = i2c_get_clientdata(client);
Hans Verkuilbd985162005-11-13 16:07:56 -0800317 struct v4l2_control *ctrl = arg;
Hans Verkuilc0c044a2006-04-29 12:11:18 -0300318 int retval;
Hans Verkuilbd985162005-11-13 16:07:56 -0800319
320 switch (cmd) {
Hans Verkuilbd985162005-11-13 16:07:56 -0800321 case VIDIOC_INT_AUDIO_CLOCK_FREQ:
Hans Verkuilc0c044a2006-04-29 12:11:18 -0300322 if (state->aud_input != CX25840_AUDIO_SERIAL) {
323 cx25840_and_or(client, 0x803, ~0x10, 0);
324 cx25840_write(client, 0x8d3, 0x1f);
325 }
Hans Verkuil2e2aef72006-04-29 12:26:46 -0300326 if (!state->is_cx25836)
327 cx25840_and_or(client, 0x810, ~0x1, 1);
Hans Verkuilc0c044a2006-04-29 12:11:18 -0300328 retval = set_audclk_freq(client, *(u32 *)arg);
Hans Verkuil2e2aef72006-04-29 12:26:46 -0300329 if (!state->is_cx25836)
330 cx25840_and_or(client, 0x810, ~0x1, 0);
Hans Verkuilc0c044a2006-04-29 12:11:18 -0300331 if (state->aud_input != CX25840_AUDIO_SERIAL) {
332 cx25840_and_or(client, 0x803, ~0x10, 0x10);
333 }
334 return retval;
Hans Verkuila8bbf122006-01-09 15:25:42 -0200335
Hans Verkuilbd985162005-11-13 16:07:56 -0800336 case VIDIOC_G_CTRL:
337 switch (ctrl->id) {
338 case V4L2_CID_AUDIO_VOLUME:
339 ctrl->value = get_volume(client);
340 break;
341 case V4L2_CID_AUDIO_BASS:
342 ctrl->value = get_bass(client);
343 break;
344 case V4L2_CID_AUDIO_TREBLE:
345 ctrl->value = get_treble(client);
346 break;
347 case V4L2_CID_AUDIO_BALANCE:
348 ctrl->value = get_balance(client);
349 break;
350 case V4L2_CID_AUDIO_MUTE:
351 ctrl->value = get_mute(client);
352 break;
353 default:
354 return -EINVAL;
355 }
356 break;
Hans Verkuila8bbf122006-01-09 15:25:42 -0200357
Hans Verkuilbd985162005-11-13 16:07:56 -0800358 case VIDIOC_S_CTRL:
359 switch (ctrl->id) {
360 case V4L2_CID_AUDIO_VOLUME:
361 set_volume(client, ctrl->value);
362 break;
363 case V4L2_CID_AUDIO_BASS:
364 set_bass(client, ctrl->value);
365 break;
366 case V4L2_CID_AUDIO_TREBLE:
367 set_treble(client, ctrl->value);
368 break;
369 case V4L2_CID_AUDIO_BALANCE:
370 set_balance(client, ctrl->value);
371 break;
372 case V4L2_CID_AUDIO_MUTE:
373 set_mute(client, ctrl->value);
374 break;
375 default:
376 return -EINVAL;
377 }
378 break;
Hans Verkuila8bbf122006-01-09 15:25:42 -0200379
Hans Verkuilbd985162005-11-13 16:07:56 -0800380 default:
381 return -EINVAL;
382 }
383
384 return 0;
385}