]> git.ipfire.org Git - thirdparty/qemu.git/blame - audio/ossaudio.c
Include qemu/module.h where needed, drop it from qemu-common.h
[thirdparty/qemu.git] / audio / ossaudio.c
CommitLineData
85571bc7 1/*
1d14ffa9
FB
2 * QEMU OSS audio driver
3 *
4 * Copyright (c) 2003-2005 Vassili Karpov (malc)
5 *
85571bc7
FB
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
0b8fa32f 24
6086a565 25#include "qemu/osdep.h"
85571bc7
FB
26#include <sys/ioctl.h>
27#include <sys/soundcard.h>
1de7afc9 28#include "qemu/main-loop.h"
0b8fa32f 29#include "qemu/module.h"
1de7afc9 30#include "qemu/host-utils.h"
87ecb68b 31#include "audio.h"
d95d7d80 32#include "trace.h"
fb065187 33
1d14ffa9
FB
34#define AUDIO_CAP "oss"
35#include "audio_int.h"
fb065187 36
78d9356d 37#if defined OSS_GETVERSION && defined SNDCTL_DSP_POLICY
38#define USE_DSP_POLICY
39#endif
40
1d14ffa9
FB
41typedef struct OSSVoiceOut {
42 HWVoiceOut hw;
fb065187
FB
43 void *pcm_buf;
44 int fd;
9d168976 45 int wpos;
fb065187
FB
46 int nfrags;
47 int fragsize;
48 int mmapped;
9d168976 49 int pending;
baf6c7f4 50 Audiodev *dev;
1d14ffa9 51} OSSVoiceOut;
85571bc7 52
1d14ffa9
FB
53typedef struct OSSVoiceIn {
54 HWVoiceIn hw;
55 void *pcm_buf;
56 int fd;
57 int nfrags;
58 int fragsize;
baf6c7f4 59 Audiodev *dev;
1d14ffa9 60} OSSVoiceIn;
85571bc7 61
85571bc7
FB
62struct oss_params {
63 int freq;
baf6c7f4 64 int fmt;
85571bc7
FB
65 int nchannels;
66 int nfrags;
67 int fragsize;
68};
69
1d14ffa9 70static void GCC_FMT_ATTR (2, 3) oss_logerr (int err, const char *fmt, ...)
85571bc7 71{
1d14ffa9
FB
72 va_list ap;
73
571ec3d6 74 va_start (ap, fmt);
1d14ffa9 75 AUD_vlog (AUDIO_CAP, fmt, ap);
571ec3d6 76 va_end (ap);
1d14ffa9 77
1d14ffa9 78 AUD_log (AUDIO_CAP, "Reason: %s\n", strerror (err));
85571bc7
FB
79}
80
1d14ffa9
FB
81static void GCC_FMT_ATTR (3, 4) oss_logerr2 (
82 int err,
83 const char *typ,
84 const char *fmt,
85 ...
86 )
87{
88 va_list ap;
89
c0fe3827 90 AUD_log (AUDIO_CAP, "Could not initialize %s\n", typ);
1d14ffa9
FB
91
92 va_start (ap, fmt);
93 AUD_vlog (AUDIO_CAP, fmt, ap);
94 va_end (ap);
95
96 AUD_log (AUDIO_CAP, "Reason: %s\n", strerror (err));
97}
98
99static void oss_anal_close (int *fdp)
100{
6ebfda13 101 int err;
102
103 qemu_set_fd_handler (*fdp, NULL, NULL, NULL);
104 err = close (*fdp);
1d14ffa9
FB
105 if (err) {
106 oss_logerr (errno, "Failed to close file(fd=%d)\n", *fdp);
107 }
108 *fdp = -1;
109}
110
dd8a5649 111static void oss_helper_poll_out (void *opaque)
112{
113 (void) opaque;
114 audio_run ("oss_poll_out");
115}
116
117static void oss_helper_poll_in (void *opaque)
118{
119 (void) opaque;
120 audio_run ("oss_poll_in");
121}
122
b027a538 123static void oss_poll_out (HWVoiceOut *hw)
dd8a5649 124{
125 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
126
b027a538 127 qemu_set_fd_handler (oss->fd, NULL, oss_helper_poll_out, NULL);
dd8a5649 128}
129
b027a538 130static void oss_poll_in (HWVoiceIn *hw)
dd8a5649 131{
132 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
133
b027a538 134 qemu_set_fd_handler (oss->fd, oss_helper_poll_in, NULL, NULL);
dd8a5649 135}
136
1d14ffa9
FB
137static int oss_write (SWVoiceOut *sw, void *buf, int len)
138{
139 return audio_pcm_sw_write (sw, buf, len);
140}
141
85bc5852 142static int aud_to_ossfmt (AudioFormat fmt, int endianness)
85571bc7
FB
143{
144 switch (fmt) {
85bc5852 145 case AUDIO_FORMAT_S8:
1d14ffa9
FB
146 return AFMT_S8;
147
85bc5852 148 case AUDIO_FORMAT_U8:
1d14ffa9
FB
149 return AFMT_U8;
150
85bc5852 151 case AUDIO_FORMAT_S16:
b6c9c940
MW
152 if (endianness) {
153 return AFMT_S16_BE;
154 }
155 else {
156 return AFMT_S16_LE;
157 }
1d14ffa9 158
85bc5852 159 case AUDIO_FORMAT_U16:
b6c9c940
MW
160 if (endianness) {
161 return AFMT_U16_BE;
162 }
163 else {
164 return AFMT_U16_LE;
165 }
1d14ffa9 166
85571bc7 167 default:
1d14ffa9
FB
168 dolog ("Internal logic error: Bad audio format %d\n", fmt);
169#ifdef DEBUG_AUDIO
170 abort ();
171#endif
172 return AFMT_U8;
85571bc7
FB
173 }
174}
175
85bc5852 176static int oss_to_audfmt (int ossfmt, AudioFormat *fmt, int *endianness)
85571bc7 177{
1d14ffa9
FB
178 switch (ossfmt) {
179 case AFMT_S8:
ca9cc28c 180 *endianness = 0;
85bc5852 181 *fmt = AUDIO_FORMAT_S8;
1d14ffa9
FB
182 break;
183
184 case AFMT_U8:
185 *endianness = 0;
85bc5852 186 *fmt = AUDIO_FORMAT_U8;
1d14ffa9
FB
187 break;
188
189 case AFMT_S16_LE:
190 *endianness = 0;
85bc5852 191 *fmt = AUDIO_FORMAT_S16;
1d14ffa9
FB
192 break;
193
194 case AFMT_U16_LE:
195 *endianness = 0;
85bc5852 196 *fmt = AUDIO_FORMAT_U16;
1d14ffa9
FB
197 break;
198
199 case AFMT_S16_BE:
200 *endianness = 1;
85bc5852 201 *fmt = AUDIO_FORMAT_S16;
1d14ffa9
FB
202 break;
203
204 case AFMT_U16_BE:
205 *endianness = 1;
85bc5852 206 *fmt = AUDIO_FORMAT_U16;
1d14ffa9
FB
207 break;
208
85571bc7 209 default:
1d14ffa9
FB
210 dolog ("Unrecognized audio format %d\n", ossfmt);
211 return -1;
85571bc7 212 }
1d14ffa9
FB
213
214 return 0;
85571bc7
FB
215}
216
c0fe3827 217#if defined DEBUG_MISMATCHES || defined DEBUG
1d14ffa9 218static void oss_dump_info (struct oss_params *req, struct oss_params *obt)
85571bc7
FB
219{
220 dolog ("parameter | requested value | obtained value\n");
221 dolog ("format | %10d | %10d\n", req->fmt, obt->fmt);
1d14ffa9
FB
222 dolog ("channels | %10d | %10d\n",
223 req->nchannels, obt->nchannels);
85571bc7
FB
224 dolog ("frequency | %10d | %10d\n", req->freq, obt->freq);
225 dolog ("nfrags | %10d | %10d\n", req->nfrags, obt->nfrags);
1d14ffa9
FB
226 dolog ("fragsize | %10d | %10d\n",
227 req->fragsize, obt->fragsize);
85571bc7
FB
228}
229#endif
230
72ff25e4
JL
231#ifdef USE_DSP_POLICY
232static int oss_get_version (int fd, int *version, const char *typ)
233{
234 if (ioctl (fd, OSS_GETVERSION, &version)) {
235#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
236 /*
237 * Looks like atm (20100109) FreeBSD knows OSS_GETVERSION
238 * since 7.x, but currently only on the mixer device (or in
239 * the Linuxolator), and in the native version that part of
240 * the code is in fact never reached so the ioctl fails anyway.
241 * Until this is fixed, just check the errno and if its what
242 * FreeBSD's sound drivers return atm assume they are new enough.
243 */
244 if (errno == EINVAL) {
245 *version = 0x040000;
246 return 0;
247 }
248#endif
249 oss_logerr2 (errno, typ, "Failed to get OSS version\n");
250 return -1;
251 }
252 return 0;
253}
254#endif
255
baf6c7f4
KZ
256static int oss_open(int in, struct oss_params *req, audsettings *as,
257 struct oss_params *obt, int *pfd, Audiodev *dev)
85571bc7 258{
baf6c7f4
KZ
259 AudiodevOssOptions *oopts = &dev->u.oss;
260 AudiodevOssPerDirectionOptions *opdo = in ? oopts->in : oopts->out;
85571bc7 261 int fd;
baf6c7f4 262 int oflags = (oopts->has_exclusive && oopts->exclusive) ? O_EXCL : 0;
85571bc7
FB
263 audio_buf_info abinfo;
264 int fmt, freq, nchannels;
3d709fe7 265 int setfragment = 1;
baf6c7f4 266 const char *dspname = opdo->has_dev ? opdo->dev : "/dev/dsp";
1d14ffa9 267 const char *typ = in ? "ADC" : "DAC";
baf6c7f4
KZ
268#ifdef USE_DSP_POLICY
269 int policy = oopts->has_dsp_policy ? oopts->dsp_policy : 5;
270#endif
85571bc7 271
2182349d 272 /* Kludge needed to have working mmap on Linux */
baf6c7f4
KZ
273 oflags |= (oopts->has_try_mmap && oopts->try_mmap) ?
274 O_RDWR : (in ? O_RDONLY : O_WRONLY);
0b3652bc 275
2182349d 276 fd = open (dspname, oflags | O_NONBLOCK);
85571bc7 277 if (-1 == fd) {
1d14ffa9 278 oss_logerr2 (errno, typ, "Failed to open `%s'\n", dspname);
85571bc7
FB
279 return -1;
280 }
281
282 freq = req->freq;
283 nchannels = req->nchannels;
284 fmt = req->fmt;
baf6c7f4
KZ
285 req->nfrags = opdo->has_buffer_count ? opdo->buffer_count : 4;
286 req->fragsize = audio_buffer_bytes(
287 qapi_AudiodevOssPerDirectionOptions_base(opdo), as, 23220);
85571bc7
FB
288
289 if (ioctl (fd, SNDCTL_DSP_SAMPLESIZE, &fmt)) {
1d14ffa9 290 oss_logerr2 (errno, typ, "Failed to set sample size %d\n", req->fmt);
85571bc7
FB
291 goto err;
292 }
293
294 if (ioctl (fd, SNDCTL_DSP_CHANNELS, &nchannels)) {
1d14ffa9
FB
295 oss_logerr2 (errno, typ, "Failed to set number of channels %d\n",
296 req->nchannels);
85571bc7
FB
297 goto err;
298 }
299
300 if (ioctl (fd, SNDCTL_DSP_SPEED, &freq)) {
1d14ffa9 301 oss_logerr2 (errno, typ, "Failed to set frequency %d\n", req->freq);
85571bc7
FB
302 goto err;
303 }
304
902e2b51 305 if (ioctl (fd, SNDCTL_DSP_NONBLOCK, NULL)) {
1d14ffa9 306 oss_logerr2 (errno, typ, "Failed to set non-blocking mode\n");
85571bc7
FB
307 goto err;
308 }
309
78d9356d 310#ifdef USE_DSP_POLICY
baf6c7f4 311 if (policy >= 0) {
6d246526 312 int version;
0b3652bc 313
72ff25e4 314 if (!oss_get_version (fd, &version, typ)) {
d95d7d80 315 trace_oss_version(version);
6d246526 316
3d709fe7 317 if (version >= 0x040000) {
baf6c7f4
KZ
318 int policy2 = policy;
319 if (ioctl(fd, SNDCTL_DSP_POLICY, &policy2)) {
3d709fe7 320 oss_logerr2 (errno, typ,
321 "Failed to set timing policy to %d\n",
baf6c7f4 322 policy);
3d709fe7 323 goto err;
324 }
325 setfragment = 0;
6d246526 326 }
0b3652bc 327 }
328 }
0b3652bc 329#endif
3d709fe7 330
331 if (setfragment) {
0b3652bc 332 int mmmmssss = (req->nfrags << 16) | ctz32 (req->fragsize);
333 if (ioctl (fd, SNDCTL_DSP_SETFRAGMENT, &mmmmssss)) {
334 oss_logerr2 (errno, typ, "Failed to set buffer length (%d, %d)\n",
335 req->nfrags, req->fragsize);
336 goto err;
337 }
85571bc7
FB
338 }
339
1d14ffa9
FB
340 if (ioctl (fd, in ? SNDCTL_DSP_GETISPACE : SNDCTL_DSP_GETOSPACE, &abinfo)) {
341 oss_logerr2 (errno, typ, "Failed to get buffer length\n");
85571bc7
FB
342 goto err;
343 }
344
29ddf27b 345 if (!abinfo.fragstotal || !abinfo.fragsize) {
346 AUD_log (AUDIO_CAP, "Returned bogus buffer information(%d, %d) for %s\n",
347 abinfo.fragstotal, abinfo.fragsize, typ);
348 goto err;
349 }
350
85571bc7
FB
351 obt->fmt = fmt;
352 obt->nchannels = nchannels;
353 obt->freq = freq;
354 obt->nfrags = abinfo.fragstotal;
355 obt->fragsize = abinfo.fragsize;
356 *pfd = fd;
357
c0fe3827 358#ifdef DEBUG_MISMATCHES
85571bc7
FB
359 if ((req->fmt != obt->fmt) ||
360 (req->nchannels != obt->nchannels) ||
361 (req->freq != obt->freq) ||
362 (req->fragsize != obt->fragsize) ||
363 (req->nfrags != obt->nfrags)) {
85571bc7 364 dolog ("Audio parameters mismatch\n");
1d14ffa9 365 oss_dump_info (req, obt);
85571bc7 366 }
c0fe3827 367#endif
85571bc7 368
1d14ffa9
FB
369#ifdef DEBUG
370 oss_dump_info (req, obt);
85571bc7
FB
371#endif
372 return 0;
373
1d14ffa9
FB
374 err:
375 oss_anal_close (&fd);
85571bc7
FB
376 return -1;
377}
378
9d168976 379static void oss_write_pending (OSSVoiceOut *oss)
380{
381 HWVoiceOut *hw = &oss->hw;
382
383 if (oss->mmapped) {
384 return;
385 }
386
387 while (oss->pending) {
388 int samples_written;
389 ssize_t bytes_written;
390 int samples_till_end = hw->samples - oss->wpos;
391 int samples_to_write = audio_MIN (oss->pending, samples_till_end);
392 int bytes_to_write = samples_to_write << hw->info.shift;
393 void *pcm = advance (oss->pcm_buf, oss->wpos << hw->info.shift);
394
395 bytes_written = write (oss->fd, pcm, bytes_to_write);
396 if (bytes_written < 0) {
397 if (errno != EAGAIN) {
398 oss_logerr (errno, "failed to write %d bytes\n",
399 bytes_to_write);
400 }
401 break;
402 }
403
404 if (bytes_written & hw->info.align) {
405 dolog ("misaligned write asked for %d, but got %zd\n",
406 bytes_to_write, bytes_written);
407 return;
408 }
409
410 samples_written = bytes_written >> hw->info.shift;
411 oss->pending -= samples_written;
412 oss->wpos = (oss->wpos + samples_written) % hw->samples;
413 if (bytes_written - bytes_to_write) {
414 break;
415 }
416 }
417}
418
bdff253c 419static int oss_run_out (HWVoiceOut *hw, int live)
85571bc7 420{
1d14ffa9 421 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
bdff253c 422 int err, decr;
85571bc7
FB
423 struct audio_buf_info abinfo;
424 struct count_info cntinfo;
c0fe3827 425 int bufsize;
85571bc7 426
c0fe3827
FB
427 bufsize = hw->samples << hw->info.shift;
428
85571bc7 429 if (oss->mmapped) {
54762b73 430 int bytes, pos;
85571bc7
FB
431
432 err = ioctl (oss->fd, SNDCTL_DSP_GETOPTR, &cntinfo);
433 if (err < 0) {
1d14ffa9
FB
434 oss_logerr (errno, "SNDCTL_DSP_GETOPTR failed\n");
435 return 0;
85571bc7
FB
436 }
437
54762b73 438 pos = hw->rpos << hw->info.shift;
439 bytes = audio_ring_dist (cntinfo.ptr, pos, bufsize);
1d14ffa9 440 decr = audio_MIN (bytes >> hw->info.shift, live);
85571bc7
FB
441 }
442 else {
443 err = ioctl (oss->fd, SNDCTL_DSP_GETOSPACE, &abinfo);
444 if (err < 0) {
1d14ffa9
FB
445 oss_logerr (errno, "SNDCTL_DSP_GETOPTR failed\n");
446 return 0;
447 }
448
8ead62cf 449 if (abinfo.bytes > bufsize) {
d95d7d80 450 trace_oss_invalid_available_size(abinfo.bytes, bufsize);
8ead62cf
FB
451 abinfo.bytes = bufsize;
452 }
453
454 if (abinfo.bytes < 0) {
d95d7d80 455 trace_oss_invalid_available_size(abinfo.bytes, bufsize);
1d14ffa9 456 return 0;
85571bc7
FB
457 }
458
1d14ffa9
FB
459 decr = audio_MIN (abinfo.bytes >> hw->info.shift, live);
460 if (!decr) {
461 return 0;
462 }
85571bc7
FB
463 }
464
9d168976 465 decr = audio_pcm_hw_clip_out (hw, oss->pcm_buf, decr, oss->pending);
466 oss->pending += decr;
467 oss_write_pending (oss);
85571bc7 468
1d14ffa9 469 return decr;
85571bc7
FB
470}
471
1d14ffa9 472static void oss_fini_out (HWVoiceOut *hw)
85571bc7
FB
473{
474 int err;
1d14ffa9 475 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
85571bc7 476
1d14ffa9
FB
477 ldebug ("oss_fini\n");
478 oss_anal_close (&oss->fd);
85571bc7
FB
479
480 if (oss->pcm_buf) {
481 if (oss->mmapped) {
c0fe3827 482 err = munmap (oss->pcm_buf, hw->samples << hw->info.shift);
85571bc7 483 if (err) {
1d14ffa9 484 oss_logerr (errno, "Failed to unmap buffer %p, size %d\n",
c0fe3827 485 oss->pcm_buf, hw->samples << hw->info.shift);
85571bc7
FB
486 }
487 }
488 else {
7267c094 489 g_free (oss->pcm_buf);
85571bc7
FB
490 }
491 oss->pcm_buf = NULL;
492 }
493}
494
5706db1d
KZ
495static int oss_init_out(HWVoiceOut *hw, struct audsettings *as,
496 void *drv_opaque)
85571bc7 497{
1d14ffa9 498 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
85571bc7 499 struct oss_params req, obt;
1d14ffa9
FB
500 int endianness;
501 int err;
502 int fd;
85bc5852 503 AudioFormat effective_fmt;
1ea879e5 504 struct audsettings obt_as;
baf6c7f4
KZ
505 Audiodev *dev = drv_opaque;
506 AudiodevOssOptions *oopts = &dev->u.oss;
85571bc7 507
571ec3d6
FB
508 oss->fd = -1;
509
b6c9c940 510 req.fmt = aud_to_ossfmt (as->fmt, as->endianness);
c0fe3827
FB
511 req.freq = as->freq;
512 req.nchannels = as->nchannels;
85571bc7 513
baf6c7f4 514 if (oss_open(0, &req, as, &obt, &fd, dev)) {
85571bc7 515 return -1;
1d14ffa9 516 }
85571bc7 517
1d14ffa9
FB
518 err = oss_to_audfmt (obt.fmt, &effective_fmt, &endianness);
519 if (err) {
520 oss_anal_close (&fd);
521 return -1;
522 }
85571bc7 523
c0fe3827
FB
524 obt_as.freq = obt.freq;
525 obt_as.nchannels = obt.nchannels;
526 obt_as.fmt = effective_fmt;
d929eba5 527 obt_as.endianness = endianness;
c0fe3827 528
d929eba5 529 audio_pcm_init_info (&hw->info, &obt_as);
85571bc7
FB
530 oss->nfrags = obt.nfrags;
531 oss->fragsize = obt.fragsize;
c0fe3827
FB
532
533 if (obt.nfrags * obt.fragsize & hw->info.align) {
534 dolog ("warning: Misaligned DAC buffer, size %d, alignment %d\n",
535 obt.nfrags * obt.fragsize, hw->info.align + 1);
536 }
537
538 hw->samples = (obt.nfrags * obt.fragsize) >> hw->info.shift;
85571bc7
FB
539
540 oss->mmapped = 0;
baf6c7f4 541 if (oopts->has_try_mmap && oopts->try_mmap) {
c0fe3827 542 oss->pcm_buf = mmap (
660f11be 543 NULL,
c0fe3827
FB
544 hw->samples << hw->info.shift,
545 PROT_READ | PROT_WRITE,
546 MAP_SHARED,
547 fd,
548 0
549 );
85571bc7 550 if (oss->pcm_buf == MAP_FAILED) {
1d14ffa9 551 oss_logerr (errno, "Failed to map %d bytes of DAC\n",
c0fe3827 552 hw->samples << hw->info.shift);
54762b73 553 }
554 else {
85571bc7
FB
555 int err;
556 int trig = 0;
1d14ffa9
FB
557 if (ioctl (fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
558 oss_logerr (errno, "SNDCTL_DSP_SETTRIGGER 0 failed\n");
85571bc7 559 }
44a095a7
FB
560 else {
561 trig = PCM_ENABLE_OUTPUT;
1d14ffa9
FB
562 if (ioctl (fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
563 oss_logerr (
564 errno,
565 "SNDCTL_DSP_SETTRIGGER PCM_ENABLE_OUTPUT failed\n"
566 );
44a095a7
FB
567 }
568 else {
569 oss->mmapped = 1;
570 }
85571bc7 571 }
85571bc7 572
44a095a7 573 if (!oss->mmapped) {
c0fe3827 574 err = munmap (oss->pcm_buf, hw->samples << hw->info.shift);
44a095a7 575 if (err) {
1d14ffa9 576 oss_logerr (errno, "Failed to unmap buffer %p size %d\n",
c0fe3827 577 oss->pcm_buf, hw->samples << hw->info.shift);
44a095a7 578 }
85571bc7
FB
579 }
580 }
581 }
582
583 if (!oss->mmapped) {
470bcabd
AF
584 oss->pcm_buf = audio_calloc(__func__,
585 hw->samples,
586 1 << hw->info.shift);
85571bc7 587 if (!oss->pcm_buf) {
b41cffbe
FB
588 dolog (
589 "Could not allocate DAC buffer (%d samples, each %d bytes)\n",
590 hw->samples,
591 1 << hw->info.shift
592 );
1d14ffa9 593 oss_anal_close (&fd);
85571bc7
FB
594 return -1;
595 }
596 }
597
1d14ffa9 598 oss->fd = fd;
baf6c7f4 599 oss->dev = dev;
85571bc7
FB
600 return 0;
601}
602
1d14ffa9 603static int oss_ctl_out (HWVoiceOut *hw, int cmd, ...)
85571bc7
FB
604{
605 int trig;
1d14ffa9 606 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
baf6c7f4 607 AudiodevOssPerDirectionOptions *opdo = oss->dev->u.oss.out;
85571bc7 608
85571bc7
FB
609 switch (cmd) {
610 case VOICE_ENABLE:
301901b5 611 {
baf6c7f4 612 bool poll_mode = opdo->try_poll;
dd8a5649 613
301901b5 614 ldebug ("enabling voice\n");
b027a538
FZ
615 if (poll_mode) {
616 oss_poll_out (hw);
301901b5 617 poll_mode = 0;
618 }
619 hw->poll_mode = poll_mode;
620
621 if (!oss->mmapped) {
622 return 0;
623 }
624
625 audio_pcm_info_clear_buf (&hw->info, oss->pcm_buf, hw->samples);
626 trig = PCM_ENABLE_OUTPUT;
627 if (ioctl (oss->fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
628 oss_logerr (
629 errno,
630 "SNDCTL_DSP_SETTRIGGER PCM_ENABLE_OUTPUT failed\n"
631 );
632 return -1;
633 }
85571bc7
FB
634 }
635 break;
636
637 case VOICE_DISABLE:
dd8a5649 638 if (hw->poll_mode) {
639 qemu_set_fd_handler (oss->fd, NULL, NULL, NULL);
640 hw->poll_mode = 0;
641 }
642
643 if (!oss->mmapped) {
644 return 0;
645 }
646
85571bc7
FB
647 ldebug ("disabling voice\n");
648 trig = 0;
649 if (ioctl (oss->fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
1d14ffa9 650 oss_logerr (errno, "SNDCTL_DSP_SETTRIGGER 0 failed\n");
85571bc7
FB
651 return -1;
652 }
653 break;
654 }
655 return 0;
656}
657
5706db1d 658static int oss_init_in(HWVoiceIn *hw, struct audsettings *as, void *drv_opaque)
1d14ffa9
FB
659{
660 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
661 struct oss_params req, obt;
662 int endianness;
663 int err;
664 int fd;
85bc5852 665 AudioFormat effective_fmt;
1ea879e5 666 struct audsettings obt_as;
baf6c7f4 667 Audiodev *dev = drv_opaque;
1d14ffa9 668
571ec3d6
FB
669 oss->fd = -1;
670
b6c9c940 671 req.fmt = aud_to_ossfmt (as->fmt, as->endianness);
c0fe3827
FB
672 req.freq = as->freq;
673 req.nchannels = as->nchannels;
baf6c7f4 674 if (oss_open(1, &req, as, &obt, &fd, dev)) {
1d14ffa9
FB
675 return -1;
676 }
677
678 err = oss_to_audfmt (obt.fmt, &effective_fmt, &endianness);
679 if (err) {
680 oss_anal_close (&fd);
681 return -1;
682 }
683
c0fe3827
FB
684 obt_as.freq = obt.freq;
685 obt_as.nchannels = obt.nchannels;
686 obt_as.fmt = effective_fmt;
d929eba5 687 obt_as.endianness = endianness;
c0fe3827 688
d929eba5 689 audio_pcm_init_info (&hw->info, &obt_as);
1d14ffa9
FB
690 oss->nfrags = obt.nfrags;
691 oss->fragsize = obt.fragsize;
c0fe3827
FB
692
693 if (obt.nfrags * obt.fragsize & hw->info.align) {
694 dolog ("warning: Misaligned ADC buffer, size %d, alignment %d\n",
695 obt.nfrags * obt.fragsize, hw->info.align + 1);
696 }
697
698 hw->samples = (obt.nfrags * obt.fragsize) >> hw->info.shift;
470bcabd 699 oss->pcm_buf = audio_calloc(__func__, hw->samples, 1 << hw->info.shift);
1d14ffa9 700 if (!oss->pcm_buf) {
b41cffbe
FB
701 dolog ("Could not allocate ADC buffer (%d samples, each %d bytes)\n",
702 hw->samples, 1 << hw->info.shift);
1d14ffa9
FB
703 oss_anal_close (&fd);
704 return -1;
705 }
706
707 oss->fd = fd;
baf6c7f4 708 oss->dev = dev;
1d14ffa9
FB
709 return 0;
710}
711
712static void oss_fini_in (HWVoiceIn *hw)
713{
714 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
715
716 oss_anal_close (&oss->fd);
717
fb7da626
MA
718 g_free(oss->pcm_buf);
719 oss->pcm_buf = NULL;
1d14ffa9
FB
720}
721
722static int oss_run_in (HWVoiceIn *hw)
723{
724 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
725 int hwshift = hw->info.shift;
726 int i;
727 int live = audio_pcm_hw_get_live_in (hw);
728 int dead = hw->samples - live;
729 size_t read_samples = 0;
730 struct {
731 int add;
732 int len;
733 } bufs[2] = {
98f9f48c 734 { .add = hw->wpos, .len = 0 },
735 { .add = 0, .len = 0 }
1d14ffa9
FB
736 };
737
738 if (!dead) {
739 return 0;
740 }
741
742 if (hw->wpos + dead > hw->samples) {
743 bufs[0].len = (hw->samples - hw->wpos) << hwshift;
744 bufs[1].len = (dead - (hw->samples - hw->wpos)) << hwshift;
745 }
746 else {
747 bufs[0].len = dead << hwshift;
748 }
749
1d14ffa9
FB
750 for (i = 0; i < 2; ++i) {
751 ssize_t nread;
752
753 if (bufs[i].len) {
754 void *p = advance (oss->pcm_buf, bufs[i].add << hwshift);
755 nread = read (oss->fd, p, bufs[i].len);
756
757 if (nread > 0) {
758 if (nread & hw->info.align) {
b41cffbe 759 dolog ("warning: Misaligned read %zd (requested %d), "
1d14ffa9
FB
760 "alignment %d\n", nread, bufs[i].add << hwshift,
761 hw->info.align + 1);
762 }
763 read_samples += nread >> hwshift;
00e07679 764 hw->conv (hw->conv_buf + bufs[i].add, p, nread >> hwshift);
1d14ffa9
FB
765 }
766
767 if (bufs[i].len - nread) {
768 if (nread == -1) {
769 switch (errno) {
770 case EINTR:
771 case EAGAIN:
772 break;
773 default:
774 oss_logerr (
775 errno,
776 "Failed to read %d bytes of audio (to %p)\n",
777 bufs[i].len, p
778 );
779 break;
780 }
781 }
782 break;
783 }
784 }
785 }
786
787 hw->wpos = (hw->wpos + read_samples) % hw->samples;
788 return read_samples;
789}
790
791static int oss_read (SWVoiceIn *sw, void *buf, int size)
792{
793 return audio_pcm_sw_read (sw, buf, size);
794}
795
796static int oss_ctl_in (HWVoiceIn *hw, int cmd, ...)
797{
dd8a5649 798 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
baf6c7f4 799 AudiodevOssPerDirectionOptions *opdo = oss->dev->u.oss.out;
dd8a5649 800
dd8a5649 801 switch (cmd) {
802 case VOICE_ENABLE:
a628b869 803 {
baf6c7f4 804 bool poll_mode = opdo->try_poll;
a628b869 805
b027a538
FZ
806 if (poll_mode) {
807 oss_poll_in (hw);
a628b869 808 poll_mode = 0;
809 }
810 hw->poll_mode = poll_mode;
dd8a5649 811 }
dd8a5649 812 break;
813
814 case VOICE_DISABLE:
815 if (hw->poll_mode) {
816 hw->poll_mode = 0;
817 qemu_set_fd_handler (oss->fd, NULL, NULL, NULL);
818 }
819 break;
820 }
1d14ffa9
FB
821 return 0;
822}
823
baf6c7f4
KZ
824static void oss_init_per_direction(AudiodevOssPerDirectionOptions *opdo)
825{
826 if (!opdo->has_try_poll) {
827 opdo->try_poll = true;
828 opdo->has_try_poll = true;
829 }
830}
4045a85a 831
71830221 832static void *oss_audio_init(Audiodev *dev)
85571bc7 833{
baf6c7f4
KZ
834 AudiodevOssOptions *oopts;
835 assert(dev->driver == AUDIODEV_DRIVER_OSS);
836
837 oopts = &dev->u.oss;
838 oss_init_per_direction(oopts->in);
839 oss_init_per_direction(oopts->out);
4045a85a 840
baf6c7f4
KZ
841 if (access(oopts->in->has_dev ? oopts->in->dev : "/dev/dsp",
842 R_OK | W_OK) < 0 ||
843 access(oopts->out->has_dev ? oopts->out->dev : "/dev/dsp",
844 R_OK | W_OK) < 0) {
73204cff
GH
845 return NULL;
846 }
baf6c7f4 847 return dev;
85571bc7
FB
848}
849
850static void oss_audio_fini (void *opaque)
851{
852}
853
35f4b58c 854static struct audio_pcm_ops oss_pcm_ops = {
1dd3e4d1
JQ
855 .init_out = oss_init_out,
856 .fini_out = oss_fini_out,
857 .run_out = oss_run_out,
858 .write = oss_write,
859 .ctl_out = oss_ctl_out,
860
861 .init_in = oss_init_in,
862 .fini_in = oss_fini_in,
863 .run_in = oss_run_in,
864 .read = oss_read,
865 .ctl_in = oss_ctl_in
85571bc7
FB
866};
867
d3893a39 868static struct audio_driver oss_audio_driver = {
bee37f32
JQ
869 .name = "oss",
870 .descr = "OSS http://www.opensound.com",
bee37f32
JQ
871 .init = oss_audio_init,
872 .fini = oss_audio_fini,
873 .pcm_ops = &oss_pcm_ops,
926de754 874 .can_be_default = 1,
bee37f32
JQ
875 .max_voices_out = INT_MAX,
876 .max_voices_in = INT_MAX,
877 .voice_size_out = sizeof (OSSVoiceOut),
878 .voice_size_in = sizeof (OSSVoiceIn)
85571bc7 879};
d3893a39
GH
880
881static void register_audio_oss(void)
882{
883 audio_driver_register(&oss_audio_driver);
884}
885type_init(register_audio_oss);