blob: d767916d070cdbfb7bdc8a59ef688d1319e4d0ca [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* audio_wma.c - wma audio decoder driver
2 *
Manish Dewangana4f1df02012-02-08 17:06:54 +05303 * Copyright (c) 2009, 2011-2012, Code Aurora Forum. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07004 *
5 * Based on the mp3 native driver in arch/arm/mach-msm/qdsp5/audio_mp3.c
6 *
7 * Copyright (C) 2008 Google, Inc.
8 * Copyright (C) 2008 HTC Corporation
9 *
10 * All source code in this file is licensed under the following license except
11 * where indicated.
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License version 2 as published
15 * by the Free Software Foundation.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 *
21 * See the GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, you can find it at http://www.fsf.org
24 */
25
Santosh Mardi0be3b8e2011-07-06 10:00:21 +053026#include <asm/atomic.h>
27#include <asm/ioctls.h>
28
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070029#include <linux/module.h>
30#include <linux/fs.h>
31#include <linux/miscdevice.h>
32#include <linux/uaccess.h>
33#include <linux/kthread.h>
34#include <linux/wait.h>
35#include <linux/dma-mapping.h>
36#include <linux/debugfs.h>
37#include <linux/delay.h>
38#include <linux/list.h>
39#include <linux/earlysuspend.h>
40#include <linux/android_pmem.h>
41#include <linux/slab.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070042#include <linux/msm_audio.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070043#include <linux/msm_audio_wma.h>
Santosh Mardi0be3b8e2011-07-06 10:00:21 +053044#include <linux/memory_alloc.h>
45
46#include <mach/msm_adsp.h>
47#include <mach/iommu.h>
48#include <mach/iommu_domains.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070049#include <mach/qdsp5/qdsp5audppcmdi.h>
50#include <mach/qdsp5/qdsp5audppmsg.h>
51#include <mach/qdsp5/qdsp5audplaycmdi.h>
52#include <mach/qdsp5/qdsp5audplaymsg.h>
53#include <mach/qdsp5/qdsp5rmtcmdi.h>
54#include <mach/debug_mm.h>
Santosh Mardi0be3b8e2011-07-06 10:00:21 +053055#include <mach/msm_memtypes.h>
56
57#include "audmgr.h"
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070058
59/* Size must be power of 2 */
60#define BUFSZ_MAX 2062 /* Includes meta in size */
61#define BUFSZ_MIN 1038 /* Includes meta in size */
62#define DMASZ_MAX (BUFSZ_MAX * 2)
63#define DMASZ_MIN (BUFSZ_MIN * 2)
64
65#define AUDPLAY_INVALID_READ_PTR_OFFSET 0xFFFF
66#define AUDDEC_DEC_WMA 4
67
68#define PCM_BUFSZ_MIN 8216 /* Hold one stereo WMA frame and meta out*/
69#define PCM_BUF_MAX_COUNT 5 /* DSP only accepts 5 buffers at most
70 but support 2 buffers currently */
71#define ROUTING_MODE_FTRT 1
72#define ROUTING_MODE_RT 2
73/* Decoder status received from AUDPPTASK */
74#define AUDPP_DEC_STATUS_SLEEP 0
75#define AUDPP_DEC_STATUS_INIT 1
76#define AUDPP_DEC_STATUS_CFG 2
77#define AUDPP_DEC_STATUS_PLAY 3
78
79#define AUDWMA_METAFIELD_MASK 0xFFFF0000
80#define AUDWMA_EOS_FLG_OFFSET 0x0A /* Offset from beginning of buffer */
81#define AUDWMA_EOS_FLG_MASK 0x01
82#define AUDWMA_EOS_NONE 0x0 /* No EOS detected */
83#define AUDWMA_EOS_SET 0x1 /* EOS set in meta field */
84
85#define AUDWMA_EVENT_NUM 10 /* Default number of pre-allocated event packets */
86
87struct buffer {
88 void *data;
89 unsigned size;
90 unsigned used; /* Input usage actual DSP produced PCM size */
91 unsigned addr;
92 unsigned short mfield_sz; /*only useful for data has meta field */
93};
94
95#ifdef CONFIG_HAS_EARLYSUSPEND
96struct audwma_suspend_ctl {
97 struct early_suspend node;
98 struct audio *audio;
99};
100#endif
101
102struct audwma_event{
103 struct list_head list;
104 int event_type;
105 union msm_audio_event_payload payload;
106};
107
108struct audio {
109 struct buffer out[2];
110
111 spinlock_t dsp_lock;
112
113 uint8_t out_head;
114 uint8_t out_tail;
115 uint8_t out_needed; /* number of buffers the dsp is waiting for */
116 unsigned out_dma_sz;
117
118 atomic_t out_bytes;
119
120 struct mutex lock;
121 struct mutex write_lock;
122 wait_queue_head_t write_wait;
123
124 /* Host PCM section */
125 struct buffer in[PCM_BUF_MAX_COUNT];
126 struct mutex read_lock;
127 wait_queue_head_t read_wait; /* Wait queue for read */
128 char *read_data; /* pointer to reader buffer */
129 int32_t read_phys; /* physical address of reader buffer */
130 uint8_t read_next; /* index to input buffers to be read next */
131 uint8_t fill_next; /* index to buffer that DSP should be filling */
132 uint8_t pcm_buf_count; /* number of pcm buffer allocated */
133 /* ---- End of Host PCM section */
134
135 struct msm_adsp_module *audplay;
136
137 /* configuration to use on next enable */
138 uint32_t out_sample_rate;
139 uint32_t out_channel_mode;
140
141 struct msm_audio_wma_config wma_config;
142 struct audmgr audmgr;
143
144 /* data allocated for various buffers */
145 char *data;
146 int32_t phys; /* physical address of write buffer */
Laura Abbott35111d32012-04-27 18:41:48 -0700147 void *map_v_read;
148 void *map_v_write;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700149
150 int mfield; /* meta field embedded in data */
151 int rflush; /* Read flush */
152 int wflush; /* Write flush */
153 int opened;
154 int enabled;
155 int running;
156 int stopped; /* set when stopped, cleared on flush */
157 int pcm_feedback;
158 int buf_refresh;
159 int rmt_resource_released;
160 int teos; /* valid only if tunnel mode & no data left for decoder */
161 enum msm_aud_decoder_state dec_state; /* Represents decoder state */
162 int reserved; /* A byte is being reserved */
163 char rsv_byte; /* Handle odd length user data */
164
165 const char *module_name;
166 unsigned queue_id;
167 uint16_t dec_id;
168 uint32_t read_ptr_offset;
169
170#ifdef CONFIG_HAS_EARLYSUSPEND
171 struct audwma_suspend_ctl suspend_ctl;
172#endif
173
174#ifdef CONFIG_DEBUG_FS
175 struct dentry *dentry;
176#endif
177
178 wait_queue_head_t wait;
179 struct list_head free_event_queue;
180 struct list_head event_queue;
181 wait_queue_head_t event_wait;
182 spinlock_t event_queue_lock;
183 struct mutex get_event_lock;
184 int event_abort;
185
186 int eq_enable;
187 int eq_needs_commit;
188 audpp_cmd_cfg_object_params_eqalizer eq;
189 audpp_cmd_cfg_object_params_volume vol_pan;
190};
191
192static int auddec_dsp_config(struct audio *audio, int enable);
193static void audpp_cmd_cfg_adec_params(struct audio *audio);
194static void audpp_cmd_cfg_routing_mode(struct audio *audio);
195static void audplay_send_data(struct audio *audio, unsigned needed);
196static void audplay_config_hostpcm(struct audio *audio);
197static void audplay_buffer_refresh(struct audio *audio);
198static void audio_dsp_event(void *private, unsigned id, uint16_t *msg);
199#ifdef CONFIG_HAS_EARLYSUSPEND
200static void audwma_post_event(struct audio *audio, int type,
201 union msm_audio_event_payload payload);
202#endif
203
204static int rmt_put_resource(struct audio *audio)
205{
206 struct aud_codec_config_cmd cmd;
207 unsigned short client_idx;
208
209 cmd.cmd_id = RM_CMD_AUD_CODEC_CFG;
210 cmd.client_id = RM_AUD_CLIENT_ID;
211 cmd.task_id = audio->dec_id;
212 cmd.enable = RMT_DISABLE;
213 cmd.dec_type = AUDDEC_DEC_WMA;
214 client_idx = ((cmd.client_id << 8) | cmd.task_id);
215
216 return put_adsp_resource(client_idx, &cmd, sizeof(cmd));
217}
218
219static int rmt_get_resource(struct audio *audio)
220{
221 struct aud_codec_config_cmd cmd;
222 unsigned short client_idx;
223
224 cmd.cmd_id = RM_CMD_AUD_CODEC_CFG;
225 cmd.client_id = RM_AUD_CLIENT_ID;
226 cmd.task_id = audio->dec_id;
227 cmd.enable = RMT_ENABLE;
228 cmd.dec_type = AUDDEC_DEC_WMA;
229 client_idx = ((cmd.client_id << 8) | cmd.task_id);
230
231 return get_adsp_resource(client_idx, &cmd, sizeof(cmd));
232}
233
234/* must be called with audio->lock held */
235static int audio_enable(struct audio *audio)
236{
237 struct audmgr_config cfg;
238 int rc;
239
240 MM_DBG("\n"); /* Macro prints the file name and function */
241 if (audio->enabled)
242 return 0;
243
244 if (audio->rmt_resource_released == 1) {
245 audio->rmt_resource_released = 0;
246 rc = rmt_get_resource(audio);
247 if (rc) {
248 MM_ERR("ADSP resources are not available for WMA \
249 session 0x%08x on decoder: %d\n Ignoring \
250 error and going ahead with the playback\n",
251 (int)audio, audio->dec_id);
252 }
253 }
254
255 audio->dec_state = MSM_AUD_DECODER_STATE_NONE;
256 audio->out_tail = 0;
257 audio->out_needed = 0;
258
259 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK) {
260 cfg.tx_rate = RPC_AUD_DEF_SAMPLE_RATE_NONE;
261 cfg.rx_rate = RPC_AUD_DEF_SAMPLE_RATE_48000;
262 cfg.def_method = RPC_AUD_DEF_METHOD_PLAYBACK;
263 cfg.codec = RPC_AUD_DEF_CODEC_WMA;
264 cfg.snd_method = RPC_SND_METHOD_MIDI;
265
266 rc = audmgr_enable(&audio->audmgr, &cfg);
267 if (rc < 0)
268 return rc;
269 }
270
271 if (msm_adsp_enable(audio->audplay)) {
272 MM_ERR("msm_adsp_enable(audplay) failed\n");
273 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK)
274 audmgr_disable(&audio->audmgr);
275 return -ENODEV;
276 }
277
278 if (audpp_enable(audio->dec_id, audio_dsp_event, audio)) {
279 MM_ERR("audpp_enable() failed\n");
280 msm_adsp_disable(audio->audplay);
281 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK)
282 audmgr_disable(&audio->audmgr);
283 return -ENODEV;
284 }
285
286 audio->enabled = 1;
287 return 0;
288}
289
290/* must be called with audio->lock held */
291static int audio_disable(struct audio *audio)
292{
293 int rc = 0;
294 MM_DBG("\n"); /* Macro prints the file name and function */
295 if (audio->enabled) {
296 audio->enabled = 0;
297 audio->dec_state = MSM_AUD_DECODER_STATE_NONE;
298 auddec_dsp_config(audio, 0);
299 rc = wait_event_interruptible_timeout(audio->wait,
300 audio->dec_state != MSM_AUD_DECODER_STATE_NONE,
301 msecs_to_jiffies(MSM_AUD_DECODER_WAIT_MS));
302 if (rc == 0)
303 rc = -ETIMEDOUT;
304 else if (audio->dec_state != MSM_AUD_DECODER_STATE_CLOSE)
305 rc = -EFAULT;
306 else
307 rc = 0;
Manish Dewangan89a9f232012-02-09 17:14:40 +0530308 audio->stopped = 1;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700309 wake_up(&audio->write_wait);
310 wake_up(&audio->read_wait);
311 msm_adsp_disable(audio->audplay);
312 audpp_disable(audio->dec_id, audio);
313 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK)
314 audmgr_disable(&audio->audmgr);
315 audio->out_needed = 0;
316 rmt_put_resource(audio);
317 audio->rmt_resource_released = 1;
318 }
319 return rc;
320}
321
322/* ------------------- dsp --------------------- */
323static void audio_update_pcm_buf_entry(struct audio *audio,
324 uint32_t *payload)
325{
326 uint8_t index;
327 unsigned long flags;
328
329 if (audio->rflush)
330 return;
331
332 spin_lock_irqsave(&audio->dsp_lock, flags);
333 for (index = 0; index < payload[1]; index++) {
334 if (audio->in[audio->fill_next].addr ==
335 payload[2 + index * 2]) {
336 MM_DBG("audio_update_pcm_buf_entry: \
337 in[%d] ready\n", audio->fill_next);
338 audio->in[audio->fill_next].used =
339 payload[3 + index * 2];
340 if ((++audio->fill_next) == audio->pcm_buf_count)
341 audio->fill_next = 0;
342 } else {
343 MM_ERR("audio_update_pcm_buf_entry: \
344 expected=%x ret=%x\n",
345 audio->in[audio->fill_next].addr,
346 payload[1 + index * 2]);
347 break;
348 }
349 }
350 if (audio->in[audio->fill_next].used == 0) {
351 audplay_buffer_refresh(audio);
352 } else {
353 MM_DBG("read cannot keep up\n");
354 audio->buf_refresh = 1;
355 }
356 wake_up(&audio->read_wait);
357 spin_unlock_irqrestore(&audio->dsp_lock, flags);
358}
359
360static void audplay_dsp_event(void *data, unsigned id, size_t len,
361 void (*getevent) (void *ptr, size_t len))
362{
363 struct audio *audio = data;
364 uint32_t msg[28];
365
366 getevent(msg, sizeof(msg));
367
368 MM_DBG("msg_id=%x\n", id);
369
370 switch (id) {
371 case AUDPLAY_MSG_DEC_NEEDS_DATA:
372 audplay_send_data(audio, 1);
373 break;
374
375 case AUDPLAY_MSG_BUFFER_UPDATE:
376 audio_update_pcm_buf_entry(audio, msg);
377 break;
378
379 case ADSP_MESSAGE_ID:
380 MM_DBG("Received ADSP event: module enable(audplaytask)\n");
381 break;
382
383 default:
384 MM_ERR("unexpected message from decoder \n");
385 break;
386 }
387}
388
389static void audio_dsp_event(void *private, unsigned id, uint16_t *msg)
390{
391 struct audio *audio = private;
392
393 switch (id) {
394 case AUDPP_MSG_STATUS_MSG:{
395 unsigned status = msg[1];
396
397 switch (status) {
398 case AUDPP_DEC_STATUS_SLEEP: {
399 uint16_t reason = msg[2];
400 MM_DBG("decoder status:sleep reason = \
401 0x%04x\n", reason);
402 if ((reason == AUDPP_MSG_REASON_MEM)
403 || (reason ==
404 AUDPP_MSG_REASON_NODECODER)) {
405 audio->dec_state =
406 MSM_AUD_DECODER_STATE_FAILURE;
407 wake_up(&audio->wait);
408 } else if (reason == AUDPP_MSG_REASON_NONE) {
409 /* decoder is in disable state */
410 audio->dec_state =
411 MSM_AUD_DECODER_STATE_CLOSE;
412 wake_up(&audio->wait);
413 }
414 break;
415 }
416 case AUDPP_DEC_STATUS_INIT:
417 MM_DBG("decoder status: init\n");
418 if (audio->pcm_feedback)
419 audpp_cmd_cfg_routing_mode(audio);
420 else
421 audpp_cmd_cfg_adec_params(audio);
422 break;
423
424 case AUDPP_DEC_STATUS_CFG:
425 MM_DBG("decoder status: cfg\n");
426 break;
427 case AUDPP_DEC_STATUS_PLAY:
428 MM_DBG("decoder status: play\n");
429 if (audio->pcm_feedback) {
430 audplay_config_hostpcm(audio);
431 audplay_buffer_refresh(audio);
432 }
433 audio->dec_state =
434 MSM_AUD_DECODER_STATE_SUCCESS;
435 wake_up(&audio->wait);
436 break;
437 default:
438 MM_ERR("unknown decoder status\n");
439 }
440 break;
441 }
442 case AUDPP_MSG_CFG_MSG:
443 if (msg[0] == AUDPP_MSG_ENA_ENA) {
444 MM_DBG("CFG_MSG ENABLE\n");
445 auddec_dsp_config(audio, 1);
446 audio->out_needed = 0;
447 audio->running = 1;
448 audpp_dsp_set_vol_pan(audio->dec_id, &audio->vol_pan);
449 audpp_dsp_set_eq(audio->dec_id, audio->eq_enable,
450 &audio->eq);
451 audpp_avsync(audio->dec_id, 22050);
452 } else if (msg[0] == AUDPP_MSG_ENA_DIS) {
453 MM_DBG("CFG_MSG DISABLE\n");
454 audpp_avsync(audio->dec_id, 0);
455 audio->running = 0;
456 } else {
457 MM_DBG("CFG_MSG %d?\n", msg[0]);
458 }
459 break;
460 case AUDPP_MSG_ROUTING_ACK:
461 MM_DBG("ROUTING_ACK mode=%d\n", msg[1]);
462 audpp_cmd_cfg_adec_params(audio);
463 break;
464
465 case AUDPP_MSG_FLUSH_ACK:
466 MM_DBG("FLUSH_ACK\n");
467 audio->wflush = 0;
468 audio->rflush = 0;
469 wake_up(&audio->write_wait);
470 if (audio->pcm_feedback)
471 audplay_buffer_refresh(audio);
472 case AUDPP_MSG_PCMDMAMISSED:
473 MM_DBG("PCMDMAMISSED\n");
474 audio->teos = 1;
475 wake_up(&audio->write_wait);
476 break;
477
478 default:
479 MM_ERR("UNKNOWN (%d)\n", id);
480 }
481
482}
483
484static struct msm_adsp_ops audplay_adsp_ops_wma = {
485 .event = audplay_dsp_event,
486};
487
488#define audplay_send_queue0(audio, cmd, len) \
489 msm_adsp_write(audio->audplay, audio->queue_id, \
490 cmd, len)
491
492static int auddec_dsp_config(struct audio *audio, int enable)
493{
494 u16 cfg_dec_cmd[AUDPP_CMD_CFG_DEC_TYPE_LEN / sizeof(unsigned short)];
495
496 memset(cfg_dec_cmd, 0, sizeof(cfg_dec_cmd));
497 cfg_dec_cmd[0] = AUDPP_CMD_CFG_DEC_TYPE;
498 if (enable)
499 cfg_dec_cmd[1 + audio->dec_id] = AUDPP_CMD_UPDATDE_CFG_DEC |
500 AUDPP_CMD_ENA_DEC_V | AUDDEC_DEC_WMA;
501 else
502 cfg_dec_cmd[1 + audio->dec_id] = AUDPP_CMD_UPDATDE_CFG_DEC |
503 AUDPP_CMD_DIS_DEC_V;
504
505 return audpp_send_queue1(&cfg_dec_cmd, sizeof(cfg_dec_cmd));
506}
507
508static void audpp_cmd_cfg_adec_params(struct audio *audio)
509{
510 struct audpp_cmd_cfg_adec_params_wma cmd;
511
512 memset(&cmd, 0, sizeof(cmd));
513 cmd.common.cmd_id = AUDPP_CMD_CFG_ADEC_PARAMS;
514 cmd.common.length = AUDPP_CMD_CFG_ADEC_PARAMS_WMA_LEN;
515 cmd.common.dec_id = audio->dec_id;
516 cmd.common.input_sampling_frequency = audio->out_sample_rate;
517
518 /*
519 * Test done for sample with the following configuration
520 * armdatareqthr = 1262
521 * channelsdecoded = 1(MONO)/2(STEREO)
522 * wmabytespersec = Tested with 6003 Bytes per sec
523 * wmasamplingfreq = 44100
524 * wmaencoderopts = 31
525 */
526
527 cmd.armdatareqthr = audio->wma_config.armdatareqthr;
528 cmd.channelsdecoded = audio->wma_config.channelsdecoded;
529 cmd.wmabytespersec = audio->wma_config.wmabytespersec;
530 cmd.wmasamplingfreq = audio->wma_config.wmasamplingfreq;
531 cmd.wmaencoderopts = audio->wma_config.wmaencoderopts;
532
533 audpp_send_queue2(&cmd, sizeof(cmd));
534}
535
536static void audpp_cmd_cfg_routing_mode(struct audio *audio)
537{
538 struct audpp_cmd_routing_mode cmd;
539
540 MM_DBG("\n"); /* Macro prints the file name and function */
541 memset(&cmd, 0, sizeof(cmd));
542 cmd.cmd_id = AUDPP_CMD_ROUTING_MODE;
543 cmd.object_number = audio->dec_id;
544 if (audio->pcm_feedback)
545 cmd.routing_mode = ROUTING_MODE_FTRT;
546 else
547 cmd.routing_mode = ROUTING_MODE_RT;
548
549 audpp_send_queue1(&cmd, sizeof(cmd));
550}
551
552static void audplay_buffer_refresh(struct audio *audio)
553{
554 struct audplay_cmd_buffer_refresh refresh_cmd;
555
556 refresh_cmd.cmd_id = AUDPLAY_CMD_BUFFER_REFRESH;
557 refresh_cmd.num_buffers = 1;
558 refresh_cmd.buf0_address = audio->in[audio->fill_next].addr;
559 refresh_cmd.buf0_length = audio->in[audio->fill_next].size;
560 refresh_cmd.buf_read_count = 0;
561
562 MM_DBG("buf0_addr=%x buf0_len=%d\n",
563 refresh_cmd.buf0_address,
564 refresh_cmd.buf0_length);
565
566 (void)audplay_send_queue0(audio, &refresh_cmd, sizeof(refresh_cmd));
567}
568
569static void audplay_config_hostpcm(struct audio *audio)
570{
571 struct audplay_cmd_hpcm_buf_cfg cfg_cmd;
572
573 MM_DBG("\n"); /* Macro prints the file name and function */
574 cfg_cmd.cmd_id = AUDPLAY_CMD_HPCM_BUF_CFG;
575 cfg_cmd.max_buffers = audio->pcm_buf_count;
576 cfg_cmd.byte_swap = 0;
577 cfg_cmd.hostpcm_config = (0x8000) | (0x4000);
578 cfg_cmd.feedback_frequency = 1;
579 cfg_cmd.partition_number = 0;
580
581 (void)audplay_send_queue0(audio, &cfg_cmd, sizeof(cfg_cmd));
582}
583
584
585static int audplay_dsp_send_data_avail(struct audio *audio,
586 unsigned idx, unsigned len)
587{
588 struct audplay_cmd_bitstream_data_avail_nt2 cmd;
589
590 cmd.cmd_id = AUDPLAY_CMD_BITSTREAM_DATA_AVAIL_NT2;
591 if (audio->mfield)
592 cmd.decoder_id = AUDWMA_METAFIELD_MASK |
593 (audio->out[idx].mfield_sz >> 1);
594 else
595 cmd.decoder_id = audio->dec_id;
596 cmd.buf_ptr = audio->out[idx].addr;
597 cmd.buf_size = len/2;
598 cmd.partition_number = 0;
599 /* complete writes to the input buffer */
600 wmb();
601 return audplay_send_queue0(audio, &cmd, sizeof(cmd));
602}
603
604static void audplay_send_data(struct audio *audio, unsigned needed)
605{
606 struct buffer *frame;
607 unsigned long flags;
608
609 spin_lock_irqsave(&audio->dsp_lock, flags);
610 if (!audio->running)
611 goto done;
612
613 if (audio->wflush) {
614 audio->out_needed = 1;
615 goto done;
616 }
617
618 if (needed && !audio->wflush) {
619 /* We were called from the callback because the DSP
620 * requested more data. Note that the DSP does want
621 * more data, and if a buffer was in-flight, mark it
622 * as available (since the DSP must now be done with
623 * it).
624 */
625 audio->out_needed = 1;
626 frame = audio->out + audio->out_tail;
627 if (frame->used == 0xffffffff) {
628 MM_DBG("frame %d free\n", audio->out_tail);
629 frame->used = 0;
630 audio->out_tail ^= 1;
631 wake_up(&audio->write_wait);
632 }
633 }
634
635 if (audio->out_needed) {
636 /* If the DSP currently wants data and we have a
637 * buffer available, we will send it and reset
638 * the needed flag. We'll mark the buffer as in-flight
639 * so that it won't be recycled until the next buffer
640 * is requested
641 */
642
643 MM_DBG("\n"); /* Macro prints the file name and function */
644 frame = audio->out + audio->out_tail;
645 if (frame->used) {
646 BUG_ON(frame->used == 0xffffffff);
647 MM_DBG("frame %d busy\n", audio->out_tail);
648 audplay_dsp_send_data_avail(audio, audio->out_tail,
649 frame->used);
650 frame->used = 0xffffffff;
651 audio->out_needed = 0;
652 }
653 }
654done:
655 spin_unlock_irqrestore(&audio->dsp_lock, flags);
656}
657
658/* ------------------- device --------------------- */
659
660static void audio_flush(struct audio *audio)
661{
Manish Dewangana4f1df02012-02-08 17:06:54 +0530662 unsigned long flags;
663
664 spin_lock_irqsave(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700665 audio->out[0].used = 0;
666 audio->out[1].used = 0;
667 audio->out_head = 0;
668 audio->out_tail = 0;
669 audio->reserved = 0;
Manish Dewangana4f1df02012-02-08 17:06:54 +0530670 spin_unlock_irqrestore(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700671 atomic_set(&audio->out_bytes, 0);
672}
673
674static void audio_flush_pcm_buf(struct audio *audio)
675{
676 uint8_t index;
677
Manish Dewangana4f1df02012-02-08 17:06:54 +0530678 unsigned long flags;
679
680 spin_lock_irqsave(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700681 for (index = 0; index < PCM_BUF_MAX_COUNT; index++)
682 audio->in[index].used = 0;
683 audio->buf_refresh = 0;
684 audio->read_next = 0;
685 audio->fill_next = 0;
Manish Dewangana4f1df02012-02-08 17:06:54 +0530686 spin_unlock_irqrestore(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700687}
688
689static void audio_ioport_reset(struct audio *audio)
690{
691 /* Make sure read/write thread are free from
692 * sleep and knowing that system is not able
693 * to process io request at the moment
694 */
695 wake_up(&audio->write_wait);
696 mutex_lock(&audio->write_lock);
697 audio_flush(audio);
698 mutex_unlock(&audio->write_lock);
699 wake_up(&audio->read_wait);
700 mutex_lock(&audio->read_lock);
701 audio_flush_pcm_buf(audio);
702 mutex_unlock(&audio->read_lock);
703}
704
705static int audwma_events_pending(struct audio *audio)
706{
707 unsigned long flags;
708 int empty;
709
710 spin_lock_irqsave(&audio->event_queue_lock, flags);
711 empty = !list_empty(&audio->event_queue);
712 spin_unlock_irqrestore(&audio->event_queue_lock, flags);
713 return empty || audio->event_abort;
714}
715
716static void audwma_reset_event_queue(struct audio *audio)
717{
718 unsigned long flags;
719 struct audwma_event *drv_evt;
720 struct list_head *ptr, *next;
721
722 spin_lock_irqsave(&audio->event_queue_lock, flags);
723 list_for_each_safe(ptr, next, &audio->event_queue) {
724 drv_evt = list_first_entry(&audio->event_queue,
725 struct audwma_event, list);
726 list_del(&drv_evt->list);
727 kfree(drv_evt);
728 }
729 list_for_each_safe(ptr, next, &audio->free_event_queue) {
730 drv_evt = list_first_entry(&audio->free_event_queue,
731 struct audwma_event, list);
732 list_del(&drv_evt->list);
733 kfree(drv_evt);
734 }
735 spin_unlock_irqrestore(&audio->event_queue_lock, flags);
736
737 return;
738}
739
740static long audwma_process_event_req(struct audio *audio, void __user *arg)
741{
742 long rc;
743 struct msm_audio_event usr_evt;
744 struct audwma_event *drv_evt = NULL;
745 int timeout;
746 unsigned long flags;
747
748 if (copy_from_user(&usr_evt, arg, sizeof(struct msm_audio_event)))
749 return -EFAULT;
750
751 timeout = (int) usr_evt.timeout_ms;
752
753 if (timeout > 0) {
754 rc = wait_event_interruptible_timeout(
755 audio->event_wait, audwma_events_pending(audio),
756 msecs_to_jiffies(timeout));
757 if (rc == 0)
758 return -ETIMEDOUT;
759 } else {
760 rc = wait_event_interruptible(
761 audio->event_wait, audwma_events_pending(audio));
762 }
763
764 if (rc < 0)
765 return rc;
766
767 if (audio->event_abort) {
768 audio->event_abort = 0;
769 return -ENODEV;
770 }
771
772 rc = 0;
773
774 spin_lock_irqsave(&audio->event_queue_lock, flags);
775 if (!list_empty(&audio->event_queue)) {
776 drv_evt = list_first_entry(&audio->event_queue,
777 struct audwma_event, list);
778 list_del(&drv_evt->list);
779 }
780
781 if (drv_evt) {
782 usr_evt.event_type = drv_evt->event_type;
783 usr_evt.event_payload = drv_evt->payload;
784 list_add_tail(&drv_evt->list, &audio->free_event_queue);
785 } else
786 rc = -1;
787 spin_unlock_irqrestore(&audio->event_queue_lock, flags);
788
789 if (!rc && copy_to_user(arg, &usr_evt, sizeof(usr_evt)))
790 rc = -EFAULT;
791
792 return rc;
793}
794
795static int audio_enable_eq(struct audio *audio, int enable)
796{
797 if (audio->eq_enable == enable && !audio->eq_needs_commit)
798 return 0;
799
800 audio->eq_enable = enable;
801
802 if (audio->running) {
803 audpp_dsp_set_eq(audio->dec_id, enable, &audio->eq);
804 audio->eq_needs_commit = 0;
805 }
806 return 0;
807}
808
809static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
810{
811 struct audio *audio = file->private_data;
812 int rc = -EINVAL;
813 unsigned long flags = 0;
814 uint16_t enable_mask;
815 int enable;
816 int prev_state;
817
818 MM_DBG("cmd = %d\n", cmd);
819
820 if (cmd == AUDIO_GET_STATS) {
821 struct msm_audio_stats stats;
822 stats.byte_count = audpp_avsync_byte_count(audio->dec_id);
823 stats.sample_count = audpp_avsync_sample_count(audio->dec_id);
824 if (copy_to_user((void *)arg, &stats, sizeof(stats)))
825 return -EFAULT;
826 return 0;
827 }
828
829 switch (cmd) {
830 case AUDIO_ENABLE_AUDPP:
831 if (copy_from_user(&enable_mask, (void *) arg,
832 sizeof(enable_mask))) {
833 rc = -EFAULT;
834 break;
835 }
836
837 spin_lock_irqsave(&audio->dsp_lock, flags);
838 enable = (enable_mask & EQ_ENABLE) ? 1 : 0;
839 audio_enable_eq(audio, enable);
840 spin_unlock_irqrestore(&audio->dsp_lock, flags);
841 rc = 0;
842 break;
843 case AUDIO_SET_VOLUME:
844 spin_lock_irqsave(&audio->dsp_lock, flags);
845 audio->vol_pan.volume = arg;
846 if (audio->running)
847 audpp_dsp_set_vol_pan(audio->dec_id, &audio->vol_pan);
848 spin_unlock_irqrestore(&audio->dsp_lock, flags);
849 rc = 0;
850 break;
851
852 case AUDIO_SET_PAN:
853 spin_lock_irqsave(&audio->dsp_lock, flags);
854 audio->vol_pan.pan = arg;
855 if (audio->running)
856 audpp_dsp_set_vol_pan(audio->dec_id, &audio->vol_pan);
857 spin_unlock_irqrestore(&audio->dsp_lock, flags);
858 rc = 0;
859 break;
860
861 case AUDIO_SET_EQ:
862 prev_state = audio->eq_enable;
863 audio->eq_enable = 0;
864 if (copy_from_user(&audio->eq.num_bands, (void *) arg,
865 sizeof(audio->eq) -
866 (AUDPP_CMD_CFG_OBJECT_PARAMS_COMMON_LEN + 2))) {
867 rc = -EFAULT;
868 break;
869 }
870 audio->eq_enable = prev_state;
871 audio->eq_needs_commit = 1;
872 rc = 0;
873 break;
874 }
875
876 if (-EINVAL != rc)
877 return rc;
878
879 if (cmd == AUDIO_GET_EVENT) {
880 MM_DBG("AUDIO_GET_EVENT\n");
881 if (mutex_trylock(&audio->get_event_lock)) {
882 rc = audwma_process_event_req(audio,
883 (void __user *) arg);
884 mutex_unlock(&audio->get_event_lock);
885 } else
886 rc = -EBUSY;
887 return rc;
888 }
889
890 if (cmd == AUDIO_ABORT_GET_EVENT) {
891 audio->event_abort = 1;
892 wake_up(&audio->event_wait);
893 return 0;
894 }
895
896 mutex_lock(&audio->lock);
897 switch (cmd) {
898 case AUDIO_START:
899 MM_DBG("AUDIO_START\n");
900 rc = audio_enable(audio);
901 if (!rc) {
902 rc = wait_event_interruptible_timeout(audio->wait,
903 audio->dec_state != MSM_AUD_DECODER_STATE_NONE,
904 msecs_to_jiffies(MSM_AUD_DECODER_WAIT_MS));
905 MM_INFO("dec_state %d rc = %d\n", audio->dec_state, rc);
906
907 if (audio->dec_state != MSM_AUD_DECODER_STATE_SUCCESS)
908 rc = -ENODEV;
909 else
910 rc = 0;
911 }
912 break;
913 case AUDIO_STOP:
914 MM_DBG("AUDIO_STOP\n");
915 rc = audio_disable(audio);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700916 audio_ioport_reset(audio);
917 audio->stopped = 0;
918 break;
919 case AUDIO_FLUSH:
920 MM_DBG("AUDIO_FLUSH\n");
921 audio->rflush = 1;
922 audio->wflush = 1;
923 audio_ioport_reset(audio);
924 if (audio->running) {
925 audpp_flush(audio->dec_id);
926 rc = wait_event_interruptible(audio->write_wait,
927 !audio->wflush);
928 if (rc < 0) {
929 MM_ERR("AUDIO_FLUSH interrupted\n");
930 rc = -EINTR;
931 }
932 } else {
933 audio->rflush = 0;
934 audio->wflush = 0;
935 }
936 break;
937 case AUDIO_SET_CONFIG: {
938 struct msm_audio_config config;
939 if (copy_from_user(&config, (void *) arg, sizeof(config))) {
940 rc = -EFAULT;
941 break;
942 }
943 if (config.channel_count == 1) {
944 config.channel_count = AUDPP_CMD_PCM_INTF_MONO_V;
945 } else if (config.channel_count == 2) {
946 config.channel_count = AUDPP_CMD_PCM_INTF_STEREO_V;
947 } else {
948 rc = -EINVAL;
949 break;
950 }
951 audio->mfield = config.meta_field;
952 audio->out_sample_rate = config.sample_rate;
953 audio->out_channel_mode = config.channel_count;
954 rc = 0;
955 break;
956 }
957 case AUDIO_GET_CONFIG: {
958 struct msm_audio_config config;
959 config.buffer_size = (audio->out_dma_sz >> 1);
960 config.buffer_count = 2;
961 config.sample_rate = audio->out_sample_rate;
962 if (audio->out_channel_mode == AUDPP_CMD_PCM_INTF_MONO_V)
963 config.channel_count = 1;
964 else
965 config.channel_count = 2;
966 config.meta_field = 0;
967 config.unused[0] = 0;
968 config.unused[1] = 0;
969 config.unused[2] = 0;
970 if (copy_to_user((void *) arg, &config, sizeof(config)))
971 rc = -EFAULT;
972 else
973 rc = 0;
974
975 break;
976 }
977 case AUDIO_GET_WMA_CONFIG:{
978 if (copy_to_user((void *)arg, &audio->wma_config,
979 sizeof(audio->wma_config)))
980 rc = -EFAULT;
981 else
982 rc = 0;
983 break;
984 }
985 case AUDIO_SET_WMA_CONFIG:{
986 struct msm_audio_wma_config usr_config;
987
988 if (copy_from_user
989 (&usr_config, (void *)arg,
990 sizeof(usr_config))) {
991 rc = -EFAULT;
992 break;
993 }
994
995 audio->wma_config = usr_config;
996 rc = 0;
997 break;
998 }
999 case AUDIO_GET_PCM_CONFIG:{
1000 struct msm_audio_pcm_config config;
1001 config.pcm_feedback = audio->pcm_feedback;
1002 config.buffer_count = PCM_BUF_MAX_COUNT;
1003 config.buffer_size = PCM_BUFSZ_MIN;
1004 if (copy_to_user((void *)arg, &config,
1005 sizeof(config)))
1006 rc = -EFAULT;
1007 else
1008 rc = 0;
1009 break;
1010 }
1011 case AUDIO_SET_PCM_CONFIG:{
1012 struct msm_audio_pcm_config config;
1013 if (copy_from_user
1014 (&config, (void *)arg, sizeof(config))) {
1015 rc = -EFAULT;
1016 break;
1017 }
1018 if (config.pcm_feedback != audio->pcm_feedback) {
1019 MM_ERR("Not sufficient permission to"
1020 "change the playback mode\n");
1021 rc = -EACCES;
1022 break;
1023 }
1024 if ((config.buffer_count > PCM_BUF_MAX_COUNT) ||
1025 (config.buffer_count == 1))
1026 config.buffer_count = PCM_BUF_MAX_COUNT;
1027
1028 if (config.buffer_size < PCM_BUFSZ_MIN)
1029 config.buffer_size = PCM_BUFSZ_MIN;
1030
1031 /* Check if pcm feedback is required */
1032 if ((config.pcm_feedback) && (!audio->read_data)) {
1033 MM_DBG("allocate PCM buffer %d\n",
1034 config.buffer_count *
1035 config.buffer_size);
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301036 audio->read_phys =
1037 allocate_contiguous_ebi_nomap(
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001038 config.buffer_size *
1039 config.buffer_count,
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301040 SZ_4K);
1041 if (!audio->read_phys) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001042 rc = -ENOMEM;
1043 break;
1044 }
Laura Abbott35111d32012-04-27 18:41:48 -07001045 audio->map_v_read = ioremap(
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301046 audio->read_phys,
1047 config.buffer_size *
Laura Abbott35111d32012-04-27 18:41:48 -07001048 config.buffer_count);
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301049 if (IS_ERR(audio->map_v_read)) {
1050 MM_ERR("map of read buf failed\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001051 rc = -ENOMEM;
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301052 free_contiguous_memory_by_paddr(
1053 audio->read_phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001054 } else {
1055 uint8_t index;
1056 uint32_t offset = 0;
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301057 audio->read_data =
Laura Abbott35111d32012-04-27 18:41:48 -07001058 audio->map_v_read;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001059 audio->buf_refresh = 0;
1060 audio->pcm_buf_count =
1061 config.buffer_count;
1062 audio->read_next = 0;
1063 audio->fill_next = 0;
1064
1065 for (index = 0;
1066 index < config.buffer_count;
1067 index++) {
1068 audio->in[index].data =
1069 audio->read_data + offset;
1070 audio->in[index].addr =
1071 audio->read_phys + offset;
1072 audio->in[index].size =
1073 config.buffer_size;
1074 audio->in[index].used = 0;
1075 offset += config.buffer_size;
1076 }
1077 MM_DBG("read buf: phy addr \
1078 0x%08x kernel addr 0x%08x\n",
1079 audio->read_phys,
1080 (int)audio->read_data);
1081 rc = 0;
1082 }
1083 } else {
1084 rc = 0;
1085 }
1086 break;
1087 }
1088 case AUDIO_PAUSE:
1089 MM_DBG("AUDIO_PAUSE %ld\n", arg);
1090 rc = audpp_pause(audio->dec_id, (int) arg);
1091 break;
1092 default:
1093 rc = -EINVAL;
1094 }
1095 mutex_unlock(&audio->lock);
1096 return rc;
1097}
1098
1099/* Only useful in tunnel-mode */
1100static int audio_fsync(struct file *file, int datasync)
1101{
1102 struct audio *audio = file->private_data;
1103 struct buffer *frame;
1104 int rc = 0;
1105
1106 MM_DBG("\n"); /* Macro prints the file name and function */
1107
1108 if (!audio->running || audio->pcm_feedback) {
1109 rc = -EINVAL;
1110 goto done_nolock;
1111 }
1112
1113 mutex_lock(&audio->write_lock);
1114
1115 rc = wait_event_interruptible(audio->write_wait,
1116 (!audio->out[0].used &&
1117 !audio->out[1].used &&
1118 audio->out_needed) || audio->wflush);
1119
1120 if (rc < 0)
1121 goto done;
1122 else if (audio->wflush) {
1123 rc = -EBUSY;
1124 goto done;
1125 }
1126
1127 if (audio->reserved) {
1128 MM_DBG("send reserved byte\n");
1129 frame = audio->out + audio->out_tail;
1130 ((char *) frame->data)[0] = audio->rsv_byte;
1131 ((char *) frame->data)[1] = 0;
1132 frame->used = 2;
1133 audplay_send_data(audio, 0);
1134
1135 rc = wait_event_interruptible(audio->write_wait,
1136 (!audio->out[0].used &&
1137 !audio->out[1].used &&
1138 audio->out_needed) || audio->wflush);
1139
1140 if (rc < 0)
1141 goto done;
1142 else if (audio->wflush) {
1143 rc = -EBUSY;
1144 goto done;
1145 }
1146 }
1147
1148 /* pcm dmamiss message is sent continously
1149 * when decoder is starved so no race
1150 * condition concern
1151 */
1152 audio->teos = 0;
1153
1154 rc = wait_event_interruptible(audio->write_wait,
1155 audio->teos || audio->wflush);
1156
1157 if (audio->wflush)
1158 rc = -EBUSY;
1159
1160done:
1161 mutex_unlock(&audio->write_lock);
1162done_nolock:
1163 return rc;
1164}
1165
1166static ssize_t audio_read(struct file *file, char __user *buf, size_t count,
1167 loff_t *pos)
1168{
1169 struct audio *audio = file->private_data;
1170 const char __user *start = buf;
1171 int rc = 0;
1172
1173 if (!audio->pcm_feedback)
1174 return 0; /* PCM feedback is not enabled. Nothing to read */
1175
1176 mutex_lock(&audio->read_lock);
1177 MM_DBG("%d \n", count);
1178 while (count > 0) {
1179 rc = wait_event_interruptible(audio->read_wait,
1180 (audio->in[audio->read_next].used > 0) ||
1181 (audio->stopped) || (audio->rflush));
1182
1183 if (rc < 0)
1184 break;
1185
1186 if (audio->stopped || audio->rflush) {
1187 rc = -EBUSY;
1188 break;
1189 }
1190
1191 if (count < audio->in[audio->read_next].used) {
1192 /* Read must happen in frame boundary. Since driver
1193 does not know frame size, read count must be greater
1194 or equal to size of PCM samples */
1195 MM_DBG("audio_read: no partial frame done reading\n");
1196 break;
1197 } else {
1198 MM_DBG("audio_read: read from in[%d]\n",
1199 audio->read_next);
1200 /* order reads from the output buffer */
1201 rmb();
1202 if (copy_to_user
1203 (buf, audio->in[audio->read_next].data,
1204 audio->in[audio->read_next].used)) {
1205 MM_ERR("invalid addr %x \n", (unsigned int)buf);
1206 rc = -EFAULT;
1207 break;
1208 }
1209 count -= audio->in[audio->read_next].used;
1210 buf += audio->in[audio->read_next].used;
1211 audio->in[audio->read_next].used = 0;
1212 if ((++audio->read_next) == audio->pcm_buf_count)
1213 audio->read_next = 0;
1214 break; /* Force to exit while loop
1215 * to prevent output thread
1216 * sleep too long if data is
1217 * not ready at this moment.
1218 */
1219 }
1220 }
1221
1222 /* don't feed output buffer to HW decoder during flushing
1223 * buffer refresh command will be sent once flush completes
1224 * send buf refresh command here can confuse HW decoder
1225 */
1226 if (audio->buf_refresh && !audio->rflush) {
1227 audio->buf_refresh = 0;
1228 MM_DBG("kick start pcm feedback again\n");
1229 audplay_buffer_refresh(audio);
1230 }
1231
1232 mutex_unlock(&audio->read_lock);
1233
1234 if (buf > start)
1235 rc = buf - start;
1236
1237 MM_DBG("read %d bytes\n", rc);
1238 return rc;
1239}
1240
1241static int audwma_process_eos(struct audio *audio,
1242 const char __user *buf_start, unsigned short mfield_size)
1243{
1244 int rc = 0;
1245 struct buffer *frame;
1246 char *buf_ptr;
1247
1248 if (audio->reserved) {
1249 MM_DBG("flush reserve byte\n");
1250 frame = audio->out + audio->out_head;
1251 buf_ptr = frame->data;
1252 rc = wait_event_interruptible(audio->write_wait,
1253 (frame->used == 0)
1254 || (audio->stopped)
1255 || (audio->wflush));
1256 if (rc < 0)
1257 goto done;
1258 if (audio->stopped || audio->wflush) {
1259 rc = -EBUSY;
1260 goto done;
1261 }
1262
1263 buf_ptr[0] = audio->rsv_byte;
1264 buf_ptr[1] = 0;
1265 audio->out_head ^= 1;
1266 frame->mfield_sz = 0;
1267 frame->used = 2;
1268 audio->reserved = 0;
1269 audplay_send_data(audio, 0);
1270 }
1271
1272 frame = audio->out + audio->out_head;
1273
1274 rc = wait_event_interruptible(audio->write_wait,
1275 (audio->out_needed &&
1276 audio->out[0].used == 0 &&
1277 audio->out[1].used == 0)
1278 || (audio->stopped)
1279 || (audio->wflush));
1280
1281 if (rc < 0)
1282 goto done;
1283 if (audio->stopped || audio->wflush) {
1284 rc = -EBUSY;
1285 goto done;
1286 }
1287
1288 if (copy_from_user(frame->data, buf_start, mfield_size)) {
1289 rc = -EFAULT;
1290 goto done;
1291 }
1292
1293 frame->mfield_sz = mfield_size;
1294 audio->out_head ^= 1;
1295 frame->used = mfield_size;
1296 audplay_send_data(audio, 0);
1297done:
1298 return rc;
1299}
1300
1301static ssize_t audio_write(struct file *file, const char __user *buf,
1302 size_t count, loff_t *pos)
1303{
1304 struct audio *audio = file->private_data;
1305 const char __user *start = buf;
1306 struct buffer *frame;
1307 size_t xfer;
1308 char *cpy_ptr;
1309 int rc = 0, eos_condition = AUDWMA_EOS_NONE;
1310 unsigned dsize;
1311 unsigned short mfield_size = 0;
1312
1313 MM_DBG("cnt=%d\n", count);
1314
1315 mutex_lock(&audio->write_lock);
1316 while (count > 0) {
1317 frame = audio->out + audio->out_head;
1318 cpy_ptr = frame->data;
1319 dsize = 0;
1320 rc = wait_event_interruptible(audio->write_wait,
1321 (frame->used == 0)
1322 || (audio->stopped)
1323 || (audio->wflush));
1324 if (rc < 0)
1325 break;
1326 if (audio->stopped || audio->wflush) {
1327 rc = -EBUSY;
1328 break;
1329 }
1330 if (audio->mfield) {
1331 if (buf == start) {
1332 /* Processing beginning of user buffer */
1333 if (__get_user(mfield_size,
1334 (unsigned short __user *) buf)) {
1335 rc = -EFAULT;
1336 break;
1337 } else if (mfield_size > count) {
1338 rc = -EINVAL;
1339 break;
1340 }
1341 MM_DBG("audio_write: mf offset_val %x\n",
1342 mfield_size);
1343 if (copy_from_user(cpy_ptr, buf, mfield_size)) {
1344 rc = -EFAULT;
1345 break;
1346 }
1347 /* Check if EOS flag is set and buffer has
1348 * contains just meta field
1349 */
1350 if (cpy_ptr[AUDWMA_EOS_FLG_OFFSET] &
1351 AUDWMA_EOS_FLG_MASK) {
1352 MM_DBG("audio_write: EOS SET\n");
1353 eos_condition = AUDWMA_EOS_SET;
1354 if (mfield_size == count) {
1355 buf += mfield_size;
1356 break;
1357 } else
1358 cpy_ptr[AUDWMA_EOS_FLG_OFFSET]
1359 &= ~AUDWMA_EOS_FLG_MASK;
1360 }
1361 cpy_ptr += mfield_size;
1362 count -= mfield_size;
1363 dsize += mfield_size;
1364 buf += mfield_size;
1365 } else {
1366 mfield_size = 0;
1367 MM_DBG("audio_write: continuous buffer\n");
1368 }
1369 frame->mfield_sz = mfield_size;
1370 }
1371
1372 if (audio->reserved) {
1373 MM_DBG("append reserved byte %x\n", audio->rsv_byte);
1374 *cpy_ptr = audio->rsv_byte;
1375 xfer = (count > ((frame->size - mfield_size) - 1)) ?
1376 (frame->size - mfield_size) - 1 : count;
1377 cpy_ptr++;
1378 dsize += 1;
1379 audio->reserved = 0;
1380 } else
1381 xfer = (count > (frame->size - mfield_size)) ?
1382 (frame->size - mfield_size) : count;
1383
1384 if (copy_from_user(cpy_ptr, buf, xfer)) {
1385 rc = -EFAULT;
1386 break;
1387 }
1388
1389 dsize += xfer;
1390 if (dsize & 1) {
1391 audio->rsv_byte = ((char *) frame->data)[dsize - 1];
1392 MM_DBG("odd length buf reserve last byte %x\n",
1393 audio->rsv_byte);
1394 audio->reserved = 1;
1395 dsize--;
1396 }
1397 count -= xfer;
1398 buf += xfer;
1399
1400 if (dsize > 0) {
1401 audio->out_head ^= 1;
1402 frame->used = dsize;
1403 audplay_send_data(audio, 0);
1404 }
1405 }
1406 if (eos_condition == AUDWMA_EOS_SET)
1407 rc = audwma_process_eos(audio, start, mfield_size);
1408 mutex_unlock(&audio->write_lock);
1409 if (!rc) {
1410 if (buf > start)
1411 return buf - start;
1412 }
1413 return rc;
1414}
1415
1416static int audio_release(struct inode *inode, struct file *file)
1417{
1418 struct audio *audio = file->private_data;
1419
1420 MM_INFO("audio instance 0x%08x freeing\n", (int)audio);
1421 mutex_lock(&audio->lock);
1422 audio_disable(audio);
1423 if (audio->rmt_resource_released == 0)
1424 rmt_put_resource(audio);
1425 audio_flush(audio);
1426 audio_flush_pcm_buf(audio);
1427 msm_adsp_put(audio->audplay);
1428 audpp_adec_free(audio->dec_id);
1429#ifdef CONFIG_HAS_EARLYSUSPEND
1430 unregister_early_suspend(&audio->suspend_ctl.node);
1431#endif
1432 audio->event_abort = 1;
1433 wake_up(&audio->event_wait);
1434 audwma_reset_event_queue(audio);
Laura Abbott35111d32012-04-27 18:41:48 -07001435 iounmap(audio->map_v_write);
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301436 free_contiguous_memory_by_paddr(audio->phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001437 if (audio->read_data) {
Laura Abbott35111d32012-04-27 18:41:48 -07001438 iounmap(audio->map_v_read);
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301439 free_contiguous_memory_by_paddr(audio->read_phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001440 }
1441 mutex_unlock(&audio->lock);
1442#ifdef CONFIG_DEBUG_FS
1443 if (audio->dentry)
1444 debugfs_remove(audio->dentry);
1445#endif
1446 kfree(audio);
1447 return 0;
1448}
1449
1450#ifdef CONFIG_HAS_EARLYSUSPEND
1451static void audwma_post_event(struct audio *audio, int type,
1452 union msm_audio_event_payload payload)
1453{
1454 struct audwma_event *e_node = NULL;
1455 unsigned long flags;
1456
1457 spin_lock_irqsave(&audio->event_queue_lock, flags);
1458
1459 if (!list_empty(&audio->free_event_queue)) {
1460 e_node = list_first_entry(&audio->free_event_queue,
1461 struct audwma_event, list);
1462 list_del(&e_node->list);
1463 } else {
1464 e_node = kmalloc(sizeof(struct audwma_event), GFP_ATOMIC);
1465 if (!e_node) {
1466 MM_ERR("No mem to post event %d\n", type);
1467 spin_unlock_irqrestore(&audio->event_queue_lock, flags);
1468 return;
1469 }
1470 }
1471
1472 e_node->event_type = type;
1473 e_node->payload = payload;
1474
1475 list_add_tail(&e_node->list, &audio->event_queue);
1476 spin_unlock_irqrestore(&audio->event_queue_lock, flags);
1477 wake_up(&audio->event_wait);
1478}
1479
1480static void audwma_suspend(struct early_suspend *h)
1481{
1482 struct audwma_suspend_ctl *ctl =
1483 container_of(h, struct audwma_suspend_ctl, node);
1484 union msm_audio_event_payload payload;
1485
1486 MM_DBG("\n"); /* Macro prints the file name and function */
1487 audwma_post_event(ctl->audio, AUDIO_EVENT_SUSPEND, payload);
1488}
1489
1490static void audwma_resume(struct early_suspend *h)
1491{
1492 struct audwma_suspend_ctl *ctl =
1493 container_of(h, struct audwma_suspend_ctl, node);
1494 union msm_audio_event_payload payload;
1495
1496 MM_DBG("\n"); /* Macro prints the file name and function */
1497 audwma_post_event(ctl->audio, AUDIO_EVENT_RESUME, payload);
1498}
1499#endif
1500
1501#ifdef CONFIG_DEBUG_FS
1502static ssize_t audwma_debug_open(struct inode *inode, struct file *file)
1503{
1504 file->private_data = inode->i_private;
1505 return 0;
1506}
1507
1508static ssize_t audwma_debug_read(struct file *file, char __user *buf,
1509 size_t count, loff_t *ppos)
1510{
1511 const int debug_bufmax = 4096;
1512 static char buffer[4096];
1513 int n = 0, i;
1514 struct audio *audio = file->private_data;
1515
1516 mutex_lock(&audio->lock);
1517 n = scnprintf(buffer, debug_bufmax, "opened %d\n", audio->opened);
1518 n += scnprintf(buffer + n, debug_bufmax - n,
1519 "enabled %d\n", audio->enabled);
1520 n += scnprintf(buffer + n, debug_bufmax - n,
1521 "stopped %d\n", audio->stopped);
1522 n += scnprintf(buffer + n, debug_bufmax - n,
1523 "pcm_feedback %d\n", audio->pcm_feedback);
1524 n += scnprintf(buffer + n, debug_bufmax - n,
1525 "out_buf_sz %d\n", audio->out[0].size);
1526 n += scnprintf(buffer + n, debug_bufmax - n,
1527 "pcm_buf_count %d \n", audio->pcm_buf_count);
1528 n += scnprintf(buffer + n, debug_bufmax - n,
1529 "pcm_buf_sz %d \n", audio->in[0].size);
1530 n += scnprintf(buffer + n, debug_bufmax - n,
1531 "volume %x \n", audio->vol_pan.volume);
1532 n += scnprintf(buffer + n, debug_bufmax - n,
1533 "sample rate %d \n", audio->out_sample_rate);
1534 n += scnprintf(buffer + n, debug_bufmax - n,
1535 "channel mode %d \n", audio->out_channel_mode);
1536 mutex_unlock(&audio->lock);
1537 /* Following variables are only useful for debugging when
1538 * when playback halts unexpectedly. Thus, no mutual exclusion
1539 * enforced
1540 */
1541 n += scnprintf(buffer + n, debug_bufmax - n,
1542 "wflush %d\n", audio->wflush);
1543 n += scnprintf(buffer + n, debug_bufmax - n,
1544 "rflush %d\n", audio->rflush);
1545 n += scnprintf(buffer + n, debug_bufmax - n,
1546 "running %d \n", audio->running);
1547 n += scnprintf(buffer + n, debug_bufmax - n,
1548 "dec state %d \n", audio->dec_state);
1549 n += scnprintf(buffer + n, debug_bufmax - n,
1550 "out_needed %d \n", audio->out_needed);
1551 n += scnprintf(buffer + n, debug_bufmax - n,
1552 "out_head %d \n", audio->out_head);
1553 n += scnprintf(buffer + n, debug_bufmax - n,
1554 "out_tail %d \n", audio->out_tail);
1555 n += scnprintf(buffer + n, debug_bufmax - n,
1556 "out[0].used %d \n", audio->out[0].used);
1557 n += scnprintf(buffer + n, debug_bufmax - n,
1558 "out[1].used %d \n", audio->out[1].used);
1559 n += scnprintf(buffer + n, debug_bufmax - n,
1560 "buffer_refresh %d \n", audio->buf_refresh);
1561 n += scnprintf(buffer + n, debug_bufmax - n,
1562 "read_next %d \n", audio->read_next);
1563 n += scnprintf(buffer + n, debug_bufmax - n,
1564 "fill_next %d \n", audio->fill_next);
1565 for (i = 0; i < audio->pcm_buf_count; i++)
1566 n += scnprintf(buffer + n, debug_bufmax - n,
1567 "in[%d].size %d \n", i, audio->in[i].used);
1568 buffer[n] = 0;
1569 return simple_read_from_buffer(buf, count, ppos, buffer, n);
1570}
1571
1572static const struct file_operations audwma_debug_fops = {
1573 .read = audwma_debug_read,
1574 .open = audwma_debug_open,
1575};
1576#endif
1577
1578static int audio_open(struct inode *inode, struct file *file)
1579{
1580 struct audio *audio = NULL;
1581 int rc, dec_attrb, decid, i;
1582 unsigned pmem_sz = DMASZ_MAX;
1583 struct audwma_event *e_node = NULL;
1584#ifdef CONFIG_DEBUG_FS
1585 /* 4 bytes represents decoder number, 1 byte for terminate string */
1586 char name[sizeof "msm_wma_" + 5];
1587#endif
1588
1589 /* Allocate Mem for audio instance */
1590 audio = kzalloc(sizeof(struct audio), GFP_KERNEL);
1591 if (!audio) {
1592 MM_ERR("no memory to allocate audio instance \n");
1593 rc = -ENOMEM;
1594 goto done;
1595 }
1596 MM_INFO("audio instance 0x%08x created\n", (int)audio);
1597
1598 /* Allocate the decoder */
1599 dec_attrb = AUDDEC_DEC_WMA;
1600 if ((file->f_mode & FMODE_WRITE) &&
1601 (file->f_mode & FMODE_READ)) {
1602 dec_attrb |= MSM_AUD_MODE_NONTUNNEL;
1603 audio->pcm_feedback = NON_TUNNEL_MODE_PLAYBACK;
1604 } else if ((file->f_mode & FMODE_WRITE) &&
1605 !(file->f_mode & FMODE_READ)) {
1606 dec_attrb |= MSM_AUD_MODE_TUNNEL;
1607 audio->pcm_feedback = TUNNEL_MODE_PLAYBACK;
1608 } else {
1609 kfree(audio);
1610 rc = -EACCES;
1611 goto done;
1612 }
1613
1614 decid = audpp_adec_alloc(dec_attrb, &audio->module_name,
1615 &audio->queue_id);
1616
1617 if (decid < 0) {
1618 MM_ERR("No free decoder available, freeing instance 0x%08x\n",
1619 (int)audio);
1620 rc = -ENODEV;
1621 kfree(audio);
1622 goto done;
1623 }
1624 audio->dec_id = decid & MSM_AUD_DECODER_MASK;
1625
1626 while (pmem_sz >= DMASZ_MIN) {
1627 MM_DBG("pmemsz = %d\n", pmem_sz);
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301628 audio->phys = allocate_contiguous_ebi_nomap(pmem_sz, SZ_4K);
1629 if (audio->phys) {
Laura Abbott35111d32012-04-27 18:41:48 -07001630 audio->map_v_write = ioremap(audio->phys, pmem_sz);
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301631 if (IS_ERR(audio->map_v_write)) {
1632 MM_ERR("could not map write buffers, \
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001633 freeing instance 0x%08x\n",
1634 (int)audio);
1635 rc = -ENOMEM;
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301636 free_contiguous_memory_by_paddr(audio->phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001637 audpp_adec_free(audio->dec_id);
1638 kfree(audio);
1639 goto done;
1640 }
Laura Abbott35111d32012-04-27 18:41:48 -07001641 audio->data = audio->map_v_write;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001642 MM_DBG("write buf: phy addr 0x%08x kernel addr \
1643 0x%08x\n", audio->phys, (int)audio->data);
1644 break;
1645 } else if (pmem_sz == DMASZ_MIN) {
1646 MM_ERR("could not allocate write buffers, freeing \
1647 instance 0x%08x\n", (int)audio);
1648 rc = -ENOMEM;
1649 audpp_adec_free(audio->dec_id);
1650 kfree(audio);
1651 goto done;
1652 } else
1653 pmem_sz >>= 1;
1654 }
1655 audio->out_dma_sz = pmem_sz;
1656
1657 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK) {
1658 rc = audmgr_open(&audio->audmgr);
1659 if (rc) {
1660 MM_ERR("audmgr open failed, freeing instance \
1661 0x%08x\n", (int)audio);
1662 goto err;
1663 }
1664 }
1665
1666 rc = msm_adsp_get(audio->module_name, &audio->audplay,
1667 &audplay_adsp_ops_wma, audio);
1668 if (rc) {
1669 MM_ERR("failed to get %s module, freeing instance 0x%08x\n",
1670 audio->module_name, (int)audio);
1671 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK)
1672 audmgr_close(&audio->audmgr);
1673 goto err;
1674 }
1675
1676 rc = rmt_get_resource(audio);
1677 if (rc) {
1678 MM_ERR("ADSP resources are not available for WMA session \
1679 0x%08x on decoder: %d\n", (int)audio, audio->dec_id);
1680 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK)
1681 audmgr_close(&audio->audmgr);
1682 msm_adsp_put(audio->audplay);
1683 goto err;
1684 }
1685
1686 mutex_init(&audio->lock);
1687 mutex_init(&audio->write_lock);
1688 mutex_init(&audio->read_lock);
1689 mutex_init(&audio->get_event_lock);
1690 spin_lock_init(&audio->dsp_lock);
1691 init_waitqueue_head(&audio->write_wait);
1692 init_waitqueue_head(&audio->read_wait);
1693 INIT_LIST_HEAD(&audio->free_event_queue);
1694 INIT_LIST_HEAD(&audio->event_queue);
1695 init_waitqueue_head(&audio->wait);
1696 init_waitqueue_head(&audio->event_wait);
1697 spin_lock_init(&audio->event_queue_lock);
1698
1699 audio->out[0].data = audio->data + 0;
1700 audio->out[0].addr = audio->phys + 0;
1701 audio->out[0].size = audio->out_dma_sz >> 1;
1702
1703 audio->out[1].data = audio->data + audio->out[0].size;
1704 audio->out[1].addr = audio->phys + audio->out[0].size;
1705 audio->out[1].size = audio->out[0].size;
1706
1707 audio->wma_config.armdatareqthr = 1262;
1708 audio->wma_config.channelsdecoded = 2;
1709 audio->wma_config.wmabytespersec = 6003;
1710 audio->wma_config.wmasamplingfreq = 44100;
1711 audio->wma_config.wmaencoderopts = 31;
1712
1713 audio->out_sample_rate = 44100;
1714 audio->out_channel_mode = AUDPP_CMD_PCM_INTF_STEREO_V;
1715
1716 audio->vol_pan.volume = 0x2000;
1717
1718 audio_flush(audio);
1719
1720 file->private_data = audio;
1721 audio->opened = 1;
1722#ifdef CONFIG_DEBUG_FS
1723 snprintf(name, sizeof name, "msm_wma_%04x", audio->dec_id);
1724 audio->dentry = debugfs_create_file(name, S_IFREG | S_IRUGO,
1725 NULL, (void *) audio,
1726 &audwma_debug_fops);
1727
1728 if (IS_ERR(audio->dentry))
1729 MM_DBG("debugfs_create_file failed\n");
1730#endif
1731#ifdef CONFIG_HAS_EARLYSUSPEND
1732 audio->suspend_ctl.node.level = EARLY_SUSPEND_LEVEL_DISABLE_FB;
1733 audio->suspend_ctl.node.resume = audwma_resume;
1734 audio->suspend_ctl.node.suspend = audwma_suspend;
1735 audio->suspend_ctl.audio = audio;
1736 register_early_suspend(&audio->suspend_ctl.node);
1737#endif
1738 for (i = 0; i < AUDWMA_EVENT_NUM; i++) {
1739 e_node = kmalloc(sizeof(struct audwma_event), GFP_KERNEL);
1740 if (e_node)
1741 list_add_tail(&e_node->list, &audio->free_event_queue);
1742 else {
1743 MM_ERR("event pkt alloc failed\n");
1744 break;
1745 }
1746 }
1747done:
1748 return rc;
1749err:
Laura Abbott35111d32012-04-27 18:41:48 -07001750 iounmap(audio->map_v_write);
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301751 free_contiguous_memory_by_paddr(audio->phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001752 audpp_adec_free(audio->dec_id);
1753 kfree(audio);
1754 return rc;
1755}
1756
1757static const struct file_operations audio_wma_fops = {
1758 .owner = THIS_MODULE,
1759 .open = audio_open,
1760 .release = audio_release,
1761 .read = audio_read,
1762 .write = audio_write,
1763 .unlocked_ioctl = audio_ioctl,
1764 .fsync = audio_fsync,
1765};
1766
1767struct miscdevice audio_wma_misc = {
1768 .minor = MISC_DYNAMIC_MINOR,
1769 .name = "msm_wma",
1770 .fops = &audio_wma_fops,
1771};
1772
1773static int __init audio_init(void)
1774{
1775 return misc_register(&audio_wma_misc);
1776}
1777
1778device_initcall(audio_init);