blob: 05a16da5eaa8b589237f971140f432fc1541e994 [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* arch/arm/mach-msm/qdsp5/audio_evrc_in.c
2 *
3 * evrc audio input device
4 *
Manish Dewangana4f1df02012-02-08 17:06:54 +05305 * Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07006 *
7 * This code is based in part on arch/arm/mach-msm/qdsp5v2/audio_evrc_in.c,
8 * Copyright (C) 2008 Google, Inc.
9 * Copyright (C) 2008 HTC Corporation
10 *
11 * This software is licensed under the terms of the GNU General Public
12 * License version 2, as published by the Free Software Foundation, and
13 * may be copied, distributed, and modified under those terms.
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. See the
18 * GNU General Public License for more details.
19 *
20 */
21
22#include <linux/module.h>
23#include <linux/fs.h>
24#include <linux/miscdevice.h>
25#include <linux/uaccess.h>
26#include <linux/kthread.h>
27#include <linux/wait.h>
28#include <linux/dma-mapping.h>
29
30#include <linux/delay.h>
31
32#include <linux/msm_audio_qcp.h>
33
Santosh Mardi7faa0fa2011-09-22 15:32:23 +053034
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070035#include <linux/memory_alloc.h>
36
37#include <asm/atomic.h>
38#include <asm/ioctls.h>
Santosh Mardi7faa0fa2011-09-22 15:32:23 +053039#include <mach/msm_memtypes.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070040#include <mach/msm_adsp.h>
41#include <mach/msm_rpcrouter.h>
Santosh Mardi7faa0fa2011-09-22 15:32:23 +053042#include <mach/iommu.h>
43#include <mach/iommu_domains.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070044
45#include "audmgr.h"
46
47#include <mach/qdsp5/qdsp5audpreproc.h>
48#include <mach/qdsp5/qdsp5audpreproccmdi.h>
49#include <mach/qdsp5/qdsp5audpreprocmsg.h>
50#include <mach/qdsp5/qdsp5audreccmdi.h>
51#include <mach/qdsp5/qdsp5audrecmsg.h>
52#include <mach/debug_mm.h>
53
54#define FRAME_HEADER_SIZE 8 /* 8 bytes frame header */
55#define NT_FRAME_HEADER_SIZE 24 /* 24 bytes frame header */
56/* FRAME_NUM must be a power of two */
57#define FRAME_NUM 8
58#define EVRC_FRAME_SIZE 36 /* 36 bytes data */
59/*Tunnel mode : 36 bytes data + 8 byte header*/
60#define FRAME_SIZE (EVRC_FRAME_SIZE + FRAME_HEADER_SIZE)
61 /* 36 bytes data + 24 meta field*/
62#define NT_FRAME_SIZE (EVRC_FRAME_SIZE + NT_FRAME_HEADER_SIZE)
63#define DMASZ (FRAME_SIZE * FRAME_NUM)
64#define NT_DMASZ (NT_FRAME_SIZE * FRAME_NUM)
65#define OUT_FRAME_NUM 2
66#define OUT_BUFFER_SIZE (4 * 1024 + NT_FRAME_HEADER_SIZE)
67#define BUFFER_SIZE (OUT_BUFFER_SIZE * OUT_FRAME_NUM)
68
69#define AUDPREPROC_EVRC_EOS_FLG_OFFSET 0x0A /* Offset from beginning of buffer*/
70#define AUDPREPROC_EVRC_EOS_FLG_MASK 0x01
71#define AUDPREPROC_EVRC_EOS_NONE 0x0 /* No EOS detected */
72#define AUDPREPROC_EVRC_EOS_SET 0x1 /* EOS set in meta field */
73
74struct buffer {
75 void *data;
76 uint32_t size;
77 uint32_t read;
78 uint32_t addr;
79 uint32_t used;
80 uint32_t mfield_sz;
81};
82
83struct audio_evrc_in {
84 struct buffer in[FRAME_NUM];
85
86 spinlock_t dsp_lock;
87
88 atomic_t in_bytes;
89 atomic_t in_samples;
90
91 struct mutex lock;
92 struct mutex read_lock;
93 wait_queue_head_t wait;
94 wait_queue_head_t wait_enable;
95 /*write section*/
96 struct buffer out[OUT_FRAME_NUM];
97
98 uint8_t out_head;
99 uint8_t out_tail;
100 uint8_t out_needed; /* number of buffers the dsp is waiting for */
101 uint32_t out_count;
102
103 struct mutex write_lock;
104 wait_queue_head_t write_wait;
105 int32_t out_phys; /* physical address of write buffer */
106 char *out_data;
107 int mfield; /* meta field embedded in data */
108 int wflush; /*write flush */
109 int rflush; /*read flush*/
110 int out_frame_cnt;
111
112 struct msm_adsp_module *audrec;
113 struct msm_adsp_module *audpre;
114
115
116 /* configuration to use on next enable */
117 uint32_t samp_rate;
118 uint32_t channel_mode;
119 uint32_t buffer_size; /* Frame size (36 bytes) */
120 uint32_t enc_type; /* 11 for EVRC */
121 uint32_t mode; /* T or NT Mode*/
122
123 struct msm_audio_evrc_enc_config cfg;
124
125 uint32_t dsp_cnt;
126 uint32_t in_head; /* next buffer dsp will write */
127 uint32_t in_tail; /* next buffer read() will read */
128 uint32_t in_count; /* number of buffers available to read() */
129
130 uint32_t eos_ack;
131 uint32_t flush_ack;
132
133 const char *module_name;
134 unsigned queue_ids;
135 uint16_t enc_id; /* Session Id */
136
137 unsigned short samp_rate_index;
138 uint32_t audrec_obj_idx ;
139
140 struct audmgr audmgr;
141
142 /* data allocated for various buffers */
143 char *data;
144 dma_addr_t phys;
145
Laura Abbott35111d32012-04-27 18:41:48 -0700146 void *map_v_read;
147 void *map_v_write;
Santosh Mardi7faa0fa2011-09-22 15:32:23 +0530148
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700149 int opened;
150 int enabled;
151 int running;
152 int stopped; /* set when stopped, cleared on flush */
153};
154
155struct audio_frame {
156 uint16_t frame_count_lsw;
157 uint16_t frame_count_msw;
158 uint16_t frame_length;
159 uint16_t erased_pcm;
160 unsigned char raw_bitstream[];
161} __packed;
162
163struct audio_frame_nt {
164 uint16_t metadata_len;
165 uint16_t frame_count_lsw;
166 uint16_t frame_count_msw;
167 uint16_t frame_length;
168 uint16_t erased_pcm;
169 uint16_t reserved;
170 uint16_t time_stamp_dword_lsw;
171 uint16_t time_stamp_dword_msw;
172 uint16_t time_stamp_lsw;
173 uint16_t time_stamp_msw;
174 uint16_t nflag_lsw;
175 uint16_t nflag_msw;
176 unsigned char raw_bitstream[]; /* samples */
177} __packed;
178
179struct evrc_encoded_meta_out {
180 uint16_t metadata_len;
181 uint16_t time_stamp_dword_lsw;
182 uint16_t time_stamp_dword_msw;
183 uint16_t time_stamp_lsw;
184 uint16_t time_stamp_msw;
185 uint16_t nflag_lsw;
186 uint16_t nflag_msw;
187};
188
189/* Audrec Queue command sent macro's */
190#define audio_send_queue_pre(audio, cmd, len) \
191 msm_adsp_write(audio->audpre, QDSP_uPAudPreProcCmdQueue, cmd, len)
192
193#define audio_send_queue_recbs(audio, cmd, len) \
194 msm_adsp_write(audio->audrec, ((audio->queue_ids & 0xFFFF0000) >> 16),\
195 cmd, len)
196#define audio_send_queue_rec(audio, cmd, len) \
197 msm_adsp_write(audio->audrec, (audio->queue_ids & 0x0000FFFF),\
198 cmd, len)
199
200static int audevrc_in_dsp_enable(struct audio_evrc_in *audio, int enable);
201static int audevrc_in_encparam_config(struct audio_evrc_in *audio);
202static int audevrc_in_encmem_config(struct audio_evrc_in *audio);
203static int audevrc_in_dsp_read_buffer(struct audio_evrc_in *audio,
204 uint32_t read_cnt);
205static void audevrc_in_flush(struct audio_evrc_in *audio);
206
207static void audevrc_in_get_dsp_frames(struct audio_evrc_in *audio);
208static int audpcm_config(struct audio_evrc_in *audio);
209static void audevrc_out_flush(struct audio_evrc_in *audio);
210static int audevrc_in_routing_mode_config(struct audio_evrc_in *audio);
211static void audrec_pcm_send_data(struct audio_evrc_in *audio, unsigned needed);
212static void audevrc_nt_in_get_dsp_frames(struct audio_evrc_in *audio);
213static void audevrc_in_flush(struct audio_evrc_in *audio);
214
215static unsigned convert_samp_index(unsigned index)
216{
217 switch (index) {
218 case RPC_AUD_DEF_SAMPLE_RATE_48000: return 48000;
219 case RPC_AUD_DEF_SAMPLE_RATE_44100: return 44100;
220 case RPC_AUD_DEF_SAMPLE_RATE_32000: return 32000;
221 case RPC_AUD_DEF_SAMPLE_RATE_24000: return 24000;
222 case RPC_AUD_DEF_SAMPLE_RATE_22050: return 22050;
223 case RPC_AUD_DEF_SAMPLE_RATE_16000: return 16000;
224 case RPC_AUD_DEF_SAMPLE_RATE_12000: return 12000;
225 case RPC_AUD_DEF_SAMPLE_RATE_11025: return 11025;
226 case RPC_AUD_DEF_SAMPLE_RATE_8000: return 8000;
227 default: return 11025;
228 }
229}
230
231/* must be called with audio->lock held */
232static int audevrc_in_enable(struct audio_evrc_in *audio)
233{
234 struct audmgr_config cfg;
235 int rc;
236
237 if (audio->enabled)
238 return 0;
239
240 cfg.tx_rate = audio->samp_rate;
241 cfg.rx_rate = RPC_AUD_DEF_SAMPLE_RATE_NONE;
242 cfg.def_method = RPC_AUD_DEF_METHOD_RECORD;
243 cfg.codec = RPC_AUD_DEF_CODEC_EVRC;
244 cfg.snd_method = RPC_SND_METHOD_MIDI;
245
246 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL) {
247 rc = audmgr_enable(&audio->audmgr, &cfg);
248 if (rc < 0)
249 return rc;
250
251 if (msm_adsp_enable(audio->audpre)) {
252 audmgr_disable(&audio->audmgr);
253 MM_ERR("msm_adsp_enable(audpre) failed\n");
254 return -ENODEV;
255 }
256 }
257 if (msm_adsp_enable(audio->audrec)) {
258 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL) {
259 audmgr_disable(&audio->audmgr);
260 msm_adsp_disable(audio->audpre);
261 }
262 MM_ERR("msm_adsp_enable(audrec) failed\n");
263 return -ENODEV;
264 }
265
266 audio->enabled = 1;
267 audevrc_in_dsp_enable(audio, 1);
268
269 return 0;
270}
271
272/* must be called with audio->lock held */
273static int audevrc_in_disable(struct audio_evrc_in *audio)
274{
275 if (audio->enabled) {
276 audio->enabled = 0;
277
278 audevrc_in_dsp_enable(audio, 0);
279
280 wake_up(&audio->wait);
281 wait_event_interruptible_timeout(audio->wait_enable,
282 audio->running == 0, 1*HZ);
Manish Dewangan89a9f232012-02-09 17:14:40 +0530283 audio->stopped = 1;
284 wake_up(&audio->wait);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700285 msm_adsp_disable(audio->audrec);
286 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL) {
287 msm_adsp_disable(audio->audpre);
288 audmgr_disable(&audio->audmgr);
289 }
290 }
291 return 0;
292}
293
294/* ------------------- dsp --------------------- */
295static void audpre_dsp_event(void *data, unsigned id, size_t len,
296 void (*getevent)(void *ptr, size_t len))
297{
298 uint16_t msg[2];
299 getevent(msg, sizeof(msg));
300
301 switch (id) {
302 case AUDPREPROC_MSG_CMD_CFG_DONE_MSG:
303 MM_DBG("type %d, status_flag %d\n", msg[0], msg[1]);
304 break;
305 case AUDPREPROC_MSG_ERROR_MSG_ID:
306 MM_ERR("err_index %d\n", msg[0]);
307 break;
308 case ADSP_MESSAGE_ID:
309 MM_DBG("Received ADSP event: module enable(audpreproctask)\n");
310 break;
311 default:
312 MM_ERR("unknown event %d\n", id);
313 }
314}
315
316static void audevrc_in_get_dsp_frames(struct audio_evrc_in *audio)
317{
318 struct audio_frame *frame;
319 uint32_t index;
320 unsigned long flags;
321
322 index = audio->in_head;
323
324 frame = (void *) (((char *)audio->in[index].data) -
325 sizeof(*frame));
326 spin_lock_irqsave(&audio->dsp_lock, flags);
327 audio->in[index].size = frame->frame_length;
328
329 /* statistics of read */
330 atomic_add(audio->in[index].size, &audio->in_bytes);
331 atomic_add(1, &audio->in_samples);
332
333 audio->in_head = (audio->in_head + 1) & (FRAME_NUM - 1);
334
335 /* If overflow, move the tail index foward. */
336 if (audio->in_head == audio->in_tail) {
337 MM_ERR("Error! not able to keep up the read\n");
338 audio->in_tail = (audio->in_tail + 1) & (FRAME_NUM - 1);
339 MM_ERR("in_count = %d\n", audio->in_count);
340 } else
341 audio->in_count++;
342
343 audevrc_in_dsp_read_buffer(audio, audio->dsp_cnt++);
344 spin_unlock_irqrestore(&audio->dsp_lock, flags);
345
346 wake_up(&audio->wait);
347}
348
349static void audevrc_nt_in_get_dsp_frames(struct audio_evrc_in *audio)
350{
351 struct audio_frame_nt *nt_frame;
352 uint32_t index;
353 unsigned long flags;
354
355 index = audio->in_head;
356 nt_frame = (void *) (((char *)audio->in[index].data) - \
357 sizeof(struct audio_frame_nt));
358 spin_lock_irqsave(&audio->dsp_lock, flags);
359 audio->in[index].size = nt_frame->frame_length;
360 /* statistics of read */
361 atomic_add(audio->in[index].size, &audio->in_bytes);
362 atomic_add(1, &audio->in_samples);
363
364 audio->in_head = (audio->in_head + 1) & (FRAME_NUM - 1);
365
366 /* If overflow, move the tail index foward. */
367 if (audio->in_head == audio->in_tail)
368 MM_DBG("Error! not able to keep up the read\n");
369 else
370 audio->in_count++;
371
372 spin_unlock_irqrestore(&audio->dsp_lock, flags);
373 wake_up(&audio->wait);
374}
375
376static int audrec_pcm_buffer_ptr_refresh(struct audio_evrc_in *audio,
377 unsigned idx, unsigned len)
378{
379 struct audrec_cmd_pcm_buffer_ptr_refresh_arm_enc cmd;
380
381 if (len == NT_FRAME_HEADER_SIZE)
382 len = len / 2;
383 else
384 len = (len + NT_FRAME_HEADER_SIZE) / 2;
385 MM_DBG("len = %d\n", len);
386 memset(&cmd, 0, sizeof(cmd));
387 cmd.cmd_id = AUDREC_CMD_PCM_BUFFER_PTR_REFRESH_ARM_TO_ENC;
388 cmd.num_buffers = 1;
389 if (cmd.num_buffers == 1) {
390 cmd.buf_address_length[0] = (audio->out[idx].addr &
391 0xffff0000) >> 16;
392 cmd.buf_address_length[1] = (audio->out[idx].addr &
393 0x0000ffff);
394 cmd.buf_address_length[2] = (len & 0xffff0000) >> 16;
395 cmd.buf_address_length[3] = (len & 0x0000ffff);
396 }
397 audio->out_frame_cnt++;
398 return audio_send_queue_rec(audio, &cmd, sizeof(cmd));
399}
400
401static int audpcm_config(struct audio_evrc_in *audio)
402{
403 struct audrec_cmd_pcm_cfg_arm_to_enc cmd;
404 MM_DBG("\n");
405 memset(&cmd, 0, sizeof(cmd));
406 cmd.cmd_id = AUDREC_CMD_PCM_CFG_ARM_TO_ENC;
407 cmd.config_update_flag = AUDREC_PCM_CONFIG_UPDATE_FLAG_ENABLE;
408 cmd.enable_flag = AUDREC_ENABLE_FLAG_VALUE;
409 cmd.sampling_freq = convert_samp_index(audio->samp_rate);
410 if (!audio->channel_mode)
411 cmd.channels = 1;
412 else
413 cmd.channels = 2;
414 cmd.frequency_of_intimation = 1;
415 cmd.max_number_of_buffers = OUT_FRAME_NUM;
416 return audio_send_queue_rec(audio, &cmd, sizeof(cmd));
417}
418
419
420static int audevrc_in_routing_mode_config(struct audio_evrc_in *audio)
421{
422 struct audrec_cmd_routing_mode cmd;
423
424 MM_DBG("\n");
425 memset(&cmd, 0, sizeof(cmd));
426 cmd.cmd_id = AUDREC_CMD_ROUTING_MODE;
427 if (audio->mode == MSM_AUD_ENC_MODE_NONTUNNEL)
428 cmd.routing_mode = 1;
429 return audio_send_queue_rec(audio, &cmd, sizeof(cmd));
430}
431
432static void audrec_dsp_event(void *data, unsigned id, size_t len,
433 void (*getevent)(void *ptr, size_t len))
434{
435 struct audio_evrc_in *audio = NULL;
436
437 if (data)
438 audio = data;
439 else {
440 MM_ERR("invalid data for event %x\n", id);
441 return;
442 }
443
444 switch (id) {
445 case AUDREC_MSG_CMD_CFG_DONE_MSG: {
446 struct audrec_msg_cmd_cfg_done_msg cmd_cfg_done_msg;
447 getevent(&cmd_cfg_done_msg, AUDREC_MSG_CMD_CFG_DONE_MSG_LEN);
448 if (cmd_cfg_done_msg.audrec_enc_type & \
449 AUDREC_MSG_CFG_DONE_ENC_ENA) {
450 audio->audrec_obj_idx = cmd_cfg_done_msg.audrec_obj_idx;
451 MM_DBG("CFG ENABLED\n");
452 if (audio->mode == MSM_AUD_ENC_MODE_NONTUNNEL) {
453 MM_DBG("routing command\n");
454 audevrc_in_routing_mode_config(audio);
455 } else {
456 audevrc_in_encmem_config(audio);
457 }
458 } else {
459 MM_DBG("CFG SLEEP\n");
460 audio->running = 0;
461 wake_up(&audio->wait_enable);
462 }
463 break;
464 }
465 case AUDREC_MSG_CMD_ROUTING_MODE_DONE_MSG: {
466 struct audrec_msg_cmd_routing_mode_done_msg \
467 routing_msg;
468 getevent(&routing_msg, AUDREC_MSG_CMD_ROUTING_MODE_DONE_MSG);
469 MM_DBG("AUDREC_MSG_CMD_ROUTING_MODE_DONE_MSG");
470 if (routing_msg.configuration == 0) {
471 MM_ERR("routing configuration failed\n");
472 audio->running = 0;
473 wake_up(&audio->wait_enable);
474 } else
475 audevrc_in_encmem_config(audio);
476 break;
477 }
478 case AUDREC_MSG_CMD_AREC_MEM_CFG_DONE_MSG: {
479 MM_DBG("AREC_MEM_CFG_DONE_MSG\n");
480 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL)
481 audevrc_in_encparam_config(audio);
482 else
483 audpcm_config(audio);
484 break;
485 }
486 case AUDREC_CMD_PCM_CFG_ARM_TO_ENC_DONE_MSG: {
487 MM_DBG("AUDREC_CMD_PCM_CFG_ARM_TO_ENC_DONE_MSG");
488 audevrc_in_encparam_config(audio);
489 break;
490 }
491 case AUDREC_MSG_CMD_AREC_PARAM_CFG_DONE_MSG: {
492 MM_DBG("AUDREC_MSG_CMD_AREC_PARAM_CFG_DONE_MSG\n");
493 audio->running = 1;
494 wake_up(&audio->wait_enable);
495 if (audio->mode == MSM_AUD_ENC_MODE_NONTUNNEL)
496 audrec_pcm_send_data(audio, 1);
497 break;
498 }
499 case AUDREC_CMD_PCM_BUFFER_PTR_UPDATE_ARM_TO_ENC_MSG: {
500 MM_DBG("ptr_update recieved from DSP\n");
501 audrec_pcm_send_data(audio, 1);
502 break;
503 }
504 case AUDREC_MSG_NO_EXT_PKT_AVAILABLE_MSG: {
505 struct audrec_msg_no_ext_pkt_avail_msg err_msg;
506 getevent(&err_msg, AUDREC_MSG_NO_EXT_PKT_AVAILABLE_MSG_LEN);
507 MM_DBG("NO_EXT_PKT_AVAILABLE_MSG %x\n",\
508 err_msg.audrec_err_id);
509 break;
510 }
511 case AUDREC_MSG_PACKET_READY_MSG: {
512 struct audrec_msg_packet_ready_msg pkt_ready_msg;
513
514 getevent(&pkt_ready_msg, AUDREC_MSG_PACKET_READY_MSG_LEN);
515 MM_DBG("UP_PACKET_READY_MSG: write cnt msw %d \
516 write cnt lsw %d read cnt msw %d read cnt lsw %d \n",\
517 pkt_ready_msg.pkt_counter_msw, \
518 pkt_ready_msg.pkt_counter_lsw, \
519 pkt_ready_msg.pkt_read_cnt_msw, \
520 pkt_ready_msg.pkt_read_cnt_lsw);
521
522 audevrc_in_get_dsp_frames(audio);
523 break;
524 }
525 case AUDREC_UP_NT_PACKET_READY_MSG: {
526 struct audrec_up_nt_packet_ready_msg pkt_ready_msg;
527
528 getevent(&pkt_ready_msg, AUDREC_UP_NT_PACKET_READY_MSG_LEN);
529 MM_DBG("UP_NT_PACKET_READY_MSG: write cnt lsw %d \
530 write cnt msw %d read cnt lsw %d read cnt msw %d \n",\
531 pkt_ready_msg.audrec_packetwrite_cnt_lsw, \
532 pkt_ready_msg.audrec_packetwrite_cnt_msw, \
533 pkt_ready_msg.audrec_upprev_readcount_lsw, \
534 pkt_ready_msg.audrec_upprev_readcount_msw);
535
536 audevrc_nt_in_get_dsp_frames(audio);
537 break;
538 }
539 case AUDREC_CMD_FLUSH_DONE_MSG: {
540 audio->wflush = 0;
541 audio->rflush = 0;
542 audio->flush_ack = 1;
543 wake_up(&audio->write_wait);
544 MM_DBG("flush ack recieved\n");
545 break;
546 }
547 case ADSP_MESSAGE_ID:
548 MM_DBG("Received ADSP event: module \
549 enable/disable(audrectask)\n");
550 break;
551 default:
552 MM_ERR("unknown event %d\n", id);
553 }
554}
555
556static struct msm_adsp_ops audpre_evrc_adsp_ops = {
557 .event = audpre_dsp_event,
558};
559
560static struct msm_adsp_ops audrec_evrc_adsp_ops = {
561 .event = audrec_dsp_event,
562};
563
564static int audevrc_in_dsp_enable(struct audio_evrc_in *audio, int enable)
565{
566 struct audrec_cmd_enc_cfg cmd;
567
568 memset(&cmd, 0, sizeof(cmd));
569 cmd.cmd_id = AUDREC_CMD_ENC_CFG;
570 cmd.audrec_enc_type = (audio->enc_type & 0xFF) |
571 (enable ? AUDREC_CMD_ENC_ENA : AUDREC_CMD_ENC_DIS);
572 /* Don't care */
573 cmd.audrec_obj_idx = audio->audrec_obj_idx;
574
575 return audio_send_queue_rec(audio, &cmd, sizeof(cmd));
576}
577
578static int audevrc_in_encmem_config(struct audio_evrc_in *audio)
579{
580 struct audrec_cmd_arecmem_cfg cmd;
581 uint16_t *data = (void *) audio->data;
582 int n;
583 int header_len = 0;
584
585 memset(&cmd, 0, sizeof(cmd));
586
587 cmd.cmd_id = AUDREC_CMD_ARECMEM_CFG;
588 cmd.audrec_obj_idx = audio->audrec_obj_idx;
589 /* Rate at which packet complete message comes */
590 cmd.audrec_up_pkt_intm_cnt = 1;
591 cmd.audrec_extpkt_buffer_msw = audio->phys >> 16;
592 cmd.audrec_extpkt_buffer_lsw = audio->phys;
593 /* Max Buffer no available for frames */
594 cmd.audrec_extpkt_buffer_num = FRAME_NUM;
595
596 /* prepare buffer pointers:
597 * T:36 bytes evrc packet + 4 halfword header
598 * NT:36 bytes evrc packet + 12 halfword header
599 */
600 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL)
601 header_len = FRAME_HEADER_SIZE/2;
602 else
603 header_len = NT_FRAME_HEADER_SIZE/2;
604
605 for (n = 0; n < FRAME_NUM; n++) {
606 audio->in[n].data = data + header_len;
607 data += (EVRC_FRAME_SIZE/2) + header_len;
608 MM_DBG("0x%8x\n", (int)(audio->in[n].data - header_len*2));
609 }
610
611 return audio_send_queue_rec(audio, &cmd, sizeof(cmd));
612}
613
614static int audevrc_in_encparam_config(struct audio_evrc_in *audio)
615{
616 struct audrec_cmd_arecparam_evrc_cfg cmd;
617
618 memset(&cmd, 0, sizeof(cmd));
619 cmd.common.cmd_id = AUDREC_CMD_ARECPARAM_CFG;
620 cmd.common.audrec_obj_idx = audio->audrec_obj_idx;
621 cmd.enc_min_rate = audio->cfg.min_bit_rate;
622 cmd.enc_max_rate = audio->cfg.max_bit_rate;
623 cmd.rate_modulation_cmd = 0; /* Default set to 0 */
624
625 return audio_send_queue_rec(audio, &cmd, sizeof(cmd));
626}
627
628static int audevrc_flush_command(struct audio_evrc_in *audio)
629{
630 struct audrec_cmd_flush cmd;
631 MM_DBG("\n");
632 memset(&cmd, 0, sizeof(cmd));
633 cmd.cmd_id = AUDREC_CMD_FLUSH;
634 return audio_send_queue_rec(audio, &cmd, sizeof(cmd));
635}
636
637static int audevrc_in_dsp_read_buffer(struct audio_evrc_in *audio,
638 uint32_t read_cnt)
639{
640 audrec_cmd_packet_ext_ptr cmd;
641
642 memset(&cmd, 0, sizeof(cmd));
643 cmd.cmd_id = AUDREC_CMD_PACKET_EXT_PTR;
644 cmd.type = audio->audrec_obj_idx;
645 cmd.curr_rec_count_msw = read_cnt >> 16;
646 cmd.curr_rec_count_lsw = read_cnt;
647
648 return audio_send_queue_recbs(audio, &cmd, sizeof(cmd));
649}
650
651/* ------------------- device --------------------- */
652
653static void audevrc_ioport_reset(struct audio_evrc_in *audio)
654{
655 /* Make sure read/write thread are free from
656 * sleep and knowing that system is not able
657 * to process io request at the moment
658 */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700659 wake_up(&audio->wait);
660 mutex_lock(&audio->read_lock);
Manish Dewangana4f1df02012-02-08 17:06:54 +0530661 audevrc_in_flush(audio);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700662 mutex_unlock(&audio->read_lock);
Manish Dewangana4f1df02012-02-08 17:06:54 +0530663 wake_up(&audio->write_wait);
664 mutex_lock(&audio->write_lock);
665 audevrc_out_flush(audio);
666 mutex_unlock(&audio->write_lock);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700667}
668
669static void audevrc_in_flush(struct audio_evrc_in *audio)
670{
671 int i;
Manish Dewangana4f1df02012-02-08 17:06:54 +0530672 unsigned long flags;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700673
674 audio->dsp_cnt = 0;
Manish Dewangana4f1df02012-02-08 17:06:54 +0530675 spin_lock_irqsave(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700676 audio->in_head = 0;
677 audio->in_tail = 0;
678 audio->in_count = 0;
679 audio->eos_ack = 0;
680 for (i = FRAME_NUM-1; i >= 0; i--) {
681 audio->in[i].size = 0;
682 audio->in[i].read = 0;
683 }
Manish Dewangana4f1df02012-02-08 17:06:54 +0530684 spin_unlock_irqrestore(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700685 MM_DBG("in_bytes %d\n", atomic_read(&audio->in_bytes));
686 MM_DBG("in_samples %d\n", atomic_read(&audio->in_samples));
687 atomic_set(&audio->in_bytes, 0);
688 atomic_set(&audio->in_samples, 0);
689}
690
691static void audevrc_out_flush(struct audio_evrc_in *audio)
692{
693 int i;
Manish Dewangana4f1df02012-02-08 17:06:54 +0530694 unsigned long flags;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700695
696 audio->out_head = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700697 audio->out_count = 0;
Manish Dewangana4f1df02012-02-08 17:06:54 +0530698 spin_lock_irqsave(&audio->dsp_lock, flags);
699 audio->out_tail = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700700 for (i = OUT_FRAME_NUM-1; i >= 0; i--) {
701 audio->out[i].size = 0;
702 audio->out[i].read = 0;
703 audio->out[i].used = 0;
704 }
Manish Dewangana4f1df02012-02-08 17:06:54 +0530705 spin_unlock_irqrestore(&audio->dsp_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700706}
707
708/* ------------------- device --------------------- */
709static long audevrc_in_ioctl(struct file *file,
710 unsigned int cmd, unsigned long arg)
711{
712 struct audio_evrc_in *audio = file->private_data;
713 int rc = 0;
714
715 MM_DBG("\n");
716 if (cmd == AUDIO_GET_STATS) {
717 struct msm_audio_stats stats;
718 stats.byte_count = atomic_read(&audio->in_bytes);
719 stats.sample_count = atomic_read(&audio->in_samples);
720 if (copy_to_user((void *) arg, &stats, sizeof(stats)))
721 return -EFAULT;
722 return rc;
723 }
724
725 mutex_lock(&audio->lock);
726 switch (cmd) {
727 case AUDIO_START: {
728 rc = audevrc_in_enable(audio);
729 if (!rc) {
730 rc =
731 wait_event_interruptible_timeout(audio->wait_enable,
732 audio->running != 0, 1*HZ);
733 MM_DBG("state %d rc = %d\n", audio->running, rc);
734
735 if (audio->running == 0)
736 rc = -ENODEV;
737 else
738 rc = 0;
739 }
740 audio->stopped = 0;
741 break;
742 }
743 case AUDIO_STOP: {
744 rc = audevrc_in_disable(audio);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700745 break;
746 }
747 case AUDIO_FLUSH: {
748 MM_DBG("AUDIO_FLUSH\n");
749 audio->rflush = 1;
750 audio->wflush = 1;
751 audevrc_ioport_reset(audio);
752 if (audio->running) {
753 audevrc_flush_command(audio);
754 rc = wait_event_interruptible(audio->write_wait,
755 !audio->wflush);
756 if (rc < 0) {
757 MM_ERR("AUDIO_FLUSH interrupted\n");
758 rc = -EINTR;
759 }
760 } else {
761 audio->rflush = 0;
762 audio->wflush = 0;
763 }
764 break;
765 }
766 case AUDIO_GET_CONFIG: {
767 struct msm_audio_config cfg;
768 memset(&cfg, 0, sizeof(cfg));
769 cfg.buffer_size = OUT_BUFFER_SIZE;
770 cfg.buffer_count = OUT_FRAME_NUM;
771 cfg.sample_rate = convert_samp_index(audio->samp_rate);
772 cfg.channel_count = 1;
773 cfg.type = 0;
774 cfg.unused[0] = 0;
775 cfg.unused[1] = 0;
776 cfg.unused[2] = 0;
777 if (copy_to_user((void *) arg, &cfg, sizeof(cfg)))
778 rc = -EFAULT;
779 else
780 rc = 0;
781 break;
782 }
783 case AUDIO_GET_STREAM_CONFIG: {
784 struct msm_audio_stream_config cfg;
785 memset(&cfg, 0, sizeof(cfg));
786 cfg.buffer_size = audio->buffer_size;
787 cfg.buffer_count = FRAME_NUM;
788 if (copy_to_user((void *)arg, &cfg, sizeof(cfg)))
789 rc = -EFAULT;
790 else
791 rc = 0;
792 break;
793 }
794 case AUDIO_SET_STREAM_CONFIG: {
795 struct msm_audio_stream_config cfg;
796 if (copy_from_user(&cfg, (void *) arg, sizeof(cfg))) {
797 rc = -EFAULT;
798 break;
799 }
800 /* Allow only single frame */
801 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL) {
Phani Kumar Alladaee940eb2012-05-10 11:13:04 +0530802 if (cfg.buffer_size != (FRAME_SIZE - 8)) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700803 rc = -EINVAL;
804 break;
Phani Kumar Alladaee940eb2012-05-10 11:13:04 +0530805 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700806 } else {
Phani Kumar Alladaee940eb2012-05-10 11:13:04 +0530807 if (cfg.buffer_size != (EVRC_FRAME_SIZE + 14)) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700808 rc = -EINVAL;
809 break;
Phani Kumar Alladaee940eb2012-05-10 11:13:04 +0530810 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700811 }
812 audio->buffer_size = cfg.buffer_size;
813 break;
814 }
815 case AUDIO_GET_EVRC_ENC_CONFIG: {
816 if (copy_to_user((void *) arg, &audio->cfg, sizeof(audio->cfg)))
817 rc = -EFAULT;
818 break;
819 }
820 case AUDIO_SET_EVRC_ENC_CONFIG: {
821 struct msm_audio_evrc_enc_config cfg;
822 if (copy_from_user(&cfg, (void *) arg, sizeof(cfg))) {
823 rc = -EFAULT;
824 break;
825 }
826 MM_DBG("0X%8x, 0x%8x, 0x%8x\n", cfg.min_bit_rate,
827 cfg.max_bit_rate, cfg.cdma_rate);
828 if (cfg.min_bit_rate > CDMA_RATE_FULL || \
829 cfg.min_bit_rate < CDMA_RATE_EIGHTH) {
830 MM_ERR("invalid min bitrate\n");
831 rc = -EFAULT;
832 break;
833 }
834 if (cfg.max_bit_rate > CDMA_RATE_FULL || \
835 cfg.max_bit_rate < CDMA_RATE_EIGHTH) {
836 MM_ERR("invalid max bitrate\n");
837 rc = -EFAULT;
838 break;
839 }
840 /* Recording Does not support Erase and Blank */
841 if (cfg.cdma_rate > CDMA_RATE_FULL ||
842 cfg.cdma_rate < CDMA_RATE_EIGHTH) {
843 MM_ERR("invalid qcelp cdma rate\n");
844 rc = -EFAULT;
845 break;
846 }
847 memcpy(&audio->cfg, &cfg, sizeof(cfg));
848 break;
849 }
850 default:
851 rc = -EINVAL;
852 }
853 mutex_unlock(&audio->lock);
854 return rc;
855}
856
857static ssize_t audevrc_in_read(struct file *file,
858 char __user *buf,
859 size_t count, loff_t *pos)
860{
861 struct audio_evrc_in *audio = file->private_data;
862 unsigned long flags;
863 const char __user *start = buf;
864 void *data;
865 uint32_t index;
866 uint32_t size;
867 int rc = 0;
868 struct evrc_encoded_meta_out meta_field;
869 struct audio_frame_nt *nt_frame;
870 MM_DBG("count = %d\n", count);
871 mutex_lock(&audio->read_lock);
872 while (count > 0) {
873 rc = wait_event_interruptible(
874 audio->wait, (audio->in_count > 0) || audio->stopped ||
875 audio->rflush);
876 if (rc < 0)
877 break;
878
879 if (audio->rflush) {
880 rc = -EBUSY;
881 break;
882 }
883 if (audio->stopped && !audio->in_count) {
884 MM_DBG("Driver in stop state, No more buffer to read");
885 rc = 0;/* End of File */
886 break;
887 }
888
889 index = audio->in_tail;
890 data = (uint8_t *) audio->in[index].data;
891 size = audio->in[index].size;
892
893 if (audio->mode == MSM_AUD_ENC_MODE_NONTUNNEL) {
894 nt_frame = (struct audio_frame_nt *)(data -
895 sizeof(struct audio_frame_nt));
896 memcpy((char *)&meta_field.time_stamp_dword_lsw,
897 (char *)&nt_frame->time_stamp_dword_lsw,
898 (sizeof(struct evrc_encoded_meta_out) - \
899 sizeof(uint16_t)));
900 meta_field.metadata_len =
901 sizeof(struct evrc_encoded_meta_out);
902 if (copy_to_user((char *)start, (char *)&meta_field,
903 sizeof(struct evrc_encoded_meta_out))) {
904 rc = -EFAULT;
905 break;
906 }
907 if (nt_frame->nflag_lsw & 0x0001) {
908 MM_ERR("recieved EOS in read call\n");
909 audio->eos_ack = 1;
910 }
911 buf += sizeof(struct evrc_encoded_meta_out);
912 count -= sizeof(struct evrc_encoded_meta_out);
913 }
914 if (count >= size) {
915 /* order the reads on the buffer */
916 dma_coherent_post_ops();
917 if (copy_to_user(buf, data, size)) {
918 rc = -EFAULT;
919 break;
920 }
921 spin_lock_irqsave(&audio->dsp_lock, flags);
922 if (index != audio->in_tail) {
923 /* overrun -- data is
924 * invalid and we need to retry */
925 spin_unlock_irqrestore(&audio->dsp_lock, flags);
926 continue;
927 }
928 audio->in[index].size = 0;
929 audio->in_tail = (audio->in_tail + 1) & (FRAME_NUM - 1);
930 audio->in_count--;
931 spin_unlock_irqrestore(&audio->dsp_lock, flags);
932 count -= size;
933 buf += size;
934 if ((audio->mode == MSM_AUD_ENC_MODE_NONTUNNEL)) {
935 if (!audio->eos_ack) {
936 MM_DBG("sending read ptr command \
937 %d %d\n",
938 audio->dsp_cnt,
939 audio->in_tail);
940 audevrc_in_dsp_read_buffer(audio,
941 audio->dsp_cnt++);
942 }
943 }
944 } else {
945 MM_ERR("short read\n");
946 break;
947 }
948 break;
949 }
950 mutex_unlock(&audio->read_lock);
951
952 if (buf > start)
953 return buf - start;
954
955 return rc;
956}
957
958static void audrec_pcm_send_data(struct audio_evrc_in *audio, unsigned needed)
959{
960 struct buffer *frame;
961 unsigned long flags;
962 MM_DBG("\n");
963 spin_lock_irqsave(&audio->dsp_lock, flags);
964 if (!audio->running)
965 goto done;
966
967 if (needed && !audio->wflush) {
968 /* We were called from the callback because the DSP
969 * requested more data. Note that the DSP does want
970 * more data, and if a buffer was in-flight, mark it
971 * as available (since the DSP must now be done with
972 * it).
973 */
974 audio->out_needed = 1;
975 frame = audio->out + audio->out_tail;
976 if (frame->used == 0xffffffff) {
977 MM_DBG("frame %d free\n", audio->out_tail);
978 frame->used = 0;
979 audio->out_tail ^= 1;
980 wake_up(&audio->write_wait);
981 }
982 }
983
984 if (audio->out_needed) {
985 /* If the DSP currently wants data and we have a
986 * buffer available, we will send it and reset
987 * the needed flag. We'll mark the buffer as in-flight
988 * so that it won't be recycled until the next buffer
989 * is requested
990 */
991
992 frame = audio->out + audio->out_tail;
993 if (frame->used) {
994 BUG_ON(frame->used == 0xffffffff);
995 audrec_pcm_buffer_ptr_refresh(audio,
996 audio->out_tail,
997 frame->used);
998 frame->used = 0xffffffff;
999 audio->out_needed = 0;
1000 }
1001 }
1002 done:
1003 spin_unlock_irqrestore(&audio->dsp_lock, flags);
1004}
1005
1006static int audevrc_in_fsync(struct file *file, int datasync)
1007
1008{
1009 struct audio_evrc_in *audio = file->private_data;
1010 int rc = 0;
1011
1012 MM_DBG("\n"); /* Macro prints the file name and function */
1013 if (!audio->running || (audio->mode == MSM_AUD_ENC_MODE_TUNNEL)) {
1014 rc = -EINVAL;
1015 goto done_nolock;
1016 }
1017
1018 mutex_lock(&audio->write_lock);
1019
1020 rc = wait_event_interruptible(audio->write_wait,
1021 audio->wflush);
1022 MM_DBG("waked on by some event audio->wflush = %d\n", audio->wflush);
1023
1024 if (rc < 0)
1025 goto done;
1026 else if (audio->wflush) {
1027 rc = -EBUSY;
1028 goto done;
1029 }
1030done:
1031 mutex_unlock(&audio->write_lock);
1032done_nolock:
1033 return rc;
1034
1035}
1036
1037int audrec_evrc_process_eos(struct audio_evrc_in *audio,
1038 const char __user *buf_start, unsigned short mfield_size)
1039{
1040 struct buffer *frame;
1041 int rc = 0;
1042
1043 frame = audio->out + audio->out_head;
1044
1045 rc = wait_event_interruptible(audio->write_wait,
1046 (audio->out_needed &&
1047 audio->out[0].used == 0 &&
1048 audio->out[1].used == 0)
1049 || (audio->stopped)
1050 || (audio->wflush));
1051
1052 if (rc < 0)
1053 goto done;
1054 if (audio->stopped || audio->wflush) {
1055 rc = -EBUSY;
1056 goto done;
1057 }
1058 if (copy_from_user(frame->data, buf_start, mfield_size)) {
1059 rc = -EFAULT;
1060 goto done;
1061 }
1062
1063 frame->mfield_sz = mfield_size;
1064 audio->out_head ^= 1;
1065 frame->used = mfield_size;
1066 MM_DBG("copying meta_out frame->used = %d\n", frame->used);
1067 audrec_pcm_send_data(audio, 0);
1068done:
1069 return rc;
1070}
1071
1072static ssize_t audevrc_in_write(struct file *file,
1073 const char __user *buf,
1074 size_t count, loff_t *pos)
1075{
1076 struct audio_evrc_in *audio = file->private_data;
1077 const char __user *start = buf;
1078 struct buffer *frame;
1079 char *cpy_ptr;
1080 int rc = 0, eos_condition = AUDPREPROC_EVRC_EOS_NONE;
1081 unsigned short mfield_size = 0;
1082 int write_count = 0;
1083 MM_DBG("cnt=%d\n", count);
1084
1085 if (count & 1)
1086 return -EINVAL;
1087
1088 if (audio->mode != MSM_AUD_ENC_MODE_NONTUNNEL)
1089 return -EINVAL;
1090
1091 mutex_lock(&audio->write_lock);
1092 frame = audio->out + audio->out_head;
1093 /* if supplied count is more than driver buffer size
1094 * then only copy driver buffer size
1095 */
1096 if (count > frame->size)
1097 count = frame->size;
1098
1099 write_count = count;
1100 cpy_ptr = frame->data;
1101 rc = wait_event_interruptible(audio->write_wait,
1102 (frame->used == 0)
1103 || (audio->stopped)
1104 || (audio->wflush));
1105 if (rc < 0)
1106 goto error;
1107
1108 if (audio->stopped || audio->wflush) {
1109 rc = -EBUSY;
1110 goto error;
1111 }
1112 if (audio->mfield) {
1113 if (buf == start) {
1114 /* Processing beginning of user buffer */
1115 if (__get_user(mfield_size,
1116 (unsigned short __user *) buf)) {
1117 rc = -EFAULT;
1118 goto error;
1119 } else if (mfield_size > count) {
1120 rc = -EINVAL;
1121 goto error;
1122 }
1123 MM_DBG("mf offset_val %x\n", mfield_size);
1124 if (copy_from_user(cpy_ptr, buf, mfield_size)) {
1125 rc = -EFAULT;
1126 goto error;
1127 }
1128 /* Check if EOS flag is set and buffer has
1129 * contains just meta field
1130 */
1131 if (cpy_ptr[AUDPREPROC_EVRC_EOS_FLG_OFFSET] &
1132 AUDPREPROC_EVRC_EOS_FLG_MASK) {
1133 eos_condition = AUDPREPROC_EVRC_EOS_SET;
1134 MM_DBG("EOS SET\n");
1135 if (mfield_size == count) {
1136 buf += mfield_size;
1137 eos_condition = 0;
1138 goto exit;
1139 } else
1140 cpy_ptr[AUDPREPROC_EVRC_EOS_FLG_OFFSET] &=
1141 ~AUDPREPROC_EVRC_EOS_FLG_MASK;
1142 }
1143 cpy_ptr += mfield_size;
1144 count -= mfield_size;
1145 buf += mfield_size;
1146 } else {
1147 mfield_size = 0;
1148 MM_DBG("continuous buffer\n");
1149 }
1150 frame->mfield_sz = mfield_size;
1151 }
1152 MM_DBG("copying the stream count = %d\n", count);
1153 if (copy_from_user(cpy_ptr, buf, count)) {
1154 rc = -EFAULT;
1155 goto error;
1156 }
1157exit:
1158 frame->used = count;
1159 audio->out_head ^= 1;
1160 if (!audio->flush_ack)
1161 audrec_pcm_send_data(audio, 0);
1162 else {
1163 audrec_pcm_send_data(audio, 1);
1164 audio->flush_ack = 0;
1165 }
1166 if (eos_condition == AUDPREPROC_EVRC_EOS_SET)
1167 rc = audrec_evrc_process_eos(audio, start, mfield_size);
1168 mutex_unlock(&audio->write_lock);
1169 return write_count;
1170error:
1171 mutex_unlock(&audio->write_lock);
1172 return rc;
1173}
1174
1175static int audevrc_in_release(struct inode *inode, struct file *file)
1176{
1177 struct audio_evrc_in *audio = file->private_data;
1178
1179 mutex_lock(&audio->lock);
1180 audevrc_in_disable(audio);
1181 audevrc_in_flush(audio);
1182 msm_adsp_put(audio->audrec);
1183
1184 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL)
1185 msm_adsp_put(audio->audpre);
1186
1187 audpreproc_aenc_free(audio->enc_id);
1188 audio->audrec = NULL;
1189 audio->audpre = NULL;
1190 audio->opened = 0;
1191 if ((audio->mode == MSM_AUD_ENC_MODE_NONTUNNEL) && \
1192 (audio->out_data)) {
Laura Abbott35111d32012-04-27 18:41:48 -07001193 iounmap(audio->map_v_write);
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301194 free_contiguous_memory_by_paddr(audio->out_phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001195 audio->out_data = NULL;
1196 }
1197 if (audio->data) {
Laura Abbott35111d32012-04-27 18:41:48 -07001198 iounmap(audio->map_v_read);
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301199 free_contiguous_memory_by_paddr(audio->phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001200 audio->data = NULL;
1201 }
1202 mutex_unlock(&audio->lock);
1203 return 0;
1204}
1205
1206static struct audio_evrc_in the_audio_evrc_in;
1207
1208static int audevrc_in_open(struct inode *inode, struct file *file)
1209{
1210 struct audio_evrc_in *audio = &the_audio_evrc_in;
1211 int rc;
1212 int encid;
1213 int dma_size = 0;
1214
1215 mutex_lock(&audio->lock);
1216 if (audio->opened) {
1217 rc = -EBUSY;
1218 goto done;
1219 }
1220 if ((file->f_mode & FMODE_WRITE) &&
1221 (file->f_mode & FMODE_READ)) {
1222 audio->mode = MSM_AUD_ENC_MODE_NONTUNNEL;
1223 dma_size = NT_DMASZ;
1224 MM_DBG("Opened for non tunnel mode encoding\n");
1225 } else if (!(file->f_mode & FMODE_WRITE) &&
1226 (file->f_mode & FMODE_READ)) {
1227 audio->mode = MSM_AUD_ENC_MODE_TUNNEL;
1228 dma_size = DMASZ;
1229 MM_DBG("Opened for tunnel mode encoding\n");
1230 } else {
1231 MM_ERR("Invalid mode\n");
1232 rc = -EACCES;
1233 goto done;
1234 }
1235
1236 /* Settings will be re-config at AUDIO_SET_CONFIG,
1237 * but at least we need to have initial config
1238 */
1239 audio->samp_rate = RPC_AUD_DEF_SAMPLE_RATE_8000,
1240 audio->samp_rate_index = AUDREC_CMD_SAMP_RATE_INDX_8000;
1241 audio->channel_mode = AUDREC_CMD_STEREO_MODE_MONO;
1242 if (audio->mode == MSM_AUD_ENC_MODE_NONTUNNEL)
1243 audio->buffer_size = (EVRC_FRAME_SIZE + 14);
1244 else
1245 audio->buffer_size = EVRC_FRAME_SIZE;
1246 audio->enc_type = AUDREC_CMD_TYPE_0_INDEX_EVRC | audio->mode;
1247
1248 audio->cfg.cdma_rate = CDMA_RATE_FULL;
1249 audio->cfg.min_bit_rate = CDMA_RATE_FULL;
1250 audio->cfg.max_bit_rate = CDMA_RATE_FULL;
1251
1252 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL) {
1253 rc = audmgr_open(&audio->audmgr);
1254 if (rc)
1255 goto done;
1256 }
1257
1258 encid = audpreproc_aenc_alloc(audio->enc_type, &audio->module_name,
1259 &audio->queue_ids);
1260 if (encid < 0) {
1261 MM_ERR("No free encoder available\n");
1262 rc = -ENODEV;
1263 goto done;
1264 }
1265 audio->enc_id = encid;
1266
1267 rc = msm_adsp_get(audio->module_name, &audio->audrec,
1268 &audrec_evrc_adsp_ops, audio);
1269 if (rc) {
1270 audpreproc_aenc_free(audio->enc_id);
1271 goto done;
1272 }
1273
1274 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL) {
1275 rc = msm_adsp_get("AUDPREPROCTASK", &audio->audpre,
1276 &audpre_evrc_adsp_ops, audio);
1277 if (rc) {
1278 msm_adsp_put(audio->audrec);
1279 audpreproc_aenc_free(audio->enc_id);
1280 goto done;
1281 }
1282 }
1283
1284 audio->dsp_cnt = 0;
1285 audio->stopped = 0;
1286 audio->wflush = 0;
1287 audio->rflush = 0;
1288 audio->flush_ack = 0;
1289
1290 audevrc_in_flush(audio);
1291 audevrc_out_flush(audio);
1292
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301293 audio->phys = allocate_contiguous_ebi_nomap(dma_size, SZ_4K);
1294 if (!audio->phys) {
1295 MM_ERR("could not allocate physical read buffers\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001296 rc = -ENOMEM;
1297 goto evt_error;
1298 } else {
Laura Abbott35111d32012-04-27 18:41:48 -07001299 audio->map_v_read = ioremap(audio->phys, dma_size);
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301300 if (IS_ERR(audio->map_v_read)) {
1301 MM_ERR("could not map physical address\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001302 rc = -ENOMEM;
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301303 free_contiguous_memory_by_paddr(audio->phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001304 goto evt_error;
1305 }
Laura Abbott35111d32012-04-27 18:41:48 -07001306 audio->data = audio->map_v_read;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001307 MM_DBG("read buf: phy addr 0x%08x kernel addr 0x%08x\n",
1308 audio->phys, (int)audio->data);
1309 }
1310 audio->out_data = NULL;
1311 if (audio->mode == MSM_AUD_ENC_MODE_NONTUNNEL) {
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301312 audio->out_phys = allocate_contiguous_ebi_nomap(BUFFER_SIZE,
1313 SZ_4K);
1314 if (!audio->out_phys) {
1315 MM_ERR("could not allocate physical write buffers\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001316 rc = -ENOMEM;
Laura Abbott35111d32012-04-27 18:41:48 -07001317 iounmap(audio->map_v_read);
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301318 free_contiguous_memory_by_paddr(audio->phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001319 goto evt_error;
1320 } else {
Laura Abbott35111d32012-04-27 18:41:48 -07001321 audio->map_v_write = ioremap(
1322 audio->out_phys, BUFFER_SIZE);
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301323
1324 if (IS_ERR(audio->map_v_write)) {
1325 MM_ERR("could not map write phys address\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001326 rc = -ENOMEM;
Laura Abbott35111d32012-04-27 18:41:48 -07001327 iounmap(audio->map_v_read);
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301328 free_contiguous_memory_by_paddr(audio->phys);
1329 free_contiguous_memory_by_paddr(\
1330 audio->out_phys);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001331 goto evt_error;
1332 }
Laura Abbott35111d32012-04-27 18:41:48 -07001333 audio->out_data = audio->map_v_write;
Santosh Mardi7faa0fa2011-09-22 15:32:23 +05301334 MM_DBG("wr buf: phy addr 0x%08x kernel addr 0x%08x\n",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001335 audio->out_phys, (int)audio->out_data);
1336 }
1337
1338 /* Initialize buffer */
1339 audio->out[0].data = audio->out_data + 0;
1340 audio->out[0].addr = audio->out_phys + 0;
1341 audio->out[0].size = OUT_BUFFER_SIZE;
1342
1343 audio->out[1].data = audio->out_data + OUT_BUFFER_SIZE;
1344 audio->out[1].addr = audio->out_phys + OUT_BUFFER_SIZE;
1345 audio->out[1].size = OUT_BUFFER_SIZE;
1346
1347 MM_DBG("audio->out[0].data = %d audio->out[1].data = %d",
1348 (unsigned int)audio->out[0].data,
1349 (unsigned int)audio->out[1].data);
1350 audio->mfield = NT_FRAME_HEADER_SIZE;
1351 audio->out_frame_cnt++;
1352 }
1353 file->private_data = audio;
1354 audio->opened = 1;
1355
1356done:
1357 mutex_unlock(&audio->lock);
1358 return rc;
1359evt_error:
1360 msm_adsp_put(audio->audrec);
1361 if (audio->mode == MSM_AUD_ENC_MODE_TUNNEL)
1362 msm_adsp_put(audio->audpre);
1363
1364 audpreproc_aenc_free(audio->enc_id);
1365 mutex_unlock(&audio->lock);
1366 return rc;
1367}
1368
1369static const struct file_operations audio_evrc_in_fops = {
1370 .owner = THIS_MODULE,
1371 .open = audevrc_in_open,
1372 .release = audevrc_in_release,
1373 .read = audevrc_in_read,
1374 .write = audevrc_in_write,
1375 .fsync = audevrc_in_fsync,
1376 .unlocked_ioctl = audevrc_in_ioctl,
1377};
1378
1379static struct miscdevice audevrc_in_misc = {
1380 .minor = MISC_DYNAMIC_MINOR,
1381 .name = "msm_evrc_in",
1382 .fops = &audio_evrc_in_fops,
1383};
1384
1385static int __init audevrc_in_init(void)
1386{
1387 mutex_init(&the_audio_evrc_in.lock);
1388 mutex_init(&the_audio_evrc_in.read_lock);
1389 spin_lock_init(&the_audio_evrc_in.dsp_lock);
1390 init_waitqueue_head(&the_audio_evrc_in.wait);
1391 init_waitqueue_head(&the_audio_evrc_in.wait_enable);
1392 mutex_init(&the_audio_evrc_in.write_lock);
1393 init_waitqueue_head(&the_audio_evrc_in.write_wait);
1394 return misc_register(&audevrc_in_misc);
1395}
1396device_initcall(audevrc_in_init);