2 * compress_core.c - compress offload core
4 * Copyright (C) 2011 Intel Corporation
5 * Authors: Vinod Koul <vinod.koul@linux.intel.com>
6 * Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 #define FORMAT(fmt) "%s: %d: " fmt, __func__, __LINE__
26 #define pr_fmt(fmt) KBUILD_MODNAME ": " FORMAT(fmt)
28 #include <linux/file.h>
30 #include <linux/list.h>
31 #include <linux/math64.h>
33 #include <linux/mutex.h>
34 #include <linux/poll.h>
35 #include <linux/slab.h>
36 #include <linux/sched.h>
37 #include <linux/types.h>
38 #include <linux/uio.h>
39 #include <linux/uaccess.h>
40 #include <linux/module.h>
41 #include <sound/core.h>
42 #include <sound/initval.h>
43 #include <sound/compress_params.h>
44 #include <sound/compress_offload.h>
45 #include <sound/compress_driver.h>
48 * - add substream support for multiple devices in case of
49 * SND_DYNAMIC_MINORS is not used
50 * - Multiple node representation
51 * driver should be able to register multiple nodes
54 static DEFINE_MUTEX(device_mutex
);
56 struct snd_compr_file
{
58 struct snd_compr_stream stream
;
62 * a note on stream states used:
63 * we use follwing states in the compressed core
64 * SNDRV_PCM_STATE_OPEN: When stream has been opened.
65 * SNDRV_PCM_STATE_SETUP: When stream has been initialized. This is done by
66 * calling SNDRV_COMPRESS_SET_PARAMS. running streams will come to this
67 * state at stop by calling SNDRV_COMPRESS_STOP, or at end of drain.
68 * SNDRV_PCM_STATE_RUNNING: When stream has been started and is
69 * decoding/encoding and rendering/capturing data.
70 * SNDRV_PCM_STATE_DRAINING: When stream is draining current data. This is done
71 * by calling SNDRV_COMPRESS_DRAIN.
72 * SNDRV_PCM_STATE_PAUSED: When stream is paused. This is done by calling
73 * SNDRV_COMPRESS_PAUSE. It can be stopped or resumed by calling
74 * SNDRV_COMPRESS_STOP or SNDRV_COMPRESS_RESUME respectively.
76 static int snd_compr_open(struct inode
*inode
, struct file
*f
)
78 struct snd_compr
*compr
;
79 struct snd_compr_file
*data
;
80 struct snd_compr_runtime
*runtime
;
81 enum snd_compr_direction dirn
;
82 int maj
= imajor(inode
);
85 if ((f
->f_flags
& O_ACCMODE
) == O_WRONLY
)
86 dirn
= SND_COMPRESS_PLAYBACK
;
87 else if ((f
->f_flags
& O_ACCMODE
) == O_RDONLY
)
88 dirn
= SND_COMPRESS_CAPTURE
;
93 compr
= snd_lookup_minor_data(iminor(inode
),
94 SNDRV_DEVICE_TYPE_COMPRESS
);
99 pr_err("no device data!!!\n");
103 if (dirn
!= compr
->direction
) {
104 pr_err("this device doesn't support this direction\n");
105 snd_card_unref(compr
->card
);
109 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
111 snd_card_unref(compr
->card
);
114 data
->stream
.ops
= compr
->ops
;
115 data
->stream
.direction
= dirn
;
116 data
->stream
.private_data
= compr
->private_data
;
117 data
->stream
.device
= compr
;
118 runtime
= kzalloc(sizeof(*runtime
), GFP_KERNEL
);
121 snd_card_unref(compr
->card
);
124 runtime
->state
= SNDRV_PCM_STATE_OPEN
;
125 init_waitqueue_head(&runtime
->sleep
);
126 data
->stream
.runtime
= runtime
;
127 f
->private_data
= (void *)data
;
128 mutex_lock(&compr
->lock
);
129 ret
= compr
->ops
->open(&data
->stream
);
130 mutex_unlock(&compr
->lock
);
135 snd_card_unref(compr
->card
);
139 static int snd_compr_free(struct inode
*inode
, struct file
*f
)
141 struct snd_compr_file
*data
= f
->private_data
;
142 struct snd_compr_runtime
*runtime
= data
->stream
.runtime
;
144 switch (runtime
->state
) {
145 case SNDRV_PCM_STATE_RUNNING
:
146 case SNDRV_PCM_STATE_DRAINING
:
147 case SNDRV_PCM_STATE_PAUSED
:
148 data
->stream
.ops
->trigger(&data
->stream
, SNDRV_PCM_TRIGGER_STOP
);
154 data
->stream
.ops
->free(&data
->stream
);
155 kfree(data
->stream
.runtime
->buffer
);
156 kfree(data
->stream
.runtime
);
161 static int snd_compr_update_tstamp(struct snd_compr_stream
*stream
,
162 struct snd_compr_tstamp
*tstamp
)
164 if (!stream
->ops
->pointer
)
166 stream
->ops
->pointer(stream
, tstamp
);
167 pr_debug("dsp consumed till %d total %d bytes\n",
168 tstamp
->byte_offset
, tstamp
->copied_total
);
169 if (stream
->direction
== SND_COMPRESS_PLAYBACK
)
170 stream
->runtime
->total_bytes_transferred
= tstamp
->copied_total
;
172 stream
->runtime
->total_bytes_available
= tstamp
->copied_total
;
176 static size_t snd_compr_calc_avail(struct snd_compr_stream
*stream
,
177 struct snd_compr_avail
*avail
)
179 memset(avail
, 0, sizeof(*avail
));
180 snd_compr_update_tstamp(stream
, &avail
->tstamp
);
181 /* Still need to return avail even if tstamp can't be filled in */
183 if (stream
->runtime
->total_bytes_available
== 0 &&
184 stream
->runtime
->state
== SNDRV_PCM_STATE_SETUP
&&
185 stream
->direction
== SND_COMPRESS_PLAYBACK
) {
186 pr_debug("detected init and someone forgot to do a write\n");
187 return stream
->runtime
->buffer_size
;
189 pr_debug("app wrote %lld, DSP consumed %lld\n",
190 stream
->runtime
->total_bytes_available
,
191 stream
->runtime
->total_bytes_transferred
);
192 if (stream
->runtime
->total_bytes_available
==
193 stream
->runtime
->total_bytes_transferred
) {
194 if (stream
->direction
== SND_COMPRESS_PLAYBACK
) {
195 pr_debug("both pointers are same, returning full avail\n");
196 return stream
->runtime
->buffer_size
;
198 pr_debug("both pointers are same, returning no avail\n");
203 avail
->avail
= stream
->runtime
->total_bytes_available
-
204 stream
->runtime
->total_bytes_transferred
;
205 if (stream
->direction
== SND_COMPRESS_PLAYBACK
)
206 avail
->avail
= stream
->runtime
->buffer_size
- avail
->avail
;
208 pr_debug("ret avail as %lld\n", avail
->avail
);
212 static inline size_t snd_compr_get_avail(struct snd_compr_stream
*stream
)
214 struct snd_compr_avail avail
;
216 return snd_compr_calc_avail(stream
, &avail
);
220 snd_compr_ioctl_avail(struct snd_compr_stream
*stream
, unsigned long arg
)
222 struct snd_compr_avail ioctl_avail
;
225 avail
= snd_compr_calc_avail(stream
, &ioctl_avail
);
226 ioctl_avail
.avail
= avail
;
228 if (copy_to_user((__u64 __user
*)arg
,
229 &ioctl_avail
, sizeof(ioctl_avail
)))
234 static int snd_compr_write_data(struct snd_compr_stream
*stream
,
235 const char __user
*buf
, size_t count
)
239 struct snd_compr_runtime
*runtime
= stream
->runtime
;
241 u64 app_pointer
= div64_u64(runtime
->total_bytes_available
,
242 runtime
->buffer_size
);
243 app_pointer
= runtime
->total_bytes_available
-
244 (app_pointer
* runtime
->buffer_size
);
246 dstn
= runtime
->buffer
+ app_pointer
;
247 pr_debug("copying %ld at %lld\n",
248 (unsigned long)count
, app_pointer
);
249 if (count
< runtime
->buffer_size
- app_pointer
) {
250 if (copy_from_user(dstn
, buf
, count
))
253 copy
= runtime
->buffer_size
- app_pointer
;
254 if (copy_from_user(dstn
, buf
, copy
))
256 if (copy_from_user(runtime
->buffer
, buf
+ copy
, count
- copy
))
259 /* if DSP cares, let it know data has been written */
260 if (stream
->ops
->ack
)
261 stream
->ops
->ack(stream
, count
);
265 static ssize_t
snd_compr_write(struct file
*f
, const char __user
*buf
,
266 size_t count
, loff_t
*offset
)
268 struct snd_compr_file
*data
= f
->private_data
;
269 struct snd_compr_stream
*stream
;
273 if (snd_BUG_ON(!data
))
276 stream
= &data
->stream
;
277 mutex_lock(&stream
->device
->lock
);
278 /* write is allowed when stream is running or has been steup */
279 if (stream
->runtime
->state
!= SNDRV_PCM_STATE_SETUP
&&
280 stream
->runtime
->state
!= SNDRV_PCM_STATE_RUNNING
) {
281 mutex_unlock(&stream
->device
->lock
);
285 avail
= snd_compr_get_avail(stream
);
286 pr_debug("avail returned %ld\n", (unsigned long)avail
);
287 /* calculate how much we can write to buffer */
291 if (stream
->ops
->copy
) {
292 char __user
* cbuf
= (char __user
*)buf
;
293 retval
= stream
->ops
->copy(stream
, cbuf
, avail
);
295 retval
= snd_compr_write_data(stream
, buf
, avail
);
298 stream
->runtime
->total_bytes_available
+= retval
;
300 /* while initiating the stream, write should be called before START
301 * call, so in setup move state */
302 if (stream
->runtime
->state
== SNDRV_PCM_STATE_SETUP
) {
303 stream
->runtime
->state
= SNDRV_PCM_STATE_PREPARED
;
304 pr_debug("stream prepared, Houston we are good to go\n");
307 mutex_unlock(&stream
->device
->lock
);
312 static ssize_t
snd_compr_read(struct file
*f
, char __user
*buf
,
313 size_t count
, loff_t
*offset
)
315 struct snd_compr_file
*data
= f
->private_data
;
316 struct snd_compr_stream
*stream
;
320 if (snd_BUG_ON(!data
))
323 stream
= &data
->stream
;
324 mutex_lock(&stream
->device
->lock
);
326 /* read is allowed when stream is running, paused, draining and setup
327 * (yes setup is state which we transition to after stop, so if user
328 * wants to read data after stop we allow that)
330 switch (stream
->runtime
->state
) {
331 case SNDRV_PCM_STATE_OPEN
:
332 case SNDRV_PCM_STATE_PREPARED
:
333 case SNDRV_PCM_STATE_XRUN
:
334 case SNDRV_PCM_STATE_SUSPENDED
:
335 case SNDRV_PCM_STATE_DISCONNECTED
:
340 avail
= snd_compr_get_avail(stream
);
341 pr_debug("avail returned %ld\n", (unsigned long)avail
);
342 /* calculate how much we can read from buffer */
346 if (stream
->ops
->copy
) {
347 retval
= stream
->ops
->copy(stream
, buf
, avail
);
353 stream
->runtime
->total_bytes_transferred
+= retval
;
356 mutex_unlock(&stream
->device
->lock
);
360 static int snd_compr_mmap(struct file
*f
, struct vm_area_struct
*vma
)
365 static inline int snd_compr_get_poll(struct snd_compr_stream
*stream
)
367 if (stream
->direction
== SND_COMPRESS_PLAYBACK
)
368 return POLLOUT
| POLLWRNORM
;
370 return POLLIN
| POLLRDNORM
;
373 static unsigned int snd_compr_poll(struct file
*f
, poll_table
*wait
)
375 struct snd_compr_file
*data
= f
->private_data
;
376 struct snd_compr_stream
*stream
;
380 if (snd_BUG_ON(!data
))
382 stream
= &data
->stream
;
383 if (snd_BUG_ON(!stream
))
386 mutex_lock(&stream
->device
->lock
);
387 if (stream
->runtime
->state
== SNDRV_PCM_STATE_OPEN
) {
391 poll_wait(f
, &stream
->runtime
->sleep
, wait
);
393 avail
= snd_compr_get_avail(stream
);
394 pr_debug("avail is %ld\n", (unsigned long)avail
);
395 /* check if we have at least one fragment to fill */
396 switch (stream
->runtime
->state
) {
397 case SNDRV_PCM_STATE_DRAINING
:
398 /* stream has been woken up after drain is complete
399 * draining done so set stream state to stopped
401 retval
= snd_compr_get_poll(stream
);
402 stream
->runtime
->state
= SNDRV_PCM_STATE_SETUP
;
404 case SNDRV_PCM_STATE_RUNNING
:
405 case SNDRV_PCM_STATE_PREPARED
:
406 case SNDRV_PCM_STATE_PAUSED
:
407 if (avail
>= stream
->runtime
->fragment_size
)
408 retval
= snd_compr_get_poll(stream
);
411 if (stream
->direction
== SND_COMPRESS_PLAYBACK
)
412 retval
= POLLOUT
| POLLWRNORM
| POLLERR
;
414 retval
= POLLIN
| POLLRDNORM
| POLLERR
;
418 mutex_unlock(&stream
->device
->lock
);
423 snd_compr_get_caps(struct snd_compr_stream
*stream
, unsigned long arg
)
426 struct snd_compr_caps caps
;
428 if (!stream
->ops
->get_caps
)
431 memset(&caps
, 0, sizeof(caps
));
432 retval
= stream
->ops
->get_caps(stream
, &caps
);
435 if (copy_to_user((void __user
*)arg
, &caps
, sizeof(caps
)))
442 snd_compr_get_codec_caps(struct snd_compr_stream
*stream
, unsigned long arg
)
445 struct snd_compr_codec_caps
*caps
;
447 if (!stream
->ops
->get_codec_caps
)
450 caps
= kzalloc(sizeof(*caps
), GFP_KERNEL
);
454 retval
= stream
->ops
->get_codec_caps(stream
, caps
);
457 if (copy_to_user((void __user
*)arg
, caps
, sizeof(*caps
)))
465 /* revisit this with snd_pcm_preallocate_xxx */
466 static int snd_compr_allocate_buffer(struct snd_compr_stream
*stream
,
467 struct snd_compr_params
*params
)
469 unsigned int buffer_size
;
472 buffer_size
= params
->buffer
.fragment_size
* params
->buffer
.fragments
;
473 if (stream
->ops
->copy
) {
475 /* if copy is defined the driver will be required to copy
479 buffer
= kmalloc(buffer_size
, GFP_KERNEL
);
483 stream
->runtime
->fragment_size
= params
->buffer
.fragment_size
;
484 stream
->runtime
->fragments
= params
->buffer
.fragments
;
485 stream
->runtime
->buffer
= buffer
;
486 stream
->runtime
->buffer_size
= buffer_size
;
490 static int snd_compress_check_input(struct snd_compr_params
*params
)
492 /* first let's check the buffer parameter's */
493 if (params
->buffer
.fragment_size
== 0 ||
494 params
->buffer
.fragments
> INT_MAX
/ params
->buffer
.fragment_size
)
497 /* now codec parameters */
498 if (params
->codec
.id
== 0 || params
->codec
.id
> SND_AUDIOCODEC_MAX
)
501 if (params
->codec
.ch_in
== 0 || params
->codec
.ch_out
== 0)
508 snd_compr_set_params(struct snd_compr_stream
*stream
, unsigned long arg
)
510 struct snd_compr_params
*params
;
513 if (stream
->runtime
->state
== SNDRV_PCM_STATE_OPEN
) {
515 * we should allow parameter change only when stream has been
516 * opened not in other cases
518 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
521 if (copy_from_user(params
, (void __user
*)arg
, sizeof(*params
))) {
526 retval
= snd_compress_check_input(params
);
530 retval
= snd_compr_allocate_buffer(stream
, params
);
536 retval
= stream
->ops
->set_params(stream
, params
);
540 stream
->metadata_set
= false;
541 stream
->next_track
= false;
543 if (stream
->direction
== SND_COMPRESS_PLAYBACK
)
544 stream
->runtime
->state
= SNDRV_PCM_STATE_SETUP
;
546 stream
->runtime
->state
= SNDRV_PCM_STATE_PREPARED
;
556 snd_compr_get_params(struct snd_compr_stream
*stream
, unsigned long arg
)
558 struct snd_codec
*params
;
561 if (!stream
->ops
->get_params
)
564 params
= kzalloc(sizeof(*params
), GFP_KERNEL
);
567 retval
= stream
->ops
->get_params(stream
, params
);
570 if (copy_to_user((char __user
*)arg
, params
, sizeof(*params
)))
579 snd_compr_get_metadata(struct snd_compr_stream
*stream
, unsigned long arg
)
581 struct snd_compr_metadata metadata
;
584 if (!stream
->ops
->get_metadata
)
587 if (copy_from_user(&metadata
, (void __user
*)arg
, sizeof(metadata
)))
590 retval
= stream
->ops
->get_metadata(stream
, &metadata
);
594 if (copy_to_user((void __user
*)arg
, &metadata
, sizeof(metadata
)))
601 snd_compr_set_metadata(struct snd_compr_stream
*stream
, unsigned long arg
)
603 struct snd_compr_metadata metadata
;
606 if (!stream
->ops
->set_metadata
)
609 * we should allow parameter change only when stream has been
610 * opened not in other cases
612 if (copy_from_user(&metadata
, (void __user
*)arg
, sizeof(metadata
)))
615 retval
= stream
->ops
->set_metadata(stream
, &metadata
);
616 stream
->metadata_set
= true;
622 snd_compr_tstamp(struct snd_compr_stream
*stream
, unsigned long arg
)
624 struct snd_compr_tstamp tstamp
= {0};
627 ret
= snd_compr_update_tstamp(stream
, &tstamp
);
629 ret
= copy_to_user((struct snd_compr_tstamp __user
*)arg
,
630 &tstamp
, sizeof(tstamp
)) ? -EFAULT
: 0;
634 static int snd_compr_pause(struct snd_compr_stream
*stream
)
638 if (stream
->runtime
->state
!= SNDRV_PCM_STATE_RUNNING
)
640 retval
= stream
->ops
->trigger(stream
, SNDRV_PCM_TRIGGER_PAUSE_PUSH
);
642 stream
->runtime
->state
= SNDRV_PCM_STATE_PAUSED
;
646 static int snd_compr_resume(struct snd_compr_stream
*stream
)
650 if (stream
->runtime
->state
!= SNDRV_PCM_STATE_PAUSED
)
652 retval
= stream
->ops
->trigger(stream
, SNDRV_PCM_TRIGGER_PAUSE_RELEASE
);
654 stream
->runtime
->state
= SNDRV_PCM_STATE_RUNNING
;
658 static int snd_compr_start(struct snd_compr_stream
*stream
)
662 if (stream
->runtime
->state
!= SNDRV_PCM_STATE_PREPARED
)
664 retval
= stream
->ops
->trigger(stream
, SNDRV_PCM_TRIGGER_START
);
666 stream
->runtime
->state
= SNDRV_PCM_STATE_RUNNING
;
670 static int snd_compr_stop(struct snd_compr_stream
*stream
)
674 if (stream
->runtime
->state
== SNDRV_PCM_STATE_PREPARED
||
675 stream
->runtime
->state
== SNDRV_PCM_STATE_SETUP
)
677 retval
= stream
->ops
->trigger(stream
, SNDRV_PCM_TRIGGER_STOP
);
679 snd_compr_drain_notify(stream
);
680 stream
->runtime
->total_bytes_available
= 0;
681 stream
->runtime
->total_bytes_transferred
= 0;
686 static int snd_compress_wait_for_drain(struct snd_compr_stream
*stream
)
691 * We are called with lock held. So drop the lock while we wait for
692 * drain complete notfication from the driver
694 * It is expected that driver will notify the drain completion and then
695 * stream will be moved to SETUP state, even if draining resulted in an
696 * error. We can trigger next track after this.
698 stream
->runtime
->state
= SNDRV_PCM_STATE_DRAINING
;
699 mutex_unlock(&stream
->device
->lock
);
701 /* we wait for drain to complete here, drain can return when
702 * interruption occurred, wait returned error or success.
703 * For the first two cases we don't do anything different here and
704 * return after waking up
707 ret
= wait_event_interruptible(stream
->runtime
->sleep
,
708 (stream
->runtime
->state
!= SNDRV_PCM_STATE_DRAINING
));
709 if (ret
== -ERESTARTSYS
)
710 pr_debug("wait aborted by a signal");
712 pr_debug("wait for drain failed with %d\n", ret
);
715 wake_up(&stream
->runtime
->sleep
);
716 mutex_lock(&stream
->device
->lock
);
721 static int snd_compr_drain(struct snd_compr_stream
*stream
)
725 if (stream
->runtime
->state
== SNDRV_PCM_STATE_PREPARED
||
726 stream
->runtime
->state
== SNDRV_PCM_STATE_SETUP
)
729 retval
= stream
->ops
->trigger(stream
, SND_COMPR_TRIGGER_DRAIN
);
731 pr_debug("SND_COMPR_TRIGGER_DRAIN failed %d\n", retval
);
732 wake_up(&stream
->runtime
->sleep
);
736 return snd_compress_wait_for_drain(stream
);
739 static int snd_compr_next_track(struct snd_compr_stream
*stream
)
743 /* only a running stream can transition to next track */
744 if (stream
->runtime
->state
!= SNDRV_PCM_STATE_RUNNING
)
747 /* you can signal next track isf this is intended to be a gapless stream
748 * and current track metadata is set
750 if (stream
->metadata_set
== false)
753 retval
= stream
->ops
->trigger(stream
, SND_COMPR_TRIGGER_NEXT_TRACK
);
756 stream
->metadata_set
= false;
757 stream
->next_track
= true;
761 static int snd_compr_partial_drain(struct snd_compr_stream
*stream
)
764 if (stream
->runtime
->state
== SNDRV_PCM_STATE_PREPARED
||
765 stream
->runtime
->state
== SNDRV_PCM_STATE_SETUP
)
767 /* stream can be drained only when next track has been signalled */
768 if (stream
->next_track
== false)
771 retval
= stream
->ops
->trigger(stream
, SND_COMPR_TRIGGER_PARTIAL_DRAIN
);
773 pr_debug("Partial drain returned failure\n");
774 wake_up(&stream
->runtime
->sleep
);
778 stream
->next_track
= false;
779 return snd_compress_wait_for_drain(stream
);
782 static long snd_compr_ioctl(struct file
*f
, unsigned int cmd
, unsigned long arg
)
784 struct snd_compr_file
*data
= f
->private_data
;
785 struct snd_compr_stream
*stream
;
786 int retval
= -ENOTTY
;
788 if (snd_BUG_ON(!data
))
790 stream
= &data
->stream
;
791 if (snd_BUG_ON(!stream
))
793 mutex_lock(&stream
->device
->lock
);
794 switch (_IOC_NR(cmd
)) {
795 case _IOC_NR(SNDRV_COMPRESS_IOCTL_VERSION
):
796 retval
= put_user(SNDRV_COMPRESS_VERSION
,
797 (int __user
*)arg
) ? -EFAULT
: 0;
799 case _IOC_NR(SNDRV_COMPRESS_GET_CAPS
):
800 retval
= snd_compr_get_caps(stream
, arg
);
802 case _IOC_NR(SNDRV_COMPRESS_GET_CODEC_CAPS
):
803 retval
= snd_compr_get_codec_caps(stream
, arg
);
805 case _IOC_NR(SNDRV_COMPRESS_SET_PARAMS
):
806 retval
= snd_compr_set_params(stream
, arg
);
808 case _IOC_NR(SNDRV_COMPRESS_GET_PARAMS
):
809 retval
= snd_compr_get_params(stream
, arg
);
811 case _IOC_NR(SNDRV_COMPRESS_SET_METADATA
):
812 retval
= snd_compr_set_metadata(stream
, arg
);
814 case _IOC_NR(SNDRV_COMPRESS_GET_METADATA
):
815 retval
= snd_compr_get_metadata(stream
, arg
);
817 case _IOC_NR(SNDRV_COMPRESS_TSTAMP
):
818 retval
= snd_compr_tstamp(stream
, arg
);
820 case _IOC_NR(SNDRV_COMPRESS_AVAIL
):
821 retval
= snd_compr_ioctl_avail(stream
, arg
);
823 case _IOC_NR(SNDRV_COMPRESS_PAUSE
):
824 retval
= snd_compr_pause(stream
);
826 case _IOC_NR(SNDRV_COMPRESS_RESUME
):
827 retval
= snd_compr_resume(stream
);
829 case _IOC_NR(SNDRV_COMPRESS_START
):
830 retval
= snd_compr_start(stream
);
832 case _IOC_NR(SNDRV_COMPRESS_STOP
):
833 retval
= snd_compr_stop(stream
);
835 case _IOC_NR(SNDRV_COMPRESS_DRAIN
):
836 retval
= snd_compr_drain(stream
);
838 case _IOC_NR(SNDRV_COMPRESS_PARTIAL_DRAIN
):
839 retval
= snd_compr_partial_drain(stream
);
841 case _IOC_NR(SNDRV_COMPRESS_NEXT_TRACK
):
842 retval
= snd_compr_next_track(stream
);
846 mutex_unlock(&stream
->device
->lock
);
850 static const struct file_operations snd_compr_file_ops
= {
851 .owner
= THIS_MODULE
,
852 .open
= snd_compr_open
,
853 .release
= snd_compr_free
,
854 .write
= snd_compr_write
,
855 .read
= snd_compr_read
,
856 .unlocked_ioctl
= snd_compr_ioctl
,
857 .mmap
= snd_compr_mmap
,
858 .poll
= snd_compr_poll
,
861 static int snd_compress_dev_register(struct snd_device
*device
)
865 struct snd_compr
*compr
;
867 if (snd_BUG_ON(!device
|| !device
->device_data
))
869 compr
= device
->device_data
;
871 pr_debug("reg %s for device %s, direction %d\n", str
, compr
->name
,
873 /* register compressed device */
874 ret
= snd_register_device(SNDRV_DEVICE_TYPE_COMPRESS
,
875 compr
->card
, compr
->device
,
876 &snd_compr_file_ops
, compr
, &compr
->dev
);
878 pr_err("snd_register_device failed\n %d", ret
);
885 static int snd_compress_dev_disconnect(struct snd_device
*device
)
887 struct snd_compr
*compr
;
889 compr
= device
->device_data
;
890 snd_unregister_device(&compr
->dev
);
894 static int snd_compress_dev_free(struct snd_device
*device
)
896 struct snd_compr
*compr
;
898 compr
= device
->device_data
;
899 put_device(&compr
->dev
);
904 * snd_compress_new: create new compress device
905 * @card: sound card pointer
906 * @device: device number
907 * @dirn: device direction, should be of type enum snd_compr_direction
908 * @compr: compress device pointer
910 int snd_compress_new(struct snd_card
*card
, int device
,
911 int dirn
, struct snd_compr
*compr
)
913 static struct snd_device_ops ops
= {
914 .dev_free
= snd_compress_dev_free
,
915 .dev_register
= snd_compress_dev_register
,
916 .dev_disconnect
= snd_compress_dev_disconnect
,
920 compr
->device
= device
;
921 compr
->direction
= dirn
;
923 snd_device_initialize(&compr
->dev
, card
);
924 dev_set_name(&compr
->dev
, "comprC%iD%i", card
->number
, device
);
926 return snd_device_new(card
, SNDRV_DEV_COMPRESS
, compr
, &ops
);
928 EXPORT_SYMBOL_GPL(snd_compress_new
);
930 static int snd_compress_add_device(struct snd_compr
*device
)
937 /* register the card */
938 ret
= snd_card_register(device
->card
);
944 pr_err("failed with %d\n", ret
);
949 static int snd_compress_remove_device(struct snd_compr
*device
)
951 return snd_card_free(device
->card
);
955 * snd_compress_register - register compressed device
957 * @device: compressed device to register
959 int snd_compress_register(struct snd_compr
*device
)
963 if (device
->name
== NULL
|| device
->ops
== NULL
)
966 pr_debug("Registering compressed device %s\n", device
->name
);
967 if (snd_BUG_ON(!device
->ops
->open
))
969 if (snd_BUG_ON(!device
->ops
->free
))
971 if (snd_BUG_ON(!device
->ops
->set_params
))
973 if (snd_BUG_ON(!device
->ops
->trigger
))
976 mutex_init(&device
->lock
);
978 /* register a compressed card */
979 mutex_lock(&device_mutex
);
980 retval
= snd_compress_add_device(device
);
981 mutex_unlock(&device_mutex
);
984 EXPORT_SYMBOL_GPL(snd_compress_register
);
986 int snd_compress_deregister(struct snd_compr
*device
)
988 pr_debug("Removing compressed device %s\n", device
->name
);
989 mutex_lock(&device_mutex
);
990 snd_compress_remove_device(device
);
991 mutex_unlock(&device_mutex
);
994 EXPORT_SYMBOL_GPL(snd_compress_deregister
);
996 static int __init
snd_compress_init(void)
1001 static void __exit
snd_compress_exit(void)
1005 module_init(snd_compress_init
);
1006 module_exit(snd_compress_exit
);
1008 MODULE_DESCRIPTION("ALSA Compressed offload framework");
1009 MODULE_AUTHOR("Vinod Koul <vinod.koul@linux.intel.com>");
1010 MODULE_LICENSE("GPL v2");