ossaudio.c 20.0 KB
Newer Older
B
bellard 已提交
1
/*
2 3 4 5
 * QEMU OSS audio driver
 *
 * Copyright (c) 2003-2005 Vassili Karpov (malc)
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
24
#include <stdlib.h>
B
bellard 已提交
25 26 27
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/ioctl.h>
28 29 30
#ifdef __OpenBSD__
#include <soundcard.h>
#else
B
bellard 已提交
31
#include <sys/soundcard.h>
32
#endif
P
pbrook 已提交
33 34
#include "qemu-common.h"
#include "audio.h"
B
bellard 已提交
35

36 37
#define AUDIO_CAP "oss"
#include "audio_int.h"
B
bellard 已提交
38

39 40
typedef struct OSSVoiceOut {
    HWVoiceOut hw;
B
bellard 已提交
41 42 43 44 45 46
    void *pcm_buf;
    int fd;
    int nfrags;
    int fragsize;
    int mmapped;
    int old_optr;
47
} OSSVoiceOut;
B
bellard 已提交
48

49 50 51 52 53 54 55 56
typedef struct OSSVoiceIn {
    HWVoiceIn hw;
    void *pcm_buf;
    int fd;
    int nfrags;
    int fragsize;
    int old_optr;
} OSSVoiceIn;
B
bellard 已提交
57 58 59 60 61

static struct {
    int try_mmap;
    int nfrags;
    int fragsize;
62 63
    const char *devpath_out;
    const char *devpath_in;
64
    int debug;
B
bellard 已提交
65 66 67 68
} conf = {
    .try_mmap = 0,
    .nfrags = 4,
    .fragsize = 4096,
69
    .devpath_out = "/dev/dsp",
70 71
    .devpath_in = "/dev/dsp",
    .debug = 0
B
bellard 已提交
72 73 74 75 76 77 78 79 80 81
};

struct oss_params {
    int freq;
    audfmt_e fmt;
    int nchannels;
    int nfrags;
    int fragsize;
};

82
static void GCC_FMT_ATTR (2, 3) oss_logerr (int err, const char *fmt, ...)
B
bellard 已提交
83
{
84 85
    va_list ap;

B
bellard 已提交
86
    va_start (ap, fmt);
87
    AUD_vlog (AUDIO_CAP, fmt, ap);
B
bellard 已提交
88
    va_end (ap);
89 90

    AUD_log (AUDIO_CAP, "Reason: %s\n", strerror (err));
B
bellard 已提交
91 92
}

93 94 95 96 97 98 99 100 101
static void GCC_FMT_ATTR (3, 4) oss_logerr2 (
    int err,
    const char *typ,
    const char *fmt,
    ...
    )
{
    va_list ap;

B
bellard 已提交
102
    AUD_log (AUDIO_CAP, "Could not initialize %s\n", typ);
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

    va_start (ap, fmt);
    AUD_vlog (AUDIO_CAP, fmt, ap);
    va_end (ap);

    AUD_log (AUDIO_CAP, "Reason: %s\n", strerror (err));
}

static void oss_anal_close (int *fdp)
{
    int err = close (*fdp);
    if (err) {
        oss_logerr (errno, "Failed to close file(fd=%d)\n", *fdp);
    }
    *fdp = -1;
}

static int oss_write (SWVoiceOut *sw, void *buf, int len)
{
    return audio_pcm_sw_write (sw, buf, len);
}

static int aud_to_ossfmt (audfmt_e fmt)
B
bellard 已提交
126 127
{
    switch (fmt) {
128 129 130 131 132 133 134 135 136 137 138 139
    case AUD_FMT_S8:
        return AFMT_S8;

    case AUD_FMT_U8:
        return AFMT_U8;

    case AUD_FMT_S16:
        return AFMT_S16_LE;

    case AUD_FMT_U16:
        return AFMT_U16_LE;

B
bellard 已提交
140
    default:
141 142 143 144 145
        dolog ("Internal logic error: Bad audio format %d\n", fmt);
#ifdef DEBUG_AUDIO
        abort ();
#endif
        return AFMT_U8;
B
bellard 已提交
146 147 148
    }
}

149
static int oss_to_audfmt (int ossfmt, audfmt_e *fmt, int *endianness)
B
bellard 已提交
150
{
151 152
    switch (ossfmt) {
    case AFMT_S8:
153
        *endianness = 0;
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
        *fmt = AUD_FMT_S8;
        break;

    case AFMT_U8:
        *endianness = 0;
        *fmt = AUD_FMT_U8;
        break;

    case AFMT_S16_LE:
        *endianness = 0;
        *fmt = AUD_FMT_S16;
        break;

    case AFMT_U16_LE:
        *endianness = 0;
        *fmt = AUD_FMT_U16;
        break;

    case AFMT_S16_BE:
        *endianness = 1;
        *fmt = AUD_FMT_S16;
        break;

    case AFMT_U16_BE:
        *endianness = 1;
        *fmt = AUD_FMT_U16;
        break;

B
bellard 已提交
182
    default:
183 184
        dolog ("Unrecognized audio format %d\n", ossfmt);
        return -1;
B
bellard 已提交
185
    }
186 187

    return 0;
B
bellard 已提交
188 189
}

B
bellard 已提交
190
#if defined DEBUG_MISMATCHES || defined DEBUG
191
static void oss_dump_info (struct oss_params *req, struct oss_params *obt)
B
bellard 已提交
192 193 194
{
    dolog ("parameter | requested value | obtained value\n");
    dolog ("format    |      %10d |     %10d\n", req->fmt, obt->fmt);
195 196
    dolog ("channels  |      %10d |     %10d\n",
           req->nchannels, obt->nchannels);
B
bellard 已提交
197 198
    dolog ("frequency |      %10d |     %10d\n", req->freq, obt->freq);
    dolog ("nfrags    |      %10d |     %10d\n", req->nfrags, obt->nfrags);
199 200
    dolog ("fragsize  |      %10d |     %10d\n",
           req->fragsize, obt->fragsize);
B
bellard 已提交
201 202 203
}
#endif

204 205
static int oss_open (int in, struct oss_params *req,
                     struct oss_params *obt, int *pfd)
B
bellard 已提交
206 207 208 209 210
{
    int fd;
    int mmmmssss;
    audio_buf_info abinfo;
    int fmt, freq, nchannels;
211 212
    const char *dspname = in ? conf.devpath_in : conf.devpath_out;
    const char *typ = in ? "ADC" : "DAC";
B
bellard 已提交
213

214
    fd = open (dspname, (in ? O_RDONLY : O_WRONLY) | O_NONBLOCK);
B
bellard 已提交
215
    if (-1 == fd) {
216
        oss_logerr2 (errno, typ, "Failed to open `%s'\n", dspname);
B
bellard 已提交
217 218 219 220 221 222 223 224
        return -1;
    }

    freq = req->freq;
    nchannels = req->nchannels;
    fmt = req->fmt;

    if (ioctl (fd, SNDCTL_DSP_SAMPLESIZE, &fmt)) {
225
        oss_logerr2 (errno, typ, "Failed to set sample size %d\n", req->fmt);
B
bellard 已提交
226 227 228 229
        goto err;
    }

    if (ioctl (fd, SNDCTL_DSP_CHANNELS, &nchannels)) {
230 231
        oss_logerr2 (errno, typ, "Failed to set number of channels %d\n",
                     req->nchannels);
B
bellard 已提交
232 233 234 235
        goto err;
    }

    if (ioctl (fd, SNDCTL_DSP_SPEED, &freq)) {
236
        oss_logerr2 (errno, typ, "Failed to set frequency %d\n", req->freq);
B
bellard 已提交
237 238 239 240
        goto err;
    }

    if (ioctl (fd, SNDCTL_DSP_NONBLOCK)) {
241
        oss_logerr2 (errno, typ, "Failed to set non-blocking mode\n");
B
bellard 已提交
242 243 244 245 246
        goto err;
    }

    mmmmssss = (req->nfrags << 16) | lsbindex (req->fragsize);
    if (ioctl (fd, SNDCTL_DSP_SETFRAGMENT, &mmmmssss)) {
247 248
        oss_logerr2 (errno, typ, "Failed to set buffer length (%d, %d)\n",
                     req->nfrags, req->fragsize);
B
bellard 已提交
249 250 251
        goto err;
    }

252 253
    if (ioctl (fd, in ? SNDCTL_DSP_GETISPACE : SNDCTL_DSP_GETOSPACE, &abinfo)) {
        oss_logerr2 (errno, typ, "Failed to get buffer length\n");
B
bellard 已提交
254 255 256
        goto err;
    }

M
malc 已提交
257 258 259 260 261 262
    if (!abinfo.fragstotal || !abinfo.fragsize) {
        AUD_log (AUDIO_CAP, "Returned bogus buffer information(%d, %d) for %s\n",
                 abinfo.fragstotal, abinfo.fragsize, typ);
        goto err;
    }

B
bellard 已提交
263 264 265 266 267 268 269
    obt->fmt = fmt;
    obt->nchannels = nchannels;
    obt->freq = freq;
    obt->nfrags = abinfo.fragstotal;
    obt->fragsize = abinfo.fragsize;
    *pfd = fd;

B
bellard 已提交
270
#ifdef DEBUG_MISMATCHES
B
bellard 已提交
271 272 273 274 275 276
    if ((req->fmt != obt->fmt) ||
        (req->nchannels != obt->nchannels) ||
        (req->freq != obt->freq) ||
        (req->fragsize != obt->fragsize) ||
        (req->nfrags != obt->nfrags)) {
        dolog ("Audio parameters mismatch\n");
277
        oss_dump_info (req, obt);
B
bellard 已提交
278
    }
B
bellard 已提交
279
#endif
B
bellard 已提交
280

281 282
#ifdef DEBUG
    oss_dump_info (req, obt);
B
bellard 已提交
283 284 285
#endif
    return 0;

286 287
 err:
    oss_anal_close (&fd);
B
bellard 已提交
288 289 290
    return -1;
}

291
static int oss_run_out (HWVoiceOut *hw)
B
bellard 已提交
292
{
293
    OSSVoiceOut *oss = (OSSVoiceOut *) hw;
B
bellard 已提交
294 295 296 297 298 299
    int err, rpos, live, decr;
    int samples;
    uint8_t *dst;
    st_sample_t *src;
    struct audio_buf_info abinfo;
    struct count_info cntinfo;
B
bellard 已提交
300
    int bufsize;
B
bellard 已提交
301

302 303 304 305
    live = audio_pcm_hw_get_live_out (hw);
    if (!live) {
        return 0;
    }
B
bellard 已提交
306

B
bellard 已提交
307 308
    bufsize = hw->samples << hw->info.shift;

B
bellard 已提交
309 310 311 312 313
    if (oss->mmapped) {
        int bytes;

        err = ioctl (oss->fd, SNDCTL_DSP_GETOPTR, &cntinfo);
        if (err < 0) {
314 315
            oss_logerr (errno, "SNDCTL_DSP_GETOPTR failed\n");
            return 0;
B
bellard 已提交
316 317 318
        }

        if (cntinfo.ptr == oss->old_optr) {
319
            if (abs (hw->samples - live) < 64) {
B
bellard 已提交
320
                dolog ("warning: Overrun\n");
321 322
            }
            return 0;
B
bellard 已提交
323 324 325 326 327 328
        }

        if (cntinfo.ptr > oss->old_optr) {
            bytes = cntinfo.ptr - oss->old_optr;
        }
        else {
B
bellard 已提交
329
            bytes = bufsize + cntinfo.ptr - oss->old_optr;
B
bellard 已提交
330 331
        }

332
        decr = audio_MIN (bytes >> hw->info.shift, live);
B
bellard 已提交
333 334 335 336
    }
    else {
        err = ioctl (oss->fd, SNDCTL_DSP_GETOSPACE, &abinfo);
        if (err < 0) {
337 338 339 340
            oss_logerr (errno, "SNDCTL_DSP_GETOPTR failed\n");
            return 0;
        }

341 342 343 344 345 346 347 348 349 350 351 352 353 354
        if (abinfo.bytes > bufsize) {
            if (conf.debug) {
                dolog ("warning: Invalid available size, size=%d bufsize=%d\n"
                       "please report your OS/audio hw to malc@pulsesoft.com\n",
                       abinfo.bytes, bufsize);
            }
            abinfo.bytes = bufsize;
        }

        if (abinfo.bytes < 0) {
            if (conf.debug) {
                dolog ("warning: Invalid available size, size=%d bufsize=%d\n",
                       abinfo.bytes, bufsize);
            }
355
            return 0;
B
bellard 已提交
356 357
        }

358 359 360 361
        decr = audio_MIN (abinfo.bytes >> hw->info.shift, live);
        if (!decr) {
            return 0;
        }
B
bellard 已提交
362 363 364 365 366 367 368 369
    }

    samples = decr;
    rpos = hw->rpos;
    while (samples) {
        int left_till_end_samples = hw->samples - rpos;
        int convert_samples = audio_MIN (samples, left_till_end_samples);

370 371
        src = hw->mix_buf + rpos;
        dst = advance (oss->pcm_buf, rpos << hw->info.shift);
B
bellard 已提交
372 373 374 375 376

        hw->clip (dst, src, convert_samples);
        if (!oss->mmapped) {
            int written;

377
            written = write (oss->fd, dst, convert_samples << hw->info.shift);
B
bellard 已提交
378 379
            /* XXX: follow errno recommendations ? */
            if (written == -1) {
380 381 382 383 384 385
                oss_logerr (
                    errno,
                    "Failed to write %d bytes of audio data from %p\n",
                    convert_samples << hw->info.shift,
                    dst
                    );
B
bellard 已提交
386 387 388
                continue;
            }

389 390 391
            if (written != convert_samples << hw->info.shift) {
                int wsamples = written >> hw->info.shift;
                int wbytes = wsamples << hw->info.shift;
B
bellard 已提交
392
                if (wbytes != written) {
B
bellard 已提交
393
                    dolog ("warning: Misaligned write %d (requested %d), "
394 395
                           "alignment %d\n",
                           wbytes, written, hw->info.align + 1);
B
bellard 已提交
396
                }
397
                decr -= wsamples;
B
bellard 已提交
398 399 400 401
                rpos = (rpos + wsamples) % hw->samples;
                break;
            }
        }
402

B
bellard 已提交
403 404 405 406 407 408 409 410
        rpos = (rpos + convert_samples) % hw->samples;
        samples -= convert_samples;
    }
    if (oss->mmapped) {
        oss->old_optr = cntinfo.ptr;
    }

    hw->rpos = rpos;
411
    return decr;
B
bellard 已提交
412 413
}

414
static void oss_fini_out (HWVoiceOut *hw)
B
bellard 已提交
415 416
{
    int err;
417
    OSSVoiceOut *oss = (OSSVoiceOut *) hw;
B
bellard 已提交
418

419 420
    ldebug ("oss_fini\n");
    oss_anal_close (&oss->fd);
B
bellard 已提交
421 422 423

    if (oss->pcm_buf) {
        if (oss->mmapped) {
B
bellard 已提交
424
            err = munmap (oss->pcm_buf, hw->samples << hw->info.shift);
B
bellard 已提交
425
            if (err) {
426
                oss_logerr (errno, "Failed to unmap buffer %p, size %d\n",
B
bellard 已提交
427
                            oss->pcm_buf, hw->samples << hw->info.shift);
B
bellard 已提交
428 429 430 431 432 433 434 435 436
            }
        }
        else {
            qemu_free (oss->pcm_buf);
        }
        oss->pcm_buf = NULL;
    }
}

B
bellard 已提交
437
static int oss_init_out (HWVoiceOut *hw, audsettings_t *as)
B
bellard 已提交
438
{
439
    OSSVoiceOut *oss = (OSSVoiceOut *) hw;
B
bellard 已提交
440
    struct oss_params req, obt;
441 442 443 444
    int endianness;
    int err;
    int fd;
    audfmt_e effective_fmt;
B
bellard 已提交
445
    audsettings_t obt_as;
B
bellard 已提交
446

B
bellard 已提交
447 448
    oss->fd = -1;

B
bellard 已提交
449 450 451
    req.fmt = aud_to_ossfmt (as->fmt);
    req.freq = as->freq;
    req.nchannels = as->nchannels;
B
bellard 已提交
452 453 454
    req.fragsize = conf.fragsize;
    req.nfrags = conf.nfrags;

455
    if (oss_open (0, &req, &obt, &fd)) {
B
bellard 已提交
456
        return -1;
457
    }
B
bellard 已提交
458

459 460 461 462 463
    err = oss_to_audfmt (obt.fmt, &effective_fmt, &endianness);
    if (err) {
        oss_anal_close (&fd);
        return -1;
    }
B
bellard 已提交
464

B
bellard 已提交
465 466 467
    obt_as.freq = obt.freq;
    obt_as.nchannels = obt.nchannels;
    obt_as.fmt = effective_fmt;
B
bellard 已提交
468
    obt_as.endianness = endianness;
B
bellard 已提交
469

B
bellard 已提交
470
    audio_pcm_init_info (&hw->info, &obt_as);
B
bellard 已提交
471 472
    oss->nfrags = obt.nfrags;
    oss->fragsize = obt.fragsize;
B
bellard 已提交
473 474 475 476 477 478 479

    if (obt.nfrags * obt.fragsize & hw->info.align) {
        dolog ("warning: Misaligned DAC buffer, size %d, alignment %d\n",
               obt.nfrags * obt.fragsize, hw->info.align + 1);
    }

    hw->samples = (obt.nfrags * obt.fragsize) >> hw->info.shift;
B
bellard 已提交
480 481 482

    oss->mmapped = 0;
    if (conf.try_mmap) {
B
bellard 已提交
483 484 485 486 487 488 489 490
        oss->pcm_buf = mmap (
            0,
            hw->samples << hw->info.shift,
            PROT_READ | PROT_WRITE,
            MAP_SHARED,
            fd,
            0
            );
B
bellard 已提交
491
        if (oss->pcm_buf == MAP_FAILED) {
492
            oss_logerr (errno, "Failed to map %d bytes of DAC\n",
B
bellard 已提交
493
                        hw->samples << hw->info.shift);
B
bellard 已提交
494
        } else {
B
bellard 已提交
495 496
            int err;
            int trig = 0;
497 498
            if (ioctl (fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
                oss_logerr (errno, "SNDCTL_DSP_SETTRIGGER 0 failed\n");
B
bellard 已提交
499
            }
B
bellard 已提交
500 501
            else {
                trig = PCM_ENABLE_OUTPUT;
502 503 504 505 506
                if (ioctl (fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
                    oss_logerr (
                        errno,
                        "SNDCTL_DSP_SETTRIGGER PCM_ENABLE_OUTPUT failed\n"
                        );
B
bellard 已提交
507 508 509 510
                }
                else {
                    oss->mmapped = 1;
                }
B
bellard 已提交
511 512
            }

B
bellard 已提交
513
            if (!oss->mmapped) {
B
bellard 已提交
514
                err = munmap (oss->pcm_buf, hw->samples << hw->info.shift);
B
bellard 已提交
515
                if (err) {
516
                    oss_logerr (errno, "Failed to unmap buffer %p size %d\n",
B
bellard 已提交
517
                                oss->pcm_buf, hw->samples << hw->info.shift);
B
bellard 已提交
518
                }
B
bellard 已提交
519 520 521 522 523
            }
        }
    }

    if (!oss->mmapped) {
B
bellard 已提交
524 525 526 527 528
        oss->pcm_buf = audio_calloc (
            AUDIO_FUNC,
            hw->samples,
            1 << hw->info.shift
            );
B
bellard 已提交
529
        if (!oss->pcm_buf) {
B
bellard 已提交
530 531 532 533 534
            dolog (
                "Could not allocate DAC buffer (%d samples, each %d bytes)\n",
                hw->samples,
                1 << hw->info.shift
                );
535
            oss_anal_close (&fd);
B
bellard 已提交
536 537 538 539
            return -1;
        }
    }

540
    oss->fd = fd;
B
bellard 已提交
541 542 543
    return 0;
}

544
static int oss_ctl_out (HWVoiceOut *hw, int cmd, ...)
B
bellard 已提交
545 546
{
    int trig;
547
    OSSVoiceOut *oss = (OSSVoiceOut *) hw;
B
bellard 已提交
548

549
    if (!oss->mmapped) {
B
bellard 已提交
550
        return 0;
551
    }
B
bellard 已提交
552 553 554 555

    switch (cmd) {
    case VOICE_ENABLE:
        ldebug ("enabling voice\n");
556
        audio_pcm_info_clear_buf (&hw->info, oss->pcm_buf, hw->samples);
B
bellard 已提交
557 558
        trig = PCM_ENABLE_OUTPUT;
        if (ioctl (oss->fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
559 560 561 562
            oss_logerr (
                errno,
                "SNDCTL_DSP_SETTRIGGER PCM_ENABLE_OUTPUT failed\n"
                );
B
bellard 已提交
563 564 565 566 567 568 569 570
            return -1;
        }
        break;

    case VOICE_DISABLE:
        ldebug ("disabling voice\n");
        trig = 0;
        if (ioctl (oss->fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
571
            oss_logerr (errno, "SNDCTL_DSP_SETTRIGGER 0 failed\n");
B
bellard 已提交
572 573 574 575 576 577 578
            return -1;
        }
        break;
    }
    return 0;
}

B
bellard 已提交
579
static int oss_init_in (HWVoiceIn *hw, audsettings_t *as)
580 581 582 583 584 585 586
{
    OSSVoiceIn *oss = (OSSVoiceIn *) hw;
    struct oss_params req, obt;
    int endianness;
    int err;
    int fd;
    audfmt_e effective_fmt;
B
bellard 已提交
587
    audsettings_t obt_as;
588

B
bellard 已提交
589 590
    oss->fd = -1;

B
bellard 已提交
591 592 593
    req.fmt = aud_to_ossfmt (as->fmt);
    req.freq = as->freq;
    req.nchannels = as->nchannels;
594 595 596 597 598 599 600 601 602 603 604 605
    req.fragsize = conf.fragsize;
    req.nfrags = conf.nfrags;
    if (oss_open (1, &req, &obt, &fd)) {
        return -1;
    }

    err = oss_to_audfmt (obt.fmt, &effective_fmt, &endianness);
    if (err) {
        oss_anal_close (&fd);
        return -1;
    }

B
bellard 已提交
606 607 608
    obt_as.freq = obt.freq;
    obt_as.nchannels = obt.nchannels;
    obt_as.fmt = effective_fmt;
B
bellard 已提交
609
    obt_as.endianness = endianness;
B
bellard 已提交
610

B
bellard 已提交
611
    audio_pcm_init_info (&hw->info, &obt_as);
612 613
    oss->nfrags = obt.nfrags;
    oss->fragsize = obt.fragsize;
B
bellard 已提交
614 615 616 617 618 619 620 621

    if (obt.nfrags * obt.fragsize & hw->info.align) {
        dolog ("warning: Misaligned ADC buffer, size %d, alignment %d\n",
               obt.nfrags * obt.fragsize, hw->info.align + 1);
    }

    hw->samples = (obt.nfrags * obt.fragsize) >> hw->info.shift;
    oss->pcm_buf = audio_calloc (AUDIO_FUNC, hw->samples, 1 << hw->info.shift);
622
    if (!oss->pcm_buf) {
B
bellard 已提交
623 624
        dolog ("Could not allocate ADC buffer (%d samples, each %d bytes)\n",
               hw->samples, 1 << hw->info.shift);
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
        oss_anal_close (&fd);
        return -1;
    }

    oss->fd = fd;
    return 0;
}

static void oss_fini_in (HWVoiceIn *hw)
{
    OSSVoiceIn *oss = (OSSVoiceIn *) hw;

    oss_anal_close (&oss->fd);

    if (oss->pcm_buf) {
        qemu_free (oss->pcm_buf);
        oss->pcm_buf = NULL;
    }
}

static int oss_run_in (HWVoiceIn *hw)
{
    OSSVoiceIn *oss = (OSSVoiceIn *) hw;
    int hwshift = hw->info.shift;
    int i;
    int live = audio_pcm_hw_get_live_in (hw);
    int dead = hw->samples - live;
    size_t read_samples = 0;
    struct {
        int add;
        int len;
    } bufs[2] = {
        { hw->wpos, 0 },
        { 0, 0 }
    };

    if (!dead) {
        return 0;
    }

    if (hw->wpos + dead > hw->samples) {
        bufs[0].len = (hw->samples - hw->wpos) << hwshift;
        bufs[1].len = (dead - (hw->samples - hw->wpos)) << hwshift;
    }
    else {
        bufs[0].len = dead << hwshift;
    }


    for (i = 0; i < 2; ++i) {
        ssize_t nread;

        if (bufs[i].len) {
            void *p = advance (oss->pcm_buf, bufs[i].add << hwshift);
            nread = read (oss->fd, p, bufs[i].len);

            if (nread > 0) {
                if (nread & hw->info.align) {
B
bellard 已提交
683
                    dolog ("warning: Misaligned read %zd (requested %d), "
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
                           "alignment %d\n", nread, bufs[i].add << hwshift,
                           hw->info.align + 1);
                }
                read_samples += nread >> hwshift;
                hw->conv (hw->conv_buf + bufs[i].add, p, nread >> hwshift,
                          &nominal_volume);
            }

            if (bufs[i].len - nread) {
                if (nread == -1) {
                    switch (errno) {
                    case EINTR:
                    case EAGAIN:
                        break;
                    default:
                        oss_logerr (
                            errno,
                            "Failed to read %d bytes of audio (to %p)\n",
                            bufs[i].len, p
                            );
                        break;
                    }
                }
                break;
            }
        }
    }

    hw->wpos = (hw->wpos + read_samples) % hw->samples;
    return read_samples;
}

static int oss_read (SWVoiceIn *sw, void *buf, int size)
{
    return audio_pcm_sw_read (sw, buf, size);
}

static int oss_ctl_in (HWVoiceIn *hw, int cmd, ...)
{
    (void) hw;
    (void) cmd;
    return 0;
}

B
bellard 已提交
728 729 730 731 732 733 734
static void *oss_audio_init (void)
{
    return &conf;
}

static void oss_audio_fini (void *opaque)
{
735
    (void) opaque;
B
bellard 已提交
736 737
}

738 739 740 741 742 743 744 745 746 747 748
static struct audio_option oss_options[] = {
    {"FRAGSIZE", AUD_OPT_INT, &conf.fragsize,
     "Fragment size in bytes", NULL, 0},
    {"NFRAGS", AUD_OPT_INT, &conf.nfrags,
     "Number of fragments", NULL, 0},
    {"MMAP", AUD_OPT_BOOL, &conf.try_mmap,
     "Try using memory mapped access", NULL, 0},
    {"DAC_DEV", AUD_OPT_STR, &conf.devpath_out,
     "Path to DAC device", NULL, 0},
    {"ADC_DEV", AUD_OPT_STR, &conf.devpath_in,
     "Path to ADC device", NULL, 0},
749 750
    {"DEBUG", AUD_OPT_BOOL, &conf.debug,
     "Turn on some debugging messages", NULL, 0},
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
    {NULL, 0, NULL, NULL, NULL, 0}
};

static struct audio_pcm_ops oss_pcm_ops = {
    oss_init_out,
    oss_fini_out,
    oss_run_out,
    oss_write,
    oss_ctl_out,

    oss_init_in,
    oss_fini_in,
    oss_run_in,
    oss_read,
    oss_ctl_in
B
bellard 已提交
766 767
};

768 769 770 771 772 773 774 775 776 777 778 779
struct audio_driver oss_audio_driver = {
    INIT_FIELD (name           = ) "oss",
    INIT_FIELD (descr          = ) "OSS http://www.opensound.com",
    INIT_FIELD (options        = ) oss_options,
    INIT_FIELD (init           = ) oss_audio_init,
    INIT_FIELD (fini           = ) oss_audio_fini,
    INIT_FIELD (pcm_ops        = ) &oss_pcm_ops,
    INIT_FIELD (can_be_default = ) 1,
    INIT_FIELD (max_voices_out = ) INT_MAX,
    INIT_FIELD (max_voices_in  = ) INT_MAX,
    INIT_FIELD (voice_size_out = ) sizeof (OSSVoiceOut),
    INIT_FIELD (voice_size_in  = ) sizeof (OSSVoiceIn)
B
bellard 已提交
780
};