2 * QEMU OSS audio driver
4 * Copyright (c) 2003-2005 Vassili Karpov (malc)
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include <sys/types.h>
27 #include <sys/ioctl.h>
28 #include <sys/soundcard.h>
29 #include "qemu-common.h"
30 #include "qemu/main-loop.h"
31 #include "qemu/host-utils.h"
34 #define AUDIO_CAP "oss"
35 #include "audio_int.h"
37 #if defined OSS_GETVERSION && defined SNDCTL_DSP_POLICY
38 #define USE_DSP_POLICY
41 typedef struct OSSVoiceOut
{
52 typedef struct OSSVoiceIn
{
64 const char *devpath_out
;
65 const char *devpath_in
;
73 .devpath_out
= "/dev/dsp",
74 .devpath_in
= "/dev/dsp",
88 static void GCC_FMT_ATTR (2, 3) oss_logerr (int err
, const char *fmt
, ...)
93 AUD_vlog (AUDIO_CAP
, fmt
, ap
);
96 AUD_log (AUDIO_CAP
, "Reason: %s\n", strerror (err
));
99 static void GCC_FMT_ATTR (3, 4) oss_logerr2 (
108 AUD_log (AUDIO_CAP
, "Could not initialize %s\n", typ
);
111 AUD_vlog (AUDIO_CAP
, fmt
, ap
);
114 AUD_log (AUDIO_CAP
, "Reason: %s\n", strerror (err
));
117 static void oss_anal_close (int *fdp
)
121 qemu_set_fd_handler (*fdp
, NULL
, NULL
, NULL
);
124 oss_logerr (errno
, "Failed to close file(fd=%d)\n", *fdp
);
129 static void oss_helper_poll_out (void *opaque
)
132 audio_run ("oss_poll_out");
135 static void oss_helper_poll_in (void *opaque
)
138 audio_run ("oss_poll_in");
141 static int oss_poll_out (HWVoiceOut
*hw
)
143 OSSVoiceOut
*oss
= (OSSVoiceOut
*) hw
;
145 return qemu_set_fd_handler (oss
->fd
, NULL
, oss_helper_poll_out
, NULL
);
148 static int oss_poll_in (HWVoiceIn
*hw
)
150 OSSVoiceIn
*oss
= (OSSVoiceIn
*) hw
;
152 return qemu_set_fd_handler (oss
->fd
, oss_helper_poll_in
, NULL
, NULL
);
155 static int oss_write (SWVoiceOut
*sw
, void *buf
, int len
)
157 return audio_pcm_sw_write (sw
, buf
, len
);
160 static int aud_to_ossfmt (audfmt_e fmt
, int endianness
)
186 dolog ("Internal logic error: Bad audio format %d\n", fmt
);
194 static int oss_to_audfmt (int ossfmt
, audfmt_e
*fmt
, int *endianness
)
228 dolog ("Unrecognized audio format %d\n", ossfmt
);
235 #if defined DEBUG_MISMATCHES || defined DEBUG
236 static void oss_dump_info (struct oss_params
*req
, struct oss_params
*obt
)
238 dolog ("parameter | requested value | obtained value\n");
239 dolog ("format | %10d | %10d\n", req
->fmt
, obt
->fmt
);
240 dolog ("channels | %10d | %10d\n",
241 req
->nchannels
, obt
->nchannels
);
242 dolog ("frequency | %10d | %10d\n", req
->freq
, obt
->freq
);
243 dolog ("nfrags | %10d | %10d\n", req
->nfrags
, obt
->nfrags
);
244 dolog ("fragsize | %10d | %10d\n",
245 req
->fragsize
, obt
->fragsize
);
249 #ifdef USE_DSP_POLICY
250 static int oss_get_version (int fd
, int *version
, const char *typ
)
252 if (ioctl (fd
, OSS_GETVERSION
, &version
)) {
253 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
255 * Looks like atm (20100109) FreeBSD knows OSS_GETVERSION
256 * since 7.x, but currently only on the mixer device (or in
257 * the Linuxolator), and in the native version that part of
258 * the code is in fact never reached so the ioctl fails anyway.
259 * Until this is fixed, just check the errno and if its what
260 * FreeBSD's sound drivers return atm assume they are new enough.
262 if (errno
== EINVAL
) {
267 oss_logerr2 (errno
, typ
, "Failed to get OSS version\n");
274 static int oss_open (int in
, struct oss_params
*req
,
275 struct oss_params
*obt
, int *pfd
)
278 int oflags
= conf
.exclusive
? O_EXCL
: 0;
279 audio_buf_info abinfo
;
280 int fmt
, freq
, nchannels
;
282 const char *dspname
= in
? conf
.devpath_in
: conf
.devpath_out
;
283 const char *typ
= in
? "ADC" : "DAC";
285 /* Kludge needed to have working mmap on Linux */
286 oflags
|= conf
.try_mmap
? O_RDWR
: (in
? O_RDONLY
: O_WRONLY
);
288 fd
= open (dspname
, oflags
| O_NONBLOCK
);
290 oss_logerr2 (errno
, typ
, "Failed to open `%s'\n", dspname
);
295 nchannels
= req
->nchannels
;
298 if (ioctl (fd
, SNDCTL_DSP_SAMPLESIZE
, &fmt
)) {
299 oss_logerr2 (errno
, typ
, "Failed to set sample size %d\n", req
->fmt
);
303 if (ioctl (fd
, SNDCTL_DSP_CHANNELS
, &nchannels
)) {
304 oss_logerr2 (errno
, typ
, "Failed to set number of channels %d\n",
309 if (ioctl (fd
, SNDCTL_DSP_SPEED
, &freq
)) {
310 oss_logerr2 (errno
, typ
, "Failed to set frequency %d\n", req
->freq
);
314 if (ioctl (fd
, SNDCTL_DSP_NONBLOCK
, NULL
)) {
315 oss_logerr2 (errno
, typ
, "Failed to set non-blocking mode\n");
319 #ifdef USE_DSP_POLICY
320 if (conf
.policy
>= 0) {
323 if (!oss_get_version (fd
, &version
, typ
)) {
325 dolog ("OSS version = %#x\n", version
);
328 if (version
>= 0x040000) {
329 int policy
= conf
.policy
;
330 if (ioctl (fd
, SNDCTL_DSP_POLICY
, &policy
)) {
331 oss_logerr2 (errno
, typ
,
332 "Failed to set timing policy to %d\n",
343 int mmmmssss
= (req
->nfrags
<< 16) | ctz32 (req
->fragsize
);
344 if (ioctl (fd
, SNDCTL_DSP_SETFRAGMENT
, &mmmmssss
)) {
345 oss_logerr2 (errno
, typ
, "Failed to set buffer length (%d, %d)\n",
346 req
->nfrags
, req
->fragsize
);
351 if (ioctl (fd
, in
? SNDCTL_DSP_GETISPACE
: SNDCTL_DSP_GETOSPACE
, &abinfo
)) {
352 oss_logerr2 (errno
, typ
, "Failed to get buffer length\n");
356 if (!abinfo
.fragstotal
|| !abinfo
.fragsize
) {
357 AUD_log (AUDIO_CAP
, "Returned bogus buffer information(%d, %d) for %s\n",
358 abinfo
.fragstotal
, abinfo
.fragsize
, typ
);
363 obt
->nchannels
= nchannels
;
365 obt
->nfrags
= abinfo
.fragstotal
;
366 obt
->fragsize
= abinfo
.fragsize
;
369 #ifdef DEBUG_MISMATCHES
370 if ((req
->fmt
!= obt
->fmt
) ||
371 (req
->nchannels
!= obt
->nchannels
) ||
372 (req
->freq
!= obt
->freq
) ||
373 (req
->fragsize
!= obt
->fragsize
) ||
374 (req
->nfrags
!= obt
->nfrags
)) {
375 dolog ("Audio parameters mismatch\n");
376 oss_dump_info (req
, obt
);
381 oss_dump_info (req
, obt
);
386 oss_anal_close (&fd
);
390 static void oss_write_pending (OSSVoiceOut
*oss
)
392 HWVoiceOut
*hw
= &oss
->hw
;
398 while (oss
->pending
) {
400 ssize_t bytes_written
;
401 int samples_till_end
= hw
->samples
- oss
->wpos
;
402 int samples_to_write
= audio_MIN (oss
->pending
, samples_till_end
);
403 int bytes_to_write
= samples_to_write
<< hw
->info
.shift
;
404 void *pcm
= advance (oss
->pcm_buf
, oss
->wpos
<< hw
->info
.shift
);
406 bytes_written
= write (oss
->fd
, pcm
, bytes_to_write
);
407 if (bytes_written
< 0) {
408 if (errno
!= EAGAIN
) {
409 oss_logerr (errno
, "failed to write %d bytes\n",
415 if (bytes_written
& hw
->info
.align
) {
416 dolog ("misaligned write asked for %d, but got %zd\n",
417 bytes_to_write
, bytes_written
);
421 samples_written
= bytes_written
>> hw
->info
.shift
;
422 oss
->pending
-= samples_written
;
423 oss
->wpos
= (oss
->wpos
+ samples_written
) % hw
->samples
;
424 if (bytes_written
- bytes_to_write
) {
430 static int oss_run_out (HWVoiceOut
*hw
, int live
)
432 OSSVoiceOut
*oss
= (OSSVoiceOut
*) hw
;
434 struct audio_buf_info abinfo
;
435 struct count_info cntinfo
;
438 bufsize
= hw
->samples
<< hw
->info
.shift
;
443 err
= ioctl (oss
->fd
, SNDCTL_DSP_GETOPTR
, &cntinfo
);
445 oss_logerr (errno
, "SNDCTL_DSP_GETOPTR failed\n");
449 pos
= hw
->rpos
<< hw
->info
.shift
;
450 bytes
= audio_ring_dist (cntinfo
.ptr
, pos
, bufsize
);
451 decr
= audio_MIN (bytes
>> hw
->info
.shift
, live
);
454 err
= ioctl (oss
->fd
, SNDCTL_DSP_GETOSPACE
, &abinfo
);
456 oss_logerr (errno
, "SNDCTL_DSP_GETOPTR failed\n");
460 if (abinfo
.bytes
> bufsize
) {
462 dolog ("warning: Invalid available size, size=%d bufsize=%d\n"
463 "please report your OS/audio hw to av1474@comtv.ru\n",
464 abinfo
.bytes
, bufsize
);
466 abinfo
.bytes
= bufsize
;
469 if (abinfo
.bytes
< 0) {
471 dolog ("warning: Invalid available size, size=%d bufsize=%d\n",
472 abinfo
.bytes
, bufsize
);
477 decr
= audio_MIN (abinfo
.bytes
>> hw
->info
.shift
, live
);
483 decr
= audio_pcm_hw_clip_out (hw
, oss
->pcm_buf
, decr
, oss
->pending
);
484 oss
->pending
+= decr
;
485 oss_write_pending (oss
);
490 static void oss_fini_out (HWVoiceOut
*hw
)
493 OSSVoiceOut
*oss
= (OSSVoiceOut
*) hw
;
495 ldebug ("oss_fini\n");
496 oss_anal_close (&oss
->fd
);
500 err
= munmap (oss
->pcm_buf
, hw
->samples
<< hw
->info
.shift
);
502 oss_logerr (errno
, "Failed to unmap buffer %p, size %d\n",
503 oss
->pcm_buf
, hw
->samples
<< hw
->info
.shift
);
507 g_free (oss
->pcm_buf
);
513 static int oss_init_out (HWVoiceOut
*hw
, struct audsettings
*as
)
515 OSSVoiceOut
*oss
= (OSSVoiceOut
*) hw
;
516 struct oss_params req
, obt
;
520 audfmt_e effective_fmt
;
521 struct audsettings obt_as
;
525 req
.fmt
= aud_to_ossfmt (as
->fmt
, as
->endianness
);
527 req
.nchannels
= as
->nchannels
;
528 req
.fragsize
= conf
.fragsize
;
529 req
.nfrags
= conf
.nfrags
;
531 if (oss_open (0, &req
, &obt
, &fd
)) {
535 err
= oss_to_audfmt (obt
.fmt
, &effective_fmt
, &endianness
);
537 oss_anal_close (&fd
);
541 obt_as
.freq
= obt
.freq
;
542 obt_as
.nchannels
= obt
.nchannels
;
543 obt_as
.fmt
= effective_fmt
;
544 obt_as
.endianness
= endianness
;
546 audio_pcm_init_info (&hw
->info
, &obt_as
);
547 oss
->nfrags
= obt
.nfrags
;
548 oss
->fragsize
= obt
.fragsize
;
550 if (obt
.nfrags
* obt
.fragsize
& hw
->info
.align
) {
551 dolog ("warning: Misaligned DAC buffer, size %d, alignment %d\n",
552 obt
.nfrags
* obt
.fragsize
, hw
->info
.align
+ 1);
555 hw
->samples
= (obt
.nfrags
* obt
.fragsize
) >> hw
->info
.shift
;
559 oss
->pcm_buf
= mmap (
561 hw
->samples
<< hw
->info
.shift
,
562 PROT_READ
| PROT_WRITE
,
567 if (oss
->pcm_buf
== MAP_FAILED
) {
568 oss_logerr (errno
, "Failed to map %d bytes of DAC\n",
569 hw
->samples
<< hw
->info
.shift
);
574 if (ioctl (fd
, SNDCTL_DSP_SETTRIGGER
, &trig
) < 0) {
575 oss_logerr (errno
, "SNDCTL_DSP_SETTRIGGER 0 failed\n");
578 trig
= PCM_ENABLE_OUTPUT
;
579 if (ioctl (fd
, SNDCTL_DSP_SETTRIGGER
, &trig
) < 0) {
582 "SNDCTL_DSP_SETTRIGGER PCM_ENABLE_OUTPUT failed\n"
591 err
= munmap (oss
->pcm_buf
, hw
->samples
<< hw
->info
.shift
);
593 oss_logerr (errno
, "Failed to unmap buffer %p size %d\n",
594 oss
->pcm_buf
, hw
->samples
<< hw
->info
.shift
);
601 oss
->pcm_buf
= audio_calloc (
608 "Could not allocate DAC buffer (%d samples, each %d bytes)\n",
612 oss_anal_close (&fd
);
621 static int oss_ctl_out (HWVoiceOut
*hw
, int cmd
, ...)
624 OSSVoiceOut
*oss
= (OSSVoiceOut
*) hw
;
633 poll_mode
= va_arg (ap
, int);
636 ldebug ("enabling voice\n");
637 if (poll_mode
&& oss_poll_out (hw
)) {
640 hw
->poll_mode
= poll_mode
;
646 audio_pcm_info_clear_buf (&hw
->info
, oss
->pcm_buf
, hw
->samples
);
647 trig
= PCM_ENABLE_OUTPUT
;
648 if (ioctl (oss
->fd
, SNDCTL_DSP_SETTRIGGER
, &trig
) < 0) {
651 "SNDCTL_DSP_SETTRIGGER PCM_ENABLE_OUTPUT failed\n"
660 qemu_set_fd_handler (oss
->fd
, NULL
, NULL
, NULL
);
668 ldebug ("disabling voice\n");
670 if (ioctl (oss
->fd
, SNDCTL_DSP_SETTRIGGER
, &trig
) < 0) {
671 oss_logerr (errno
, "SNDCTL_DSP_SETTRIGGER 0 failed\n");
679 static int oss_init_in (HWVoiceIn
*hw
, struct audsettings
*as
)
681 OSSVoiceIn
*oss
= (OSSVoiceIn
*) hw
;
682 struct oss_params req
, obt
;
686 audfmt_e effective_fmt
;
687 struct audsettings obt_as
;
691 req
.fmt
= aud_to_ossfmt (as
->fmt
, as
->endianness
);
693 req
.nchannels
= as
->nchannels
;
694 req
.fragsize
= conf
.fragsize
;
695 req
.nfrags
= conf
.nfrags
;
696 if (oss_open (1, &req
, &obt
, &fd
)) {
700 err
= oss_to_audfmt (obt
.fmt
, &effective_fmt
, &endianness
);
702 oss_anal_close (&fd
);
706 obt_as
.freq
= obt
.freq
;
707 obt_as
.nchannels
= obt
.nchannels
;
708 obt_as
.fmt
= effective_fmt
;
709 obt_as
.endianness
= endianness
;
711 audio_pcm_init_info (&hw
->info
, &obt_as
);
712 oss
->nfrags
= obt
.nfrags
;
713 oss
->fragsize
= obt
.fragsize
;
715 if (obt
.nfrags
* obt
.fragsize
& hw
->info
.align
) {
716 dolog ("warning: Misaligned ADC buffer, size %d, alignment %d\n",
717 obt
.nfrags
* obt
.fragsize
, hw
->info
.align
+ 1);
720 hw
->samples
= (obt
.nfrags
* obt
.fragsize
) >> hw
->info
.shift
;
721 oss
->pcm_buf
= audio_calloc (AUDIO_FUNC
, hw
->samples
, 1 << hw
->info
.shift
);
723 dolog ("Could not allocate ADC buffer (%d samples, each %d bytes)\n",
724 hw
->samples
, 1 << hw
->info
.shift
);
725 oss_anal_close (&fd
);
733 static void oss_fini_in (HWVoiceIn
*hw
)
735 OSSVoiceIn
*oss
= (OSSVoiceIn
*) hw
;
737 oss_anal_close (&oss
->fd
);
739 g_free(oss
->pcm_buf
);
743 static int oss_run_in (HWVoiceIn
*hw
)
745 OSSVoiceIn
*oss
= (OSSVoiceIn
*) hw
;
746 int hwshift
= hw
->info
.shift
;
748 int live
= audio_pcm_hw_get_live_in (hw
);
749 int dead
= hw
->samples
- live
;
750 size_t read_samples
= 0;
755 { .add
= hw
->wpos
, .len
= 0 },
756 { .add
= 0, .len
= 0 }
763 if (hw
->wpos
+ dead
> hw
->samples
) {
764 bufs
[0].len
= (hw
->samples
- hw
->wpos
) << hwshift
;
765 bufs
[1].len
= (dead
- (hw
->samples
- hw
->wpos
)) << hwshift
;
768 bufs
[0].len
= dead
<< hwshift
;
771 for (i
= 0; i
< 2; ++i
) {
775 void *p
= advance (oss
->pcm_buf
, bufs
[i
].add
<< hwshift
);
776 nread
= read (oss
->fd
, p
, bufs
[i
].len
);
779 if (nread
& hw
->info
.align
) {
780 dolog ("warning: Misaligned read %zd (requested %d), "
781 "alignment %d\n", nread
, bufs
[i
].add
<< hwshift
,
784 read_samples
+= nread
>> hwshift
;
785 hw
->conv (hw
->conv_buf
+ bufs
[i
].add
, p
, nread
>> hwshift
);
788 if (bufs
[i
].len
- nread
) {
797 "Failed to read %d bytes of audio (to %p)\n",
808 hw
->wpos
= (hw
->wpos
+ read_samples
) % hw
->samples
;
812 static int oss_read (SWVoiceIn
*sw
, void *buf
, int size
)
814 return audio_pcm_sw_read (sw
, buf
, size
);
817 static int oss_ctl_in (HWVoiceIn
*hw
, int cmd
, ...)
819 OSSVoiceIn
*oss
= (OSSVoiceIn
*) hw
;
828 poll_mode
= va_arg (ap
, int);
831 if (poll_mode
&& oss_poll_in (hw
)) {
834 hw
->poll_mode
= poll_mode
;
841 qemu_set_fd_handler (oss
->fd
, NULL
, NULL
, NULL
);
848 static void *oss_audio_init (void)
850 if (access(conf
.devpath_in
, R_OK
| W_OK
) < 0 ||
851 access(conf
.devpath_out
, R_OK
| W_OK
) < 0) {
857 static void oss_audio_fini (void *opaque
)
862 static struct audio_option oss_options
[] = {
866 .valp
= &conf
.fragsize
,
867 .descr
= "Fragment size in bytes"
872 .valp
= &conf
.nfrags
,
873 .descr
= "Number of fragments"
878 .valp
= &conf
.try_mmap
,
879 .descr
= "Try using memory mapped access"
884 .valp
= &conf
.devpath_out
,
885 .descr
= "Path to DAC device"
890 .valp
= &conf
.devpath_in
,
891 .descr
= "Path to ADC device"
896 .valp
= &conf
.exclusive
,
897 .descr
= "Open device in exclusive mode (vmix wont work)"
899 #ifdef USE_DSP_POLICY
903 .valp
= &conf
.policy
,
904 .descr
= "Set the timing policy of the device, -1 to use fragment mode",
911 .descr
= "Turn on some debugging messages"
913 { /* End of list */ }
916 static struct audio_pcm_ops oss_pcm_ops
= {
917 .init_out
= oss_init_out
,
918 .fini_out
= oss_fini_out
,
919 .run_out
= oss_run_out
,
921 .ctl_out
= oss_ctl_out
,
923 .init_in
= oss_init_in
,
924 .fini_in
= oss_fini_in
,
925 .run_in
= oss_run_in
,
930 struct audio_driver oss_audio_driver
= {
932 .descr
= "OSS http://www.opensound.com",
933 .options
= oss_options
,
934 .init
= oss_audio_init
,
935 .fini
= oss_audio_fini
,
936 .pcm_ops
= &oss_pcm_ops
,
938 .max_voices_out
= INT_MAX
,
939 .max_voices_in
= INT_MAX
,
940 .voice_size_out
= sizeof (OSSVoiceOut
),
941 .voice_size_in
= sizeof (OSSVoiceIn
)