blob: 1f04e764dcc08691ae81738d2d7fe76e213a8b75 [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* linux/arch/arm/mach-msm/qdsp5/audio_amrnb.c
2 *
3 * amrnb audio decoder device
4 *
Duy Truong790f06d2013-02-13 16:38:12 -08005 * Copyright (c) 2008-2009, 2011-2012 The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07006 *
7 * Based on the mp3 native driver in arch/arm/mach-msm/qdsp5/audio_mp3.c
8 *
9 * Copyright (C) 2008 Google, Inc.
10 * Copyright (C) 2008 HTC Corporation
11 *
12 * All source code in this file is licensed under the following license except
13 * where indicated.
14 *
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License version 2 as published
17 * by the Free Software Foundation.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 *
23 * See the GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, you can find it at http://www.fsf.org
26 */
27
Santosh Mardi0be3b8e2011-07-06 10:00:21 +053028#include <asm/atomic.h>
29#include <asm/ioctls.h>
30
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070031#include <linux/module.h>
32#include <linux/fs.h>
33#include <linux/miscdevice.h>
34#include <linux/uaccess.h>
35#include <linux/kthread.h>
36#include <linux/wait.h>
37#include <linux/dma-mapping.h>
38#include <linux/debugfs.h>
39#include <linux/delay.h>
40#include <linux/list.h>
41#include <linux/earlysuspend.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070042#include <linux/slab.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070043#include <linux/msm_audio.h>
Santosh Mardi0be3b8e2011-07-06 10:00:21 +053044#include <linux/memory_alloc.h>
Mitchel Humpherys1da6ebe2012-09-06 10:15:56 -070045#include <linux/msm_ion.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070046
Santosh Mardi0be3b8e2011-07-06 10:00:21 +053047#include <mach/msm_adsp.h>
48#include <mach/iommu.h>
49#include <mach/iommu_domains.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070050#include <mach/qdsp5/qdsp5audppcmdi.h>
51#include <mach/qdsp5/qdsp5audppmsg.h>
52#include <mach/qdsp5/qdsp5audplaycmdi.h>
53#include <mach/qdsp5/qdsp5audplaymsg.h>
Manish Dewanganfa8a6b62012-07-09 16:23:27 +053054#include <mach/qdsp5/qdsp5audpp.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070055#include <mach/qdsp5/qdsp5rmtcmdi.h>
56#include <mach/debug_mm.h>
Santosh Mardi0be3b8e2011-07-06 10:00:21 +053057#include <mach/msm_memtypes.h>
58
59#include "audmgr.h"
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070060
61#define BUFSZ 1024 /* Hold minimum 700ms voice data and 14 bytes of meta in*/
62#define DMASZ (BUFSZ * 2)
63
64#define AUDPLAY_INVALID_READ_PTR_OFFSET 0xFFFF
65#define AUDDEC_DEC_AMRNB 10
66
67#define PCM_BUFSZ_MIN 1624 /* 100ms worth of data and 24 bytes of meta out*/
68#define AMRNB_DECODED_FRSZ 320 /* AMR-NB 20ms 8KHz mono PCM size */
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 AUDAMRNB_METAFIELD_MASK 0xFFFF0000
80#define AUDAMRNB_EOS_FLG_OFFSET 0x0A /* Offset from beginning of buffer */
81#define AUDAMRNB_EOS_FLG_MASK 0x01
82#define AUDAMRNB_EOS_NONE 0x0 /* No EOS detected */
83#define AUDAMRNB_EOS_SET 0x1 /* EOS set in meta field */
84
85#define AUDAMRNB_EVENT_NUM 10 /* Default number of pre-allocated event pkts */
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 audamrnb_suspend_ctl {
97 struct early_suspend node;
98 struct audio *audio;
99};
100#endif
101
102struct audamrnb_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
117 atomic_t out_bytes;
118
119 struct mutex lock;
120 struct mutex write_lock;
121 wait_queue_head_t write_wait;
122
123 /* Host PCM section */
124 struct buffer in[PCM_BUF_MAX_COUNT];
125 struct mutex read_lock;
126 wait_queue_head_t read_wait; /* Wait queue for read */
127 char *read_data; /* pointer to reader buffer */
128 int32_t read_phys; /* physical address of reader buffer */
129 uint8_t read_next; /* index to input buffers to be read next */
130 uint8_t fill_next; /* index to buffer that DSP should be filling */
131 uint8_t pcm_buf_count; /* number of pcm buffer allocated */
132 /* ---- End of Host PCM section */
133
134 struct msm_adsp_module *audplay;
135
136 struct audmgr audmgr;
137
138 /* data allocated for various buffers */
139 char *data;
140 int32_t phys; /* physical address of write buffer */
Laura Abbott35111d32012-04-27 18:41:48 -0700141 void *map_v_read;
142 void *map_v_write;
Santosh Mardi0be3b8e2011-07-06 10:00:21 +0530143
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 uint8_t opened:1;
149 uint8_t enabled:1;
150 uint8_t running:1;
151 uint8_t stopped:1; /* set when stopped, cleared on flush */
152 uint8_t pcm_feedback:1;
153 uint8_t buf_refresh:1;
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 rmt_resource_released;
157
158 const char *module_name;
159 unsigned queue_id;
160 uint16_t dec_id;
161 uint32_t read_ptr_offset;
162
163#ifdef CONFIG_HAS_EARLYSUSPEND
164 struct audamrnb_suspend_ctl suspend_ctl;
165#endif
166
167#ifdef CONFIG_DEBUG_FS
168 struct dentry *dentry;
169#endif
170
171 wait_queue_head_t wait;
172 struct list_head free_event_queue;
173 struct list_head event_queue;
174 wait_queue_head_t event_wait;
175 spinlock_t event_queue_lock;
176 struct mutex get_event_lock;
177 int event_abort;
178
179 int eq_enable;
180 int eq_needs_commit;
181 audpp_cmd_cfg_object_params_eqalizer eq;
182 audpp_cmd_cfg_object_params_volume vol_pan;
Sidipotu Ashok172c98b2012-06-26 17:58:29 +0530183 struct ion_client *client;
184 struct ion_handle *input_buff_handle;
185 struct ion_handle *output_buff_handle;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700186};
187
188struct audpp_cmd_cfg_adec_params_amrnb {
189 audpp_cmd_cfg_adec_params_common common;
190 unsigned short stereo_cfg;
191} __attribute__((packed)) ;
192
193static int auddec_dsp_config(struct audio *audio, int enable);
194static void audpp_cmd_cfg_adec_params(struct audio *audio);
195static void audpp_cmd_cfg_routing_mode(struct audio *audio);
196static void audamrnb_send_data(struct audio *audio, unsigned needed);
197static void audamrnb_config_hostpcm(struct audio *audio);
198static void audamrnb_buffer_refresh(struct audio *audio);
199static void audamrnb_dsp_event(void *private, unsigned id, uint16_t *msg);
200#ifdef CONFIG_HAS_EARLYSUSPEND
201static void audamrnb_post_event(struct audio *audio, int type,
202 union msm_audio_event_payload payload);
203#endif
204
205static int rmt_put_resource(struct audio *audio)
206{
207 struct aud_codec_config_cmd cmd;
208 unsigned short client_idx;
209
210 cmd.cmd_id = RM_CMD_AUD_CODEC_CFG;
211 cmd.client_id = RM_AUD_CLIENT_ID;
212 cmd.task_id = audio->dec_id;
213 cmd.enable = RMT_DISABLE;
214 cmd.dec_type = AUDDEC_DEC_AMRNB;
215 client_idx = ((cmd.client_id << 8) | cmd.task_id);
216
217 return put_adsp_resource(client_idx, &cmd, sizeof(cmd));
218}
219
220static int rmt_get_resource(struct audio *audio)
221{
222 struct aud_codec_config_cmd cmd;
223 unsigned short client_idx;
224
225 cmd.cmd_id = RM_CMD_AUD_CODEC_CFG;
226 cmd.client_id = RM_AUD_CLIENT_ID;
227 cmd.task_id = audio->dec_id;
228 cmd.enable = RMT_ENABLE;
229 cmd.dec_type = AUDDEC_DEC_AMRNB;
230 client_idx = ((cmd.client_id << 8) | cmd.task_id);
231
232 return get_adsp_resource(client_idx, &cmd, sizeof(cmd));
233}
234
235/* must be called with audio->lock held */
236static int audamrnb_enable(struct audio *audio)
237{
238 struct audmgr_config cfg;
239 int rc;
240
241 MM_DBG("\n"); /* Macro prints the file name and function */
242 if (audio->enabled)
243 return 0;
244
245 if (audio->rmt_resource_released == 1) {
246 audio->rmt_resource_released = 0;
247 rc = rmt_get_resource(audio);
248 if (rc) {
249 MM_ERR("ADSP resources are not available for AMRNB \
250 session 0x%08x on decoder: %d\n Ignoring \
251 error and going ahead with the playback\n",
252 (int)audio, audio->dec_id);
253 }
254 }
255
256 audio->dec_state = MSM_AUD_DECODER_STATE_NONE;
257 audio->out_tail = 0;
258 audio->out_needed = 0;
259
260 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK) {
261 cfg.tx_rate = RPC_AUD_DEF_SAMPLE_RATE_NONE;
262 cfg.rx_rate = RPC_AUD_DEF_SAMPLE_RATE_48000;
263 cfg.def_method = RPC_AUD_DEF_METHOD_PLAYBACK;
264 cfg.codec = RPC_AUD_DEF_CODEC_AMR_NB;
265 cfg.snd_method = RPC_SND_METHOD_MIDI;
266
267 rc = audmgr_enable(&audio->audmgr, &cfg);
=Chaithanya Krishna Bacharajub5c4e982012-12-06 09:53:18 +0530268 if (rc < 0) {
269 msm_adsp_dump(audio->audplay);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700270 return rc;
=Chaithanya Krishna Bacharajub5c4e982012-12-06 09:53:18 +0530271 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700272 }
273
274 if (msm_adsp_enable(audio->audplay)) {
275 MM_ERR("msm_adsp_enable(audplay) failed\n");
276 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK)
277 audmgr_disable(&audio->audmgr);
278 return -ENODEV;
279 }
280
281 if (audpp_enable(audio->dec_id, audamrnb_dsp_event, audio)) {
282 MM_ERR("audpp_enable() failed\n");
283 msm_adsp_disable(audio->audplay);
284 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK)
285 audmgr_disable(&audio->audmgr);
286 return -ENODEV;
287 }
288 audio->enabled = 1;
289 return 0;
290}
291
292/* must be called with audio->lock held */
293static int audamrnb_disable(struct audio *audio)
294{
295 int rc = 0;
296 MM_DBG("\n"); /* Macro prints the file name and function */
297 if (audio->enabled) {
298 audio->enabled = 0;
299 audio->dec_state = MSM_AUD_DECODER_STATE_NONE;
300 auddec_dsp_config(audio, 0);
301 rc = wait_event_interruptible_timeout(audio->wait,
302 audio->dec_state != MSM_AUD_DECODER_STATE_NONE,
303 msecs_to_jiffies(MSM_AUD_DECODER_WAIT_MS));
304 if (rc == 0)
305 rc = -ETIMEDOUT;
306 else if (audio->dec_state != MSM_AUD_DECODER_STATE_CLOSE)
307 rc = -EFAULT;
308 else
309 rc = 0;
Manish Dewangan89a9f232012-02-09 17:14:40 +0530310 audio->stopped = 1;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700311 wake_up(&audio->write_wait);
312 wake_up(&audio->read_wait);
313 msm_adsp_disable(audio->audplay);
314 audpp_disable(audio->dec_id, audio);
=Chaithanya Krishna Bacharajub5c4e982012-12-06 09:53:18 +0530315 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK) {
316 rc = audmgr_disable(&audio->audmgr);
317 if (rc < 0)
318 msm_adsp_dump(audio->audplay);
319 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700320 audio->out_needed = 0;
321 rmt_put_resource(audio);
322 audio->rmt_resource_released = 1;
323 }
324 return rc;
325}
326
327/* ------------------- dsp --------------------- */
328static void audamrnb_update_pcm_buf_entry(struct audio *audio,
329 uint32_t *payload)
330{
331 uint8_t index;
332 unsigned long flags;
333
334 if (audio->rflush)
335 return;
336
337 spin_lock_irqsave(&audio->dsp_lock, flags);
338 for (index = 0; index < payload[1]; index++) {
339 if (audio->in[audio->fill_next].addr ==
340 payload[2 + index * 2]) {
341 MM_DBG("in[%d] ready\n", audio->fill_next);
342 audio->in[audio->fill_next].used =
343 payload[3 + index * 2];
344 if ((++audio->fill_next) == audio->pcm_buf_count)
345 audio->fill_next = 0;
346
347 } else {
348 MM_ERR("expected=%x ret=%x\n",
349 audio->in[audio->fill_next].addr,
350 payload[1 + index * 2]);
351 break;
352 }
353 }
354 if (audio->in[audio->fill_next].used == 0) {
355 audamrnb_buffer_refresh(audio);
356 } else {
357 MM_DBG("read cannot keep up\n");
358 audio->buf_refresh = 1;
359 }
360 wake_up(&audio->read_wait);
361 spin_unlock_irqrestore(&audio->dsp_lock, flags);
362}
363
364static void audplay_dsp_event(void *data, unsigned id, size_t len,
365 void (*getevent) (void *ptr, size_t len))
366{
367 struct audio *audio = data;
368 uint32_t msg[28];
369 getevent(msg, sizeof(msg));
370
371 MM_DBG("msg_id=%x\n", id);
372
373 switch (id) {
374 case AUDPLAY_MSG_DEC_NEEDS_DATA:
375 audamrnb_send_data(audio, 1);
376 break;
377
378 case AUDPLAY_MSG_BUFFER_UPDATE:
379 audamrnb_update_pcm_buf_entry(audio, msg);
380 break;
381
382 case ADSP_MESSAGE_ID:
383 MM_DBG("Received ADSP event: module enable(audplaytask)\n");
384 break;
385
386 default:
387 MM_ERR("unexpected message from decoder\n");
388 }
389}
390
391static void audamrnb_dsp_event(void *private, unsigned id, uint16_t *msg)
392{
393 struct audio *audio = private;
394
395 switch (id) {
396 case AUDPP_MSG_STATUS_MSG:{
397 unsigned status = msg[1];
398
399 switch (status) {
400 case AUDPP_DEC_STATUS_SLEEP: {
401 uint16_t reason = msg[2];
402 MM_DBG("decoder status:sleep reason = \
403 0x%04x\n", reason);
404 if ((reason == AUDPP_MSG_REASON_MEM)
405 || (reason ==
406 AUDPP_MSG_REASON_NODECODER)) {
407 audio->dec_state =
408 MSM_AUD_DECODER_STATE_FAILURE;
409 wake_up(&audio->wait);
410 } else if (reason == AUDPP_MSG_REASON_NONE) {
411 /* decoder is in disable state */
412 audio->dec_state =
413 MSM_AUD_DECODER_STATE_CLOSE;
414 wake_up(&audio->wait);
415 }
416 break;
417 }
418 case AUDPP_DEC_STATUS_INIT:
419 MM_DBG("decoder status: init \n");
420 if (audio->pcm_feedback)
421 audpp_cmd_cfg_routing_mode(audio);
422 else
423 audpp_cmd_cfg_adec_params(audio);
424 break;
425
426 case AUDPP_DEC_STATUS_CFG:
427 MM_DBG("decoder status: cfg \n");
428 break;
429 case AUDPP_DEC_STATUS_PLAY:
430 MM_DBG("decoder status: play \n");
431 if (audio->pcm_feedback) {
432 audamrnb_config_hostpcm(audio);
433 audamrnb_buffer_refresh(audio);
434 }
435 audio->dec_state =
436 MSM_AUD_DECODER_STATE_SUCCESS;
437 wake_up(&audio->wait);
438 break;
439 default:
440 MM_ERR("unknown decoder status \n");
441 break;
442 }
443 break;
444 }
445 case AUDPP_MSG_CFG_MSG:
446 if (msg[0] == AUDPP_MSG_ENA_ENA) {
447 MM_DBG("CFG_MSG ENABLE\n");
448 auddec_dsp_config(audio, 1);
449 audio->out_needed = 0;
450 audio->running = 1;
451 audpp_dsp_set_vol_pan(audio->dec_id, &audio->vol_pan);
452 audpp_dsp_set_eq(audio->dec_id, audio->eq_enable,
453 &audio->eq);
454 audpp_avsync(audio->dec_id, 22050);
455 } else if (msg[0] == AUDPP_MSG_ENA_DIS) {
456 MM_DBG("CFG_MSG DISABLE\n");
457 audpp_avsync(audio->dec_id, 0);
458 audio->running = 0;
459 } else {
460 MM_DBG("CFG_MSG %d?\n", msg[0]);
461 }
462 break;
463 case AUDPP_MSG_ROUTING_ACK:
464 MM_DBG("ROUTING_ACK mode=%d\n", msg[1]);
465 audpp_cmd_cfg_adec_params(audio);
466 break;
467 case AUDPP_MSG_FLUSH_ACK:
468 MM_DBG("FLUSH_ACK\n");
469 audio->wflush = 0;
470 audio->rflush = 0;
471 wake_up(&audio->write_wait);
472 if (audio->pcm_feedback)
473 audamrnb_buffer_refresh(audio);
474 break;
475 case AUDPP_MSG_PCMDMAMISSED:
476 MM_DBG("PCMDMAMISSED\n");
477 audio->teos = 1;
478 wake_up(&audio->write_wait);
479 break;
480 default:
481 MM_ERR("UNKNOWN (%d)\n", id);
482 }
483
484}
485
486struct msm_adsp_ops audplay_adsp_ops_amrnb = {
487 .event = audplay_dsp_event,
488};
489
490#define audplay_send_queue0(audio, cmd, len) \
491 msm_adsp_write(audio->audplay, audio->queue_id, \
492 cmd, len)
493
494static int auddec_dsp_config(struct audio *audio, int enable)
495{
496 u16 cfg_dec_cmd[AUDPP_CMD_CFG_DEC_TYPE_LEN / sizeof(unsigned short)];
497
498 memset(cfg_dec_cmd, 0, sizeof(cfg_dec_cmd));
499 cfg_dec_cmd[0] = AUDPP_CMD_CFG_DEC_TYPE;
500 if (enable)
501 cfg_dec_cmd[1 + audio->dec_id] = AUDPP_CMD_UPDATDE_CFG_DEC |
502 AUDPP_CMD_ENA_DEC_V | AUDDEC_DEC_AMRNB;
503 else
504 cfg_dec_cmd[1 + audio->dec_id] = AUDPP_CMD_UPDATDE_CFG_DEC |
505 AUDPP_CMD_DIS_DEC_V;
506
507 return audpp_send_queue1(&cfg_dec_cmd, sizeof(cfg_dec_cmd));
508}
509
510static void audpp_cmd_cfg_adec_params(struct audio *audio)
511{
512 struct audpp_cmd_cfg_adec_params_amrnb cmd;
513
514 memset(&cmd, 0, sizeof(cmd));
515 cmd.common.cmd_id = AUDPP_CMD_CFG_ADEC_PARAMS;
516 cmd.common.length = AUDPP_CMD_CFG_ADEC_PARAMS_V13K_LEN;
517 cmd.common.dec_id = audio->dec_id;
518 cmd.common.input_sampling_frequency = 8000;
519 cmd.stereo_cfg = AUDPP_CMD_PCM_INTF_MONO_V;
520
521 audpp_send_queue2(&cmd, sizeof(cmd));
522}
523
524static void audpp_cmd_cfg_routing_mode(struct audio *audio)
525{
526 struct audpp_cmd_routing_mode cmd;
527 MM_DBG("\n"); /* Macro prints the file name and function */
528 memset(&cmd, 0, sizeof(cmd));
529 cmd.cmd_id = AUDPP_CMD_ROUTING_MODE;
530 cmd.object_number = audio->dec_id;
531 if (audio->pcm_feedback)
532 cmd.routing_mode = ROUTING_MODE_FTRT;
533 else
534 cmd.routing_mode = ROUTING_MODE_RT;
535
536 audpp_send_queue1(&cmd, sizeof(cmd));
537}
538
539static int audplay_dsp_send_data_avail(struct audio *audio,
540 unsigned idx, unsigned len)
541{
542 struct audplay_cmd_bitstream_data_avail_nt2 cmd;
543
544 cmd.cmd_id = AUDPLAY_CMD_BITSTREAM_DATA_AVAIL_NT2;
545 if (audio->mfield)
546 cmd.decoder_id = AUDAMRNB_METAFIELD_MASK |
547 (audio->out[idx].mfield_sz >> 1);
548 else
549 cmd.decoder_id = audio->dec_id;
550 cmd.buf_ptr = audio->out[idx].addr;
551 cmd.buf_size = len / 2;
552 cmd.partition_number = 0;
553 /* complete writes to the input buffer */
554 wmb();
555 return audplay_send_queue0(audio, &cmd, sizeof(cmd));
556}
557
558static void audamrnb_buffer_refresh(struct audio *audio)
559{
560 struct audplay_cmd_buffer_refresh refresh_cmd;
561
562 refresh_cmd.cmd_id = AUDPLAY_CMD_BUFFER_REFRESH;
563 refresh_cmd.num_buffers = 1;
564 refresh_cmd.buf0_address = audio->in[audio->fill_next].addr;
565 refresh_cmd.buf0_length = audio->in[audio->fill_next].size -
566 (audio->in[audio->fill_next].size % AMRNB_DECODED_FRSZ) +
567 (audio->mfield ? 24 : 0);
568 refresh_cmd.buf_read_count = 0;
569 MM_DBG("buf0_addr=%x buf0_len=%d\n", refresh_cmd.buf0_address,
570 refresh_cmd.buf0_length);
571 (void)audplay_send_queue0(audio, &refresh_cmd, sizeof(refresh_cmd));
572}
573
574static void audamrnb_config_hostpcm(struct audio *audio)
575{
576 struct audplay_cmd_hpcm_buf_cfg cfg_cmd;
577
578 MM_DBG("\n"); /* Macro prints the file name and function */
579 cfg_cmd.cmd_id = AUDPLAY_CMD_HPCM_BUF_CFG;
580 cfg_cmd.max_buffers = audio->pcm_buf_count;
581 cfg_cmd.byte_swap = 0;
582 cfg_cmd.hostpcm_config = (0x8000) | (0x4000);
583 cfg_cmd.feedback_frequency = 1;
584 cfg_cmd.partition_number = 0;
585 (void)audplay_send_queue0(audio, &cfg_cmd, sizeof(cfg_cmd));
586
587}
588
589static void audamrnb_send_data(struct audio *audio, unsigned needed)
590{
591 struct buffer *frame;
592 unsigned long flags;
593
594 spin_lock_irqsave(&audio->dsp_lock, flags);
595 if (!audio->running)
596 goto done;
597
598 if (needed && !audio->wflush) {
599 /* We were called from the callback because the DSP
600 * requested more data. Note that the DSP does want
601 * more data, and if a buffer was in-flight, mark it
602 * as available (since the DSP must now be done with
603 * it).
604 */
605 audio->out_needed = 1;
606 frame = audio->out + audio->out_tail;
607 if (frame->used == 0xffffffff) {
608 frame->used = 0;
609 audio->out_tail ^= 1;
610 wake_up(&audio->write_wait);
611 }
612 }
613
614 if (audio->out_needed) {
615 /* If the DSP currently wants data and we have a
616 * buffer available, we will send it and reset
617 * the needed flag. We'll mark the buffer as in-flight
618 * so that it won't be recycled until the next buffer
619 * is requested
620 */
621
622 frame = audio->out + audio->out_tail;
623 if (frame->used) {
624 BUG_ON(frame->used == 0xffffffff);
625 MM_DBG("frame %d busy\n", audio->out_tail);
626 audplay_dsp_send_data_avail(audio, audio->out_tail,
627 frame->used);
628 frame->used = 0xffffffff;
629 audio->out_needed = 0;
630 }
631 }
632 done:
633 spin_unlock_irqrestore(&audio->dsp_lock, flags);
634}
635
636/* ------------------- device --------------------- */
637
638static void audamrnb_flush(struct audio *audio)
639{
Manish Dewangana4f1df02012-02-08 17:06:54 +0530640 unsigned long flags;
641
642 spin_lock_irqsave(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700643 audio->out[0].used = 0;
644 audio->out[1].used = 0;
645 audio->out_head = 0;
646 audio->out_tail = 0;
647 audio->out_needed = 0;
Manish Dewangana4f1df02012-02-08 17:06:54 +0530648 spin_unlock_irqrestore(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700649 atomic_set(&audio->out_bytes, 0);
650}
651
652static void audamrnb_flush_pcm_buf(struct audio *audio)
653{
654 uint8_t index;
Manish Dewangana4f1df02012-02-08 17:06:54 +0530655 unsigned long flags;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700656
Manish Dewangana4f1df02012-02-08 17:06:54 +0530657 spin_lock_irqsave(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700658 for (index = 0; index < PCM_BUF_MAX_COUNT; index++)
659 audio->in[index].used = 0;
660
661 audio->buf_refresh = 0;
662 audio->read_next = 0;
663 audio->fill_next = 0;
Manish Dewangana4f1df02012-02-08 17:06:54 +0530664 spin_unlock_irqrestore(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700665}
666
667static void audamrnb_ioport_reset(struct audio *audio)
668{
669 /* Make sure read/write thread are free from
670 * sleep and knowing that system is not able
671 * to process io request at the moment
672 */
673 wake_up(&audio->write_wait);
674 mutex_lock(&audio->write_lock);
675 audamrnb_flush(audio);
676 mutex_unlock(&audio->write_lock);
677 wake_up(&audio->read_wait);
678 mutex_lock(&audio->read_lock);
679 audamrnb_flush_pcm_buf(audio);
680 mutex_unlock(&audio->read_lock);
681}
682
683static int audamrnb_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 audamrnb_reset_event_queue(struct audio *audio)
695{
696 unsigned long flags;
697 struct audamrnb_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 audamrnb_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 audamrnb_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 audamrnb_process_event_req(struct audio *audio, void __user *arg)
719{
720 long rc;
721 struct msm_audio_event usr_evt;
722 struct audamrnb_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, audamrnb_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, audamrnb_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 audamrnb_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);
782 audio->eq_needs_commit = 0;
783 }
784 return 0;
785}
786
787static long audamrnb_ioctl(struct file *file, unsigned int cmd,
788 unsigned long arg)
789{
790 struct audio *audio = file->private_data;
791 int rc = -EINVAL;
792 unsigned long flags = 0;
793 uint16_t enable_mask;
794 int enable;
795 int prev_state;
Sidipotu Ashok172c98b2012-06-26 17:58:29 +0530796 unsigned long ionflag = 0;
797 ion_phys_addr_t addr = 0;
798 struct ion_handle *handle = NULL;
799 int len = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700800
801 MM_DBG("cmd = %d\n", cmd);
802
803 if (cmd == AUDIO_GET_STATS) {
804 struct msm_audio_stats stats;
805 stats.byte_count = audpp_avsync_byte_count(audio->dec_id);
806 stats.sample_count = audpp_avsync_sample_count(audio->dec_id);
807 if (copy_to_user((void *)arg, &stats, sizeof(stats)))
808 return -EFAULT;
809 return 0;
810 }
811
812 switch (cmd) {
813 case AUDIO_ENABLE_AUDPP:
814 if (copy_from_user(&enable_mask, (void *) arg,
815 sizeof(enable_mask))) {
816 rc = -EFAULT;
817 break;
818 }
819
820 spin_lock_irqsave(&audio->dsp_lock, flags);
821 enable = (enable_mask & EQ_ENABLE) ? 1 : 0;
822 audio_enable_eq(audio, enable);
823 spin_unlock_irqrestore(&audio->dsp_lock, flags);
824 rc = 0;
825 break;
826 case AUDIO_SET_VOLUME:
827 spin_lock_irqsave(&audio->dsp_lock, flags);
828 audio->vol_pan.volume = arg;
829 if (audio->running)
830 audpp_dsp_set_vol_pan(audio->dec_id, &audio->vol_pan);
831 spin_unlock_irqrestore(&audio->dsp_lock, flags);
832 rc = 0;
833 break;
834
835 case AUDIO_SET_PAN:
836 spin_lock_irqsave(&audio->dsp_lock, flags);
837 audio->vol_pan.pan = arg;
838 if (audio->running)
839 audpp_dsp_set_vol_pan(audio->dec_id, &audio->vol_pan);
840 spin_unlock_irqrestore(&audio->dsp_lock, flags);
841 rc = 0;
842 break;
843
844 case AUDIO_SET_EQ:
845 prev_state = audio->eq_enable;
846 audio->eq_enable = 0;
847 if (copy_from_user(&audio->eq.num_bands, (void *) arg,
848 sizeof(audio->eq) -
849 (AUDPP_CMD_CFG_OBJECT_PARAMS_COMMON_LEN + 2))) {
850 rc = -EFAULT;
851 break;
852 }
853 audio->eq_enable = prev_state;
854 audio->eq_needs_commit = 1;
855 rc = 0;
856 break;
857 }
858
859 if (-EINVAL != rc)
860 return rc;
861
862 if (cmd == AUDIO_GET_EVENT) {
863 MM_DBG("AUDIO_GET_EVENT\n");
864 if (mutex_trylock(&audio->get_event_lock)) {
865 rc = audamrnb_process_event_req(audio,
866 (void __user *) arg);
867 mutex_unlock(&audio->get_event_lock);
868 } else
869 rc = -EBUSY;
870 return rc;
871 }
872
873 if (cmd == AUDIO_ABORT_GET_EVENT) {
874 audio->event_abort = 1;
875 wake_up(&audio->event_wait);
876 return 0;
877 }
878
879 mutex_lock(&audio->lock);
880 switch (cmd) {
881 case AUDIO_START:
882 MM_DBG("AUDIO_START\n");
883 rc = audamrnb_enable(audio);
884 if (!rc) {
885 rc = wait_event_interruptible_timeout(audio->wait,
886 audio->dec_state != MSM_AUD_DECODER_STATE_NONE,
887 msecs_to_jiffies(MSM_AUD_DECODER_WAIT_MS));
888 MM_INFO("dec_state %d rc = %d\n", audio->dec_state, rc);
889
890 if (audio->dec_state != MSM_AUD_DECODER_STATE_SUCCESS)
891 rc = -ENODEV;
892 else
893 rc = 0;
894 }
895 break;
896 case AUDIO_STOP:
897 MM_DBG("AUDIO_STOP\n");
898 rc = audamrnb_disable(audio);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700899 audamrnb_ioport_reset(audio);
900 audio->stopped = 0;
901 break;
902 case AUDIO_FLUSH:
903 MM_DBG("AUDIO_FLUSH\n");
904 audio->rflush = 1;
905 audio->wflush = 1;
906 audamrnb_ioport_reset(audio);
907 if (audio->running) {
908 audpp_flush(audio->dec_id);
909 rc = wait_event_interruptible(audio->write_wait,
910 !audio->wflush);
911 if (rc < 0) {
912 MM_ERR("AUDIO_FLUSH interrupted\n");
913 rc = -EINTR;
914 }
915 } else {
916 audio->rflush = 0;
917 audio->wflush = 0;
918 }
919 break;
920 case AUDIO_SET_CONFIG:{
921 struct msm_audio_config config;
922 if (copy_from_user
923 (&config, (void *)arg, sizeof(config))) {
924 rc = -EFAULT;
925 break;
926 }
927 audio->mfield = config.meta_field;
928 rc = 0;
929 break;
930 }
931 case AUDIO_GET_CONFIG:{
932 struct msm_audio_config config;
933 config.buffer_size = BUFSZ;
934 config.buffer_count = 2;
935 config.sample_rate = 8000;
936 config.channel_count = 1;
937 config.meta_field = 0;
938 config.unused[0] = 0;
939 config.unused[1] = 0;
940 config.unused[2] = 0;
941 if (copy_to_user((void *)arg, &config,
942 sizeof(config)))
943 rc = -EFAULT;
944 else
945 rc = 0;
946
947 break;
948 }
949 case AUDIO_GET_PCM_CONFIG:{
950 struct msm_audio_pcm_config config;
951 config.pcm_feedback = audio->pcm_feedback;
952 config.buffer_count = PCM_BUF_MAX_COUNT;
953 config.buffer_size = PCM_BUFSZ_MIN;
954 if (copy_to_user((void *)arg, &config,
955 sizeof(config)))
956 rc = -EFAULT;
957 else
958 rc = 0;
959 break;
960 }
961 case AUDIO_SET_PCM_CONFIG:{
962 struct msm_audio_pcm_config config;
963 if (copy_from_user
964 (&config, (void *)arg, sizeof(config))) {
965 rc = -EFAULT;
966 break;
967 }
968 if (config.pcm_feedback != audio->pcm_feedback) {
969 MM_ERR("Not sufficient permission to"
970 "change the playback mode\n");
971 rc = -EACCES;
972 break;
973 }
974 if ((config.buffer_count > PCM_BUF_MAX_COUNT) ||
975 (config.buffer_count == 1))
976 config.buffer_count = PCM_BUF_MAX_COUNT;
977
978 if (config.buffer_size < PCM_BUFSZ_MIN)
979 config.buffer_size = PCM_BUFSZ_MIN;
980
981 /* Check if pcm feedback is required */
982 if ((config.pcm_feedback) && (!audio->read_data)) {
983 MM_DBG("allocate PCM buf %d\n",
984 config.buffer_count *
985 config.buffer_size);
Sidipotu Ashok172c98b2012-06-26 17:58:29 +0530986 handle = ion_alloc(audio->client,
987 (config.buffer_size *
988 config.buffer_count),
Hanumant Singh7d72bad2012-08-29 18:39:44 -0700989 SZ_4K, ION_HEAP(ION_AUDIO_HEAP_ID), 0);
Sidipotu Ashok172c98b2012-06-26 17:58:29 +0530990 if (IS_ERR_OR_NULL(handle)) {
991 MM_ERR("Unable to alloc I/P buffs\n");
992 audio->input_buff_handle = NULL;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700993 rc = -ENOMEM;
994 break;
Sidipotu Ashok172c98b2012-06-26 17:58:29 +0530995 }
996
997 audio->input_buff_handle = handle;
998
999 rc = ion_phys(audio->client ,
1000 handle, &addr, &len);
1001 if (rc) {
1002 MM_ERR("Invalid phy: %x sz: %x\n",
1003 (unsigned int) addr,
1004 (unsigned int) len);
1005 ion_free(audio->client, handle);
1006 audio->input_buff_handle = NULL;
1007 rc = -ENOMEM;
1008 break;
1009 } else {
1010 MM_INFO("Got valid phy: %x sz: %x\n",
1011 (unsigned int) audio->read_phys,
1012 (unsigned int) len);
1013 }
1014 audio->read_phys = (int32_t)addr;
1015
1016 rc = ion_handle_get_flags(audio->client,
1017 handle, &ionflag);
1018 if (rc) {
1019 MM_ERR("could not get flags\n");
1020 ion_free(audio->client, handle);
1021 audio->input_buff_handle = NULL;
1022 rc = -ENOMEM;
1023 break;
1024 }
1025 audio->map_v_read = ion_map_kernel(
Mitchel Humpherys911b4b72012-09-12 14:42:50 -07001026 audio->client, handle);
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301027 if (IS_ERR(audio->map_v_read)) {
1028 MM_ERR("failed to map read buf\n");
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301029 ion_free(audio->client, handle);
1030 audio->input_buff_handle = NULL;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001031 rc = -ENOMEM;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001032 } else {
1033 uint8_t index;
1034 uint32_t offset = 0;
Santosh Mardi0be3b8e2011-07-06 10:00:21 +05301035 audio->read_data =
Laura Abbott35111d32012-04-27 18:41:48 -07001036 audio->map_v_read;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001037 audio->buf_refresh = 0;
1038 audio->pcm_buf_count =
1039 config.buffer_count;
1040 audio->read_next = 0;
1041 audio->fill_next = 0;
1042
1043 for (index = 0;
1044 index < config.buffer_count; index++) {
1045 audio->in[index].data =
1046 audio->read_data + offset;
1047 audio->in[index].addr =
1048 audio->read_phys + offset;
1049 audio->in[index].size =
1050 config.buffer_size;
1051 audio->in[index].used = 0;
1052 offset += config.buffer_size;
1053 }
1054 MM_DBG("read buf: phy addr 0x%08x kernel \
1055 addr 0x%08x\n", audio->read_phys,
1056 (int)audio->read_data);
1057 rc = 0;
1058 }
1059 } else {
1060 rc = 0;
1061 }
1062 break;
1063 }
1064 default:
1065 rc = -EINVAL;
1066 }
1067 mutex_unlock(&audio->lock);
1068 return rc;
1069}
1070
1071/* Only useful in tunnel-mode */
Steve Mucklef132c6c2012-06-06 18:30:57 -07001072static int audamrnb_fsync(struct file *file, loff_t a, loff_t b, int datasync)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001073{
1074 struct audio *audio = file->private_data;
1075 int rc = 0;
1076
1077 MM_DBG("\n"); /* Macro prints the file name and function */
1078
1079 if (!audio->running || audio->pcm_feedback) {
1080 rc = -EINVAL;
1081 goto done_nolock;
1082 }
1083
1084 mutex_lock(&audio->write_lock);
1085
1086 rc = wait_event_interruptible(audio->write_wait,
1087 (!audio->out[0].used &&
1088 !audio->out[1].used &&
1089 audio->out_needed) || audio->wflush);
1090
1091 if (rc < 0)
1092 goto done;
1093 else if (audio->wflush) {
1094 rc = -EBUSY;
1095 goto done;
1096 }
1097
1098 /* pcm dmamiss message is sent continously
1099 * when decoder is starved so no race
1100 * condition concern
1101 */
1102 audio->teos = 0;
1103
1104 rc = wait_event_interruptible(audio->write_wait,
1105 audio->teos || audio->wflush);
1106
1107 if (audio->wflush)
1108 rc = -EBUSY;
1109
1110done:
1111 mutex_unlock(&audio->write_lock);
1112done_nolock:
1113 return rc;
1114}
1115
1116static ssize_t audamrnb_read(struct file *file, char __user *buf, size_t count,
1117 loff_t *pos)
1118{
1119 struct audio *audio = file->private_data;
1120 const char __user *start = buf;
1121 int rc = 0;
1122
1123 if (!audio->pcm_feedback)
1124 return 0; /* PCM feedback is not enabled. Nothing to read */
1125
1126 mutex_lock(&audio->read_lock);
1127 MM_DBG("%d \n", count);
1128 while (count > 0) {
1129 rc = wait_event_interruptible(audio->read_wait,
1130 (audio->in[audio->read_next].used > 0) ||
1131 (audio->stopped) || (audio->rflush));
1132
1133 if (rc < 0)
1134 break;
1135
1136 if (audio->stopped || audio->rflush) {
1137 rc = -EBUSY;
1138 break;
1139 }
1140
1141 if (count < audio->in[audio->read_next].used) {
1142 /* Read must happen in frame boundary. Since driver does
1143 * not know frame size, read count must be greater or
1144 * equal to size of PCM samples
1145 */
1146 MM_DBG("read stop - partial frame\n");
1147 break;
1148 } else {
1149 MM_DBG("read from in[%d]\n", audio->read_next);
1150 /* order reads from the output buffer */
1151 rmb();
1152 if (copy_to_user
1153 (buf, audio->in[audio->read_next].data,
1154 audio->in[audio->read_next].used)) {
1155 MM_ERR("invalid addr %x \n", (unsigned int)buf);
1156 rc = -EFAULT;
1157 break;
1158 }
1159 count -= audio->in[audio->read_next].used;
1160 buf += audio->in[audio->read_next].used;
1161 audio->in[audio->read_next].used = 0;
1162 if ((++audio->read_next) == audio->pcm_buf_count)
1163 audio->read_next = 0;
1164 break;
1165 }
1166 }
1167
1168 /* don't feed output buffer to HW decoder during flushing
1169 * buffer refresh command will be sent once flush completes
1170 * send buf refresh command here can confuse HW decoder
1171 */
1172 if (audio->buf_refresh && !audio->rflush) {
1173 audio->buf_refresh = 0;
1174 MM_DBG("kick start pcm feedback again\n");
1175 audamrnb_buffer_refresh(audio);
1176 }
1177
1178 mutex_unlock(&audio->read_lock);
1179
1180 if (buf > start)
1181 rc = buf - start;
1182
1183 MM_DBG("read %d bytes\n", rc);
1184 return rc;
1185}
1186
1187static int audamrnb_process_eos(struct audio *audio,
1188 const char __user *buf_start, unsigned short mfield_size)
1189{
1190 int rc = 0;
1191 struct buffer *frame;
1192
1193 frame = audio->out + audio->out_head;
1194
1195 rc = wait_event_interruptible(audio->write_wait,
1196 (audio->out_needed &&
1197 audio->out[0].used == 0 &&
1198 audio->out[1].used == 0)
1199 || (audio->stopped)
1200 || (audio->wflush));
1201
1202 if (rc < 0)
1203 goto done;
1204 if (audio->stopped || audio->wflush) {
1205 rc = -EBUSY;
1206 goto done;
1207 }
1208
1209 if (copy_from_user(frame->data, buf_start, mfield_size)) {
1210 rc = -EFAULT;
1211 goto done;
1212 }
1213
1214 frame->mfield_sz = mfield_size;
1215 audio->out_head ^= 1;
1216 frame->used = mfield_size;
1217 audamrnb_send_data(audio, 0);
1218
1219done:
1220 return rc;
1221}
1222
1223static ssize_t audamrnb_write(struct file *file, const char __user *buf,
1224 size_t count, loff_t *pos)
1225{
1226 struct audio *audio = file->private_data;
1227 const char __user *start = buf;
1228 struct buffer *frame;
1229 size_t xfer;
1230 char *cpy_ptr;
1231 int rc = 0, eos_condition = AUDAMRNB_EOS_NONE;
1232 unsigned short mfield_size = 0;
1233
1234 MM_DBG("cnt=%d\n", count);
1235
1236 if (count & 1)
1237 return -EINVAL;
1238
1239 mutex_lock(&audio->write_lock);
1240 while (count > 0) {
1241 frame = audio->out + audio->out_head;
1242 cpy_ptr = frame->data;
1243 rc = wait_event_interruptible(audio->write_wait,
1244 (frame->used == 0)
1245 || (audio->stopped)
1246 || (audio->wflush));
1247
1248 MM_DBG("buffer available\n");
1249 if (rc < 0)
1250 break;
1251 if (audio->stopped || audio->wflush) {
1252 rc = -EBUSY;
1253 break;
1254 }
1255
1256 if (audio->mfield) {
1257 if (buf == start) {
1258 /* Processing beginning of user buffer */
1259 if (__get_user(mfield_size,
1260 (unsigned short __user *) buf)) {
1261 rc = -EFAULT;
1262 break;
1263 } else if (mfield_size > count) {
1264 rc = -EINVAL;
1265 break;
1266 }
1267 MM_DBG("mf offset_val %x\n", mfield_size);
1268 if (copy_from_user(cpy_ptr, buf, mfield_size)) {
1269 rc = -EFAULT;
1270 break;
1271 }
1272 /* Check if EOS flag is set and buffer
1273 * contains just meta field
1274 */
1275 if (cpy_ptr[AUDAMRNB_EOS_FLG_OFFSET] &
1276 AUDAMRNB_EOS_FLG_MASK) {
1277 MM_DBG("eos set\n");
1278 eos_condition = AUDAMRNB_EOS_SET;
1279 if (mfield_size == count) {
1280 buf += mfield_size;
1281 break;
1282 } else
1283 cpy_ptr[AUDAMRNB_EOS_FLG_OFFSET] &=
1284 ~AUDAMRNB_EOS_FLG_MASK;
1285 }
1286 cpy_ptr += mfield_size;
1287 count -= mfield_size;
1288 buf += mfield_size;
1289 } else {
1290 mfield_size = 0;
1291 MM_DBG("continuous buffer\n");
1292 }
1293 frame->mfield_sz = mfield_size;
1294 }
1295
1296 xfer = (count > (frame->size - mfield_size)) ?
1297 (frame->size - mfield_size) : count;
1298 if (copy_from_user(cpy_ptr, buf, xfer)) {
1299 rc = -EFAULT;
1300 break;
1301 }
1302
1303 frame->used = (xfer + mfield_size);
1304 audio->out_head ^= 1;
1305 count -= xfer;
1306 buf += xfer;
1307
1308 audamrnb_send_data(audio, 0);
1309
1310 }
1311 if (eos_condition == AUDAMRNB_EOS_SET)
1312 rc = audamrnb_process_eos(audio, start, mfield_size);
1313 mutex_unlock(&audio->write_lock);
1314 if (!rc) {
1315 if (buf > start)
1316 return buf - start;
1317 }
1318 return rc;
1319}
1320
1321static int audamrnb_release(struct inode *inode, struct file *file)
1322{
1323 struct audio *audio = file->private_data;
1324
1325 MM_INFO("audio instance 0x%08x freeing\n", (int)audio);
1326 mutex_lock(&audio->lock);
1327 audamrnb_disable(audio);
1328 if (audio->rmt_resource_released == 0)
1329 rmt_put_resource(audio);
1330 audamrnb_flush(audio);
1331 audamrnb_flush_pcm_buf(audio);
1332 msm_adsp_put(audio->audplay);
1333 audpp_adec_free(audio->dec_id);
1334#ifdef CONFIG_HAS_EARLYSUSPEND
1335 unregister_early_suspend(&audio->suspend_ctl.node);
1336#endif
1337 audio->event_abort = 1;
1338 wake_up(&audio->event_wait);
1339 audamrnb_reset_event_queue(audio);
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301340 ion_unmap_kernel(audio->client, audio->output_buff_handle);
1341 ion_free(audio->client, audio->output_buff_handle);
1342 if (audio->input_buff_handle != NULL) {
1343 ion_unmap_kernel(audio->client, audio->input_buff_handle);
1344 ion_free(audio->client, audio->input_buff_handle);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001345 }
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301346 ion_client_destroy(audio->client);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001347 mutex_unlock(&audio->lock);
1348#ifdef CONFIG_DEBUG_FS
1349 if (audio->dentry)
1350 debugfs_remove(audio->dentry);
1351#endif
1352 kfree(audio);
1353 return 0;
1354}
1355
1356#ifdef CONFIG_HAS_EARLYSUSPEND
1357static void audamrnb_post_event(struct audio *audio, int type,
1358 union msm_audio_event_payload payload)
1359{
1360 struct audamrnb_event *e_node = NULL;
1361 unsigned long flags;
1362
1363 spin_lock_irqsave(&audio->event_queue_lock, flags);
1364
1365 if (!list_empty(&audio->free_event_queue)) {
1366 e_node = list_first_entry(&audio->free_event_queue,
1367 struct audamrnb_event, list);
1368 list_del(&e_node->list);
1369 } else {
1370 e_node = kmalloc(sizeof(struct audamrnb_event), GFP_ATOMIC);
1371 if (!e_node) {
1372 MM_ERR("No mem to post event %d\n", type);
1373 spin_unlock_irqrestore(&audio->event_queue_lock, flags);
1374 return;
1375 }
1376 }
1377
1378 e_node->event_type = type;
1379 e_node->payload = payload;
1380
1381 list_add_tail(&e_node->list, &audio->event_queue);
1382 spin_unlock_irqrestore(&audio->event_queue_lock, flags);
1383 wake_up(&audio->event_wait);
1384}
1385
1386static void audamrnb_suspend(struct early_suspend *h)
1387{
1388 struct audamrnb_suspend_ctl *ctl =
1389 container_of(h, struct audamrnb_suspend_ctl, node);
1390 union msm_audio_event_payload payload;
1391
1392 MM_DBG("\n"); /* Macro prints the file name and function */
1393 audamrnb_post_event(ctl->audio, AUDIO_EVENT_SUSPEND, payload);
1394}
1395
1396static void audamrnb_resume(struct early_suspend *h)
1397{
1398 struct audamrnb_suspend_ctl *ctl =
1399 container_of(h, struct audamrnb_suspend_ctl, node);
1400 union msm_audio_event_payload payload;
1401
1402 MM_DBG("\n"); /* Macro prints the file name and function */
1403 audamrnb_post_event(ctl->audio, AUDIO_EVENT_RESUME, payload);
1404}
1405#endif
1406
1407#ifdef CONFIG_DEBUG_FS
1408static ssize_t audamrnb_debug_open(struct inode *inode, struct file *file)
1409{
1410 file->private_data = inode->i_private;
1411 return 0;
1412}
1413
1414static ssize_t audamrnb_debug_read(struct file *file, char __user *buf,
1415 size_t count, loff_t *ppos)
1416{
1417 const int debug_bufmax = 1024;
1418 static char buffer[1024];
1419 int n = 0, i;
1420 struct audio *audio = file->private_data;
1421
1422 mutex_lock(&audio->lock);
1423 n = scnprintf(buffer, debug_bufmax, "opened %d\n", audio->opened);
1424 n += scnprintf(buffer + n, debug_bufmax - n,
1425 "enabled %d\n", audio->enabled);
1426 n += scnprintf(buffer + n, debug_bufmax - n,
1427 "stopped %d\n", audio->stopped);
1428 n += scnprintf(buffer + n, debug_bufmax - n,
1429 "pcm_feedback %d\n", audio->pcm_feedback);
1430 n += scnprintf(buffer + n, debug_bufmax - n,
1431 "out_buf_sz %d\n", audio->out[0].size);
1432 n += scnprintf(buffer + n, debug_bufmax - n,
1433 "pcm_buf_count %d \n", audio->pcm_buf_count);
1434 n += scnprintf(buffer + n, debug_bufmax - n,
1435 "pcm_buf_sz %d \n", audio->in[0].size);
1436 n += scnprintf(buffer + n, debug_bufmax - n,
1437 "volume %x \n", audio->vol_pan.volume);
1438 mutex_unlock(&audio->lock);
1439 /* Following variables are only useful for debugging when
1440 * when playback halts unexpectedly. Thus, no mutual exclusion
1441 * enforced
1442 */
1443 n += scnprintf(buffer + n, debug_bufmax - n,
1444 "wflush %d\n", audio->wflush);
1445 n += scnprintf(buffer + n, debug_bufmax - n,
1446 "rflush %d\n", audio->rflush);
1447 n += scnprintf(buffer + n, debug_bufmax - n,
1448 "running %d \n", audio->running);
1449 n += scnprintf(buffer + n, debug_bufmax - n,
1450 "dec state %d \n", audio->dec_state);
1451 n += scnprintf(buffer + n, debug_bufmax - n,
1452 "out_needed %d \n", audio->out_needed);
1453 n += scnprintf(buffer + n, debug_bufmax - n,
1454 "out_head %d \n", audio->out_head);
1455 n += scnprintf(buffer + n, debug_bufmax - n,
1456 "out_tail %d \n", audio->out_tail);
1457 n += scnprintf(buffer + n, debug_bufmax - n,
1458 "out[0].used %d \n", audio->out[0].used);
1459 n += scnprintf(buffer + n, debug_bufmax - n,
1460 "out[1].used %d \n", audio->out[1].used);
1461 n += scnprintf(buffer + n, debug_bufmax - n,
1462 "buffer_refresh %d \n", audio->buf_refresh);
1463 n += scnprintf(buffer + n, debug_bufmax - n,
1464 "read_next %d \n", audio->read_next);
1465 n += scnprintf(buffer + n, debug_bufmax - n,
1466 "fill_next %d \n", audio->fill_next);
1467 for (i = 0; i < audio->pcm_buf_count; i++)
1468 n += scnprintf(buffer + n, debug_bufmax - n,
1469 "in[%d].used %d \n", i, audio->in[i].used);
1470 buffer[n] = 0;
1471 return simple_read_from_buffer(buf, count, ppos, buffer, n);
1472}
1473
1474static const struct file_operations audamrnb_debug_fops = {
1475 .read = audamrnb_debug_read,
1476 .open = audamrnb_debug_open,
1477};
1478#endif
1479
1480static int audamrnb_open(struct inode *inode, struct file *file)
1481{
1482 struct audio *audio = NULL;
1483 int rc, dec_attrb, decid, i;
1484 struct audamrnb_event *e_node = NULL;
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301485 unsigned mem_sz = DMASZ;
1486 unsigned long ionflag = 0;
1487 ion_phys_addr_t addr = 0;
1488 struct ion_handle *handle = NULL;
1489 struct ion_client *client = NULL;
1490 int len = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001491#ifdef CONFIG_DEBUG_FS
1492 /* 4 bytes represents decoder number, 1 byte for terminate string */
1493 char name[sizeof "msm_amrnb_" + 5];
1494#endif
1495
1496 /* Allocate Mem for audio instance */
1497 audio = kzalloc(sizeof(struct audio), GFP_KERNEL);
1498 if (!audio) {
1499 MM_ERR("no memory to allocate audio instance \n");
1500 rc = -ENOMEM;
1501 goto done;
1502 }
1503 MM_INFO("audio instance 0x%08x created\n", (int)audio);
1504
1505 /* Allocate the decoder */
1506 dec_attrb = AUDDEC_DEC_AMRNB;
1507 if ((file->f_mode & FMODE_WRITE) &&
1508 (file->f_mode & FMODE_READ)) {
1509 dec_attrb |= MSM_AUD_MODE_NONTUNNEL;
1510 audio->pcm_feedback = NON_TUNNEL_MODE_PLAYBACK;
1511 } else if ((file->f_mode & FMODE_WRITE) &&
1512 !(file->f_mode & FMODE_READ)) {
1513 dec_attrb |= MSM_AUD_MODE_TUNNEL;
1514 audio->pcm_feedback = TUNNEL_MODE_PLAYBACK;
1515 } else {
1516 kfree(audio);
1517 rc = -EACCES;
1518 goto done;
1519 }
1520
1521 decid = audpp_adec_alloc(dec_attrb, &audio->module_name,
1522 &audio->queue_id);
1523
1524 if (decid < 0) {
1525 MM_ERR("No free decoder available, freeing instance 0x%08x\n",
1526 (int)audio);
1527 rc = -ENODEV;
1528 kfree(audio);
1529 goto done;
1530 }
1531
1532 audio->dec_id = decid & MSM_AUD_DECODER_MASK;
1533
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301534 client = msm_ion_client_create(UINT_MAX, "Audio_AMR_NB_Client");
1535 if (IS_ERR_OR_NULL(client)) {
1536 pr_err("Unable to create ION client\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001537 rc = -ENOMEM;
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301538 goto client_create_error;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001539 }
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301540 audio->client = client;
1541
1542 handle = ion_alloc(client, mem_sz, SZ_4K,
Hanumant Singh7d72bad2012-08-29 18:39:44 -07001543 ION_HEAP(ION_AUDIO_HEAP_ID), 0);
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301544 if (IS_ERR_OR_NULL(handle)) {
1545 MM_ERR("Unable to create allocate O/P buffers\n");
1546 rc = -ENOMEM;
1547 goto output_buff_alloc_error;
1548 }
1549 audio->output_buff_handle = handle;
1550
1551 rc = ion_phys(client, handle, &addr, &len);
1552 if (rc) {
1553 MM_ERR("O/P buffers:Invalid phy: %x sz: %x\n",
1554 (unsigned int) addr, (unsigned int) len);
1555 goto output_buff_get_phys_error;
1556 } else {
1557 MM_INFO("O/P buffers:valid phy: %x sz: %x\n",
1558 (unsigned int) addr, (unsigned int) len);
1559 }
1560 audio->phys = (int32_t)addr;
1561
1562
1563 rc = ion_handle_get_flags(client, handle, &ionflag);
1564 if (rc) {
1565 MM_ERR("could not get flags for the handle\n");
1566 goto output_buff_get_flags_error;
1567 }
1568
Mitchel Humpherys911b4b72012-09-12 14:42:50 -07001569 audio->map_v_write = ion_map_kernel(client, handle);
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301570 if (IS_ERR(audio->map_v_write)) {
1571 MM_ERR("could not map write buffers\n");
1572 rc = -ENOMEM;
1573 goto output_buff_map_error;
1574 }
1575 audio->data = audio->map_v_write;
1576 MM_DBG("write buf: phy addr 0x%08x kernel addr 0x%08x\n",
1577 audio->phys, (int)audio->data);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001578
1579 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK) {
1580 rc = audmgr_open(&audio->audmgr);
1581 if (rc) {
1582 MM_ERR("audmgr open failed, freeing instance \
1583 0x%08x\n", (int)audio);
1584 goto err;
1585 }
1586 }
1587
1588 rc = msm_adsp_get(audio->module_name, &audio->audplay,
1589 &audplay_adsp_ops_amrnb, audio);
1590 if (rc) {
1591 MM_ERR("failed to get %s module, freeing instance 0x%08x\n",
1592 audio->module_name, (int)audio);
1593 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK)
1594 audmgr_close(&audio->audmgr);
1595 goto err;
1596 }
1597
1598 rc = rmt_get_resource(audio);
1599 if (rc) {
1600 MM_ERR("ADSP resources are not available for AMRNB session \
1601 0x%08x on decoder: %d\n", (int)audio, audio->dec_id);
1602 if (audio->pcm_feedback == TUNNEL_MODE_PLAYBACK)
1603 audmgr_close(&audio->audmgr);
1604 msm_adsp_put(audio->audplay);
1605 goto err;
1606 }
1607
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301608 audio->input_buff_handle = NULL;
1609
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001610 mutex_init(&audio->lock);
1611 mutex_init(&audio->write_lock);
1612 mutex_init(&audio->read_lock);
1613 mutex_init(&audio->get_event_lock);
1614 spin_lock_init(&audio->dsp_lock);
1615 spin_lock_init(&audio->event_queue_lock);
1616 INIT_LIST_HEAD(&audio->free_event_queue);
1617 INIT_LIST_HEAD(&audio->event_queue);
1618 init_waitqueue_head(&audio->write_wait);
1619 init_waitqueue_head(&audio->read_wait);
1620 init_waitqueue_head(&audio->wait);
1621 init_waitqueue_head(&audio->event_wait);
1622
1623 audio->out[0].data = audio->data + 0;
1624 audio->out[0].addr = audio->phys + 0;
1625 audio->out[0].size = BUFSZ;
1626
1627 audio->out[1].data = audio->data + BUFSZ;
1628 audio->out[1].addr = audio->phys + BUFSZ;
1629 audio->out[1].size = BUFSZ;
1630
1631 audio->vol_pan.volume = 0x2000;
1632
1633 audamrnb_flush(audio);
1634
1635 file->private_data = audio;
1636 audio->opened = 1;
1637#ifdef CONFIG_DEBUG_FS
1638 snprintf(name, sizeof name, "msm_amrnb_%04x", audio->dec_id);
1639 audio->dentry = debugfs_create_file(name, S_IFREG | S_IRUGO,
1640 NULL, (void *) audio, &audamrnb_debug_fops);
1641
1642 if (IS_ERR(audio->dentry))
1643 MM_DBG("debugfs_create_file failed\n");
1644#endif
1645#ifdef CONFIG_HAS_EARLYSUSPEND
1646 audio->suspend_ctl.node.level = EARLY_SUSPEND_LEVEL_DISABLE_FB;
1647 audio->suspend_ctl.node.resume = audamrnb_resume;
1648 audio->suspend_ctl.node.suspend = audamrnb_suspend;
1649 audio->suspend_ctl.audio = audio;
1650 register_early_suspend(&audio->suspend_ctl.node);
1651#endif
1652 for (i = 0; i < AUDAMRNB_EVENT_NUM; i++) {
1653 e_node = kmalloc(sizeof(struct audamrnb_event), GFP_KERNEL);
1654 if (e_node)
1655 list_add_tail(&e_node->list, &audio->free_event_queue);
1656 else {
1657 MM_ERR("event pkt alloc failed\n");
1658 break;
1659 }
1660 }
1661done:
1662 return rc;
1663err:
Sidipotu Ashok172c98b2012-06-26 17:58:29 +05301664 ion_unmap_kernel(client, audio->output_buff_handle);
1665output_buff_map_error:
1666output_buff_get_phys_error:
1667output_buff_get_flags_error:
1668 ion_free(client, audio->output_buff_handle);
1669output_buff_alloc_error:
1670 ion_client_destroy(client);
1671client_create_error:
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001672 audpp_adec_free(audio->dec_id);
1673 kfree(audio);
1674 return rc;
1675}
1676
1677static const struct file_operations audio_amrnb_fops = {
1678 .owner = THIS_MODULE,
1679 .open = audamrnb_open,
1680 .release = audamrnb_release,
1681 .read = audamrnb_read,
1682 .write = audamrnb_write,
1683 .unlocked_ioctl = audamrnb_ioctl,
1684 .fsync = audamrnb_fsync,
1685};
1686
1687struct miscdevice audio_amrnb_misc = {
1688 .minor = MISC_DYNAMIC_MINOR,
1689 .name = "msm_amrnb",
1690 .fops = &audio_amrnb_fops,
1691};
1692
1693static int __init audamrnb_init(void)
1694{
1695 return misc_register(&audio_amrnb_misc);
1696}
1697
1698static void __exit audamrnb_exit(void)
1699{
1700 misc_deregister(&audio_amrnb_misc);
1701}
1702
1703module_init(audamrnb_init);
1704module_exit(audamrnb_exit);
1705
1706MODULE_DESCRIPTION("MSM AMR-NB driver");
1707MODULE_LICENSE("GPL v2");