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