2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-25 01:05:47 +03:00
|
|
|
// $Id$
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2015-01-11 23:13:50 +03:00
|
|
|
// Copyright (C) 2001-2015 The Bochs Project
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
2009-02-08 12:05:52 +03:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2008-02-16 01:05:43 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-07-12 19:21:36 +04:00
|
|
|
// Josef Drexler coded the original version of the lowlevel sound support
|
2013-07-14 19:14:53 +04:00
|
|
|
// for Linux using OSS. The current version also supports OSS on FreeBSD.
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-02-15 00:14:20 +03:00
|
|
|
#include "iodev.h"
|
2014-11-24 21:25:14 +03:00
|
|
|
#include "soundlow.h"
|
2011-08-18 11:05:09 +04:00
|
|
|
#include "soundlnx.h"
|
2005-12-10 21:37:35 +03:00
|
|
|
|
2011-03-19 15:57:13 +03:00
|
|
|
#if (defined(linux) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)) && BX_SUPPORT_SOUNDLOW
|
2005-12-10 21:37:35 +03:00
|
|
|
|
2013-06-24 23:19:12 +04:00
|
|
|
#define LOG_THIS
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/soundcard.h>
|
|
|
|
|
2013-06-24 23:19:12 +04:00
|
|
|
bx_sound_linux_c::bx_sound_linux_c()
|
|
|
|
:bx_sound_lowlevel_c()
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2008-07-19 16:01:54 +04:00
|
|
|
midi = NULL;
|
2011-04-24 22:45:37 +04:00
|
|
|
wave_fd[0] = -1;
|
|
|
|
wave_fd[1] = -1;
|
2013-07-25 22:47:11 +04:00
|
|
|
BX_INFO(("Sound lowlevel module 'oss' initialized"));
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bx_sound_linux_c::~bx_sound_linux_c()
|
|
|
|
{
|
|
|
|
// nothing for now
|
|
|
|
}
|
|
|
|
|
|
|
|
int bx_sound_linux_c::midiready()
|
|
|
|
{
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_OK;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2011-02-13 20:26:52 +03:00
|
|
|
int bx_sound_linux_c::openmidioutput(const char *mididev)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2011-01-26 02:29:08 +03:00
|
|
|
if ((mididev == NULL) || (strlen(mididev) < 1))
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_ERR;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-01-26 02:29:08 +03:00
|
|
|
midi = fopen(mididev,"w");
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-02-11 01:58:22 +03:00
|
|
|
if (midi == NULL) {
|
|
|
|
BX_ERROR(("Couldn't open midi output device %s: %s",
|
|
|
|
mididev, strerror(errno)));
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_ERR;
|
2008-02-16 01:05:43 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_OK;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int bx_sound_linux_c::sendmidicommand(int delta, int command, int length, Bit8u data[])
|
|
|
|
{
|
|
|
|
UNUSED(delta);
|
|
|
|
|
|
|
|
fputc(command, midi);
|
|
|
|
fwrite(data, 1, length, midi);
|
|
|
|
fflush(midi); // to start playing immediately
|
|
|
|
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_OK;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int bx_sound_linux_c::closemidioutput()
|
|
|
|
{
|
|
|
|
fclose(midi);
|
|
|
|
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_OK;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-13 20:26:52 +03:00
|
|
|
int bx_sound_linux_c::openwaveoutput(const char *wavedev)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2015-01-31 13:48:22 +03:00
|
|
|
if (wave_fd[0] == -1) {
|
|
|
|
wave_fd[0] = open(wavedev, O_WRONLY);
|
|
|
|
if (wave_fd[0] == -1) {
|
|
|
|
return BX_SOUNDLOW_ERR;
|
|
|
|
} else {
|
|
|
|
BX_INFO(("OSS: opened output device %s", wavedev));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
set_pcm_params(real_pcm_param);
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_OK;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2015-01-31 13:48:22 +03:00
|
|
|
int bx_sound_linux_c::set_pcm_params(bx_pcm_param_t param)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
int fmt, ret;
|
2015-01-31 13:48:22 +03:00
|
|
|
int frequency = param.samplerate;
|
|
|
|
int channels = param.channels;
|
|
|
|
int signeddata = param.format & 1;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2015-01-31 13:48:22 +03:00
|
|
|
BX_DEBUG(("set_pcm_params(): %u, %u, %u, %02x", param.samplerate, param.bits,
|
|
|
|
param.channels, param.format));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-04-24 22:45:37 +04:00
|
|
|
if (wave_fd[0] == -1) {
|
2015-01-31 13:48:22 +03:00
|
|
|
return BX_SOUNDLOW_ERR;
|
2008-07-12 19:21:36 +04:00
|
|
|
}
|
2015-01-31 13:48:22 +03:00
|
|
|
if (param.bits == 16) {
|
|
|
|
if (signeddata == 1) {
|
2001-04-10 05:04:59 +04:00
|
|
|
fmt = AFMT_S16_LE;
|
2015-01-31 13:48:22 +03:00
|
|
|
} else {
|
2001-04-10 05:04:59 +04:00
|
|
|
fmt = AFMT_U16_LE;
|
2015-01-31 13:48:22 +03:00
|
|
|
}
|
|
|
|
} else if (param.bits == 8) {
|
|
|
|
if (signeddata == 1) {
|
2001-04-10 05:04:59 +04:00
|
|
|
fmt = AFMT_S8;
|
2015-01-31 13:48:22 +03:00
|
|
|
} else {
|
2001-04-10 05:04:59 +04:00
|
|
|
fmt = AFMT_U8;
|
2015-01-31 13:48:22 +03:00
|
|
|
}
|
|
|
|
} else {
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_ERR;
|
2015-01-31 13:48:22 +03:00
|
|
|
}
|
|
|
|
// set frequency etc.
|
2011-04-24 22:45:37 +04:00
|
|
|
ret = ioctl(wave_fd[0], SNDCTL_DSP_RESET);
|
2001-04-10 05:04:59 +04:00
|
|
|
if (ret != 0)
|
2015-01-31 13:48:22 +03:00
|
|
|
BX_ERROR(("ioctl(SNDCTL_DSP_RESET): %s", strerror(errno)));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/*
|
2011-04-24 22:45:37 +04:00
|
|
|
ret = ioctl(wave_fd[0], SNDCTL_DSP_SETFRAGMENT, &fragment);
|
2001-04-10 05:04:59 +04:00
|
|
|
if (ret != 0)
|
2011-04-24 22:45:37 +04:00
|
|
|
BX_DEBUG(("ioctl(SNDCTL_DSP_SETFRAGMENT, %d): %s",
|
|
|
|
fragment, strerror(errno)));
|
2001-04-10 05:04:59 +04:00
|
|
|
*/
|
|
|
|
|
2011-04-24 22:45:37 +04:00
|
|
|
ret = ioctl(wave_fd[0], SNDCTL_DSP_SETFMT, &fmt);
|
2015-01-31 13:48:22 +03:00
|
|
|
if (ret != 0) { // abort if the format is unknown, to avoid playing noise
|
|
|
|
BX_ERROR(("ioctl(SNDCTL_DSP_SETFMT, %d): %s",
|
|
|
|
fmt, strerror(errno)));
|
|
|
|
return BX_SOUNDLOW_ERR;
|
2008-02-16 01:05:43 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2015-01-31 13:48:22 +03:00
|
|
|
ret = ioctl(wave_fd[0], SNDCTL_DSP_CHANNELS, &channels);
|
2001-04-10 05:04:59 +04:00
|
|
|
if (ret != 0)
|
2015-01-31 13:48:22 +03:00
|
|
|
BX_ERROR(("ioctl(SNDCTL_DSP_CHANNELS, %d): %s",
|
|
|
|
channels, strerror(errno)));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-04-24 22:45:37 +04:00
|
|
|
ret = ioctl(wave_fd[0], SNDCTL_DSP_SPEED, &frequency);
|
2001-04-10 05:04:59 +04:00
|
|
|
if (ret != 0)
|
2015-01-31 13:48:22 +03:00
|
|
|
BX_ERROR(("ioctl(SNDCTL_DSP_SPEED, %d): %s",
|
|
|
|
frequency, strerror(errno)));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-04-24 22:45:37 +04:00
|
|
|
// ioctl(wave_fd[0], SNDCTL_DSP_GETBLKSIZE, &fragment);
|
2011-02-19 11:48:53 +03:00
|
|
|
// BX_DEBUG(("current output block size is %d", fragment));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_OK;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2008-01-27 01:24:03 +03:00
|
|
|
|
2015-01-25 00:01:45 +03:00
|
|
|
int bx_sound_linux_c::sendwavepacket(int length, Bit8u data[], bx_pcm_param_t *src_param)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2015-01-25 00:01:45 +03:00
|
|
|
int len2;
|
|
|
|
Bit8u *tmpbuffer;
|
|
|
|
|
2015-01-27 00:10:51 +03:00
|
|
|
if (memcmp(src_param, &emu_pcm_param, sizeof(bx_pcm_param_t)) != 0) {
|
|
|
|
emu_pcm_param = *src_param;
|
2015-01-25 14:45:13 +03:00
|
|
|
cvt_mult = (src_param->bits == 8) ? 2 : 1;
|
|
|
|
if (src_param->channels == 1) cvt_mult <<= 1;
|
2015-01-31 13:48:22 +03:00
|
|
|
if (src_param->samplerate != real_pcm_param.samplerate) {
|
|
|
|
real_pcm_param.samplerate = src_param->samplerate;
|
|
|
|
set_pcm_params(real_pcm_param);
|
|
|
|
}
|
2015-01-11 23:13:50 +03:00
|
|
|
}
|
2013-08-04 18:35:06 +04:00
|
|
|
if (wave_fd[0] == -1) {
|
|
|
|
return BX_SOUNDLOW_ERR;
|
|
|
|
}
|
2015-01-25 00:01:45 +03:00
|
|
|
len2 = length * cvt_mult;
|
|
|
|
tmpbuffer = (Bit8u*)malloc(len2);
|
2015-01-25 14:45:13 +03:00
|
|
|
convert_pcm_data(data, length, tmpbuffer, len2, src_param);
|
2015-01-25 00:01:45 +03:00
|
|
|
int ret = write(wave_fd[0], tmpbuffer, len2);
|
|
|
|
free(tmpbuffer);
|
2008-07-12 19:21:36 +04:00
|
|
|
if (ret == length) {
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_OK;
|
2008-07-12 19:21:36 +04:00
|
|
|
} else {
|
2011-02-11 01:58:22 +03:00
|
|
|
BX_ERROR(("OSS: write error"));
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_ERR;
|
2008-07-12 19:21:36 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int bx_sound_linux_c::closewaveoutput()
|
|
|
|
{
|
2015-01-31 13:48:22 +03:00
|
|
|
if (wave_fd[0] != -1) {
|
|
|
|
close(wave_fd[0]);
|
|
|
|
wave_fd[0] = -1;
|
2011-04-22 17:11:47 +04:00
|
|
|
}
|
|
|
|
return BX_SOUNDLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bx_sound_linux_c::openwaveinput(const char *wavedev, sound_record_handler_t rh)
|
|
|
|
{
|
|
|
|
record_handler = rh;
|
2011-05-24 20:47:07 +04:00
|
|
|
if (rh != NULL) {
|
|
|
|
record_timer_index = bx_pc_system.register_timer(this, record_timer_handler, 1, 1, 0, "soundlnx");
|
|
|
|
// record timer: inactive, continuous, frequency variable
|
|
|
|
}
|
2015-01-31 13:48:22 +03:00
|
|
|
if (wave_fd[1] == -1) {
|
|
|
|
wave_fd[1] = open(wavedev, O_RDONLY);
|
|
|
|
if (wave_fd[1] == -1) {
|
|
|
|
return BX_SOUNDLOW_ERR;
|
|
|
|
} else {
|
|
|
|
BX_INFO(("OSS: opened input device %s", wavedev));
|
|
|
|
}
|
|
|
|
}
|
2011-04-24 22:45:37 +04:00
|
|
|
return BX_SOUNDLOW_OK;
|
2011-04-22 17:11:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int bx_sound_linux_c::startwaverecord(int frequency, int bits, bx_bool stereo, int format)
|
|
|
|
{
|
|
|
|
Bit64u timer_val;
|
|
|
|
Bit8u shift = 0;
|
2011-04-24 22:45:37 +04:00
|
|
|
int fmt, ret;
|
|
|
|
int signeddata = format & 1;
|
2011-04-22 17:11:47 +04:00
|
|
|
|
2011-05-24 20:47:07 +04:00
|
|
|
if (record_timer_index != BX_NULL_TIMER_HANDLE) {
|
|
|
|
if (bits == 16) shift++;
|
|
|
|
if (stereo) shift++;
|
|
|
|
record_packet_size = (frequency / 10) << shift; // 0.1 sec
|
|
|
|
if (record_packet_size > BX_SOUNDLOW_WAVEPACKETSIZE) {
|
|
|
|
record_packet_size = BX_SOUNDLOW_WAVEPACKETSIZE;
|
|
|
|
}
|
|
|
|
timer_val = (Bit64u)record_packet_size * 1000000 / (frequency << shift);
|
|
|
|
bx_pc_system.activate_timer(record_timer_index, (Bit32u)timer_val, 1);
|
2011-04-22 17:11:47 +04:00
|
|
|
}
|
2011-04-24 22:45:37 +04:00
|
|
|
if (wave_fd[1] == -1) {
|
2015-01-31 13:48:22 +03:00
|
|
|
return BX_SOUNDLOW_ERR;
|
2011-04-24 22:45:37 +04:00
|
|
|
} else {
|
|
|
|
if ((frequency == wave_ch[0].oldfreq) &&
|
|
|
|
(bits == wave_ch[0].oldbits) &&
|
|
|
|
(stereo == wave_ch[0].oldstereo) &&
|
|
|
|
(format == wave_ch[0].oldformat))
|
|
|
|
return BX_SOUNDLOW_OK; // nothing to do
|
|
|
|
}
|
|
|
|
wave_ch[0].oldfreq = frequency;
|
|
|
|
wave_ch[0].oldbits = bits;
|
|
|
|
wave_ch[0].oldstereo = stereo;
|
|
|
|
wave_ch[0].oldformat = format;
|
|
|
|
|
|
|
|
if (bits == 16)
|
|
|
|
if (signeddata == 1)
|
|
|
|
fmt = AFMT_S16_LE;
|
|
|
|
else
|
|
|
|
fmt = AFMT_U16_LE;
|
|
|
|
else if (bits == 8)
|
|
|
|
if (signeddata == 1)
|
|
|
|
fmt = AFMT_S8;
|
|
|
|
else
|
|
|
|
fmt = AFMT_U8;
|
|
|
|
else
|
|
|
|
return BX_SOUNDLOW_ERR;
|
|
|
|
|
|
|
|
// set frequency etc.
|
|
|
|
ret = ioctl(wave_fd[1], SNDCTL_DSP_RESET);
|
|
|
|
if (ret != 0)
|
2015-01-31 13:48:22 +03:00
|
|
|
BX_ERROR(("ioctl(SNDCTL_DSP_RESET): %s", strerror(errno)));
|
2011-04-24 22:45:37 +04:00
|
|
|
|
|
|
|
ret = ioctl(wave_fd[1], SNDCTL_DSP_SETFMT, &fmt);
|
|
|
|
if (ret != 0) { // abort if the format is unknown, to avoid playing noise
|
2015-01-31 13:48:22 +03:00
|
|
|
BX_ERROR(("ioctl(SNDCTL_DSP_SETFMT, %d): %s",
|
2011-04-24 22:45:37 +04:00
|
|
|
fmt, strerror(errno)));
|
|
|
|
return BX_SOUNDLOW_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ioctl(wave_fd[1], SNDCTL_DSP_STEREO, &stereo);
|
|
|
|
if (ret != 0) {
|
2015-01-31 13:48:22 +03:00
|
|
|
BX_ERROR(("ioctl(SNDCTL_DSP_STEREO, %d): %s",
|
|
|
|
stereo, strerror(errno)));
|
2011-04-24 22:45:37 +04:00
|
|
|
return BX_SOUNDLOW_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ioctl(wave_fd[1], SNDCTL_DSP_SPEED, &frequency);
|
|
|
|
if (ret != 0) {
|
2015-01-31 13:48:22 +03:00
|
|
|
BX_ERROR(("ioctl(SNDCTL_DSP_SPEED, %d): %s",
|
|
|
|
frequency, strerror(errno)));
|
2011-04-24 22:45:37 +04:00
|
|
|
return BX_SOUNDLOW_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return BX_SOUNDLOW_OK;
|
2011-04-22 17:11:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int bx_sound_linux_c::getwavepacket(int length, Bit8u data[])
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2011-04-24 22:45:37 +04:00
|
|
|
ret = read(wave_fd[1], data, length);
|
|
|
|
|
|
|
|
if (ret == length) {
|
|
|
|
return BX_SOUNDLOW_OK;
|
|
|
|
} else {
|
|
|
|
BX_ERROR(("OSS: write error"));
|
|
|
|
return BX_SOUNDLOW_ERR;
|
|
|
|
}
|
2011-04-22 17:11:47 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-04-22 17:11:47 +04:00
|
|
|
int bx_sound_linux_c::stopwaverecord()
|
|
|
|
{
|
2011-05-24 20:47:07 +04:00
|
|
|
if (record_timer_index != BX_NULL_TIMER_HANDLE) {
|
|
|
|
bx_pc_system.deactivate_timer(record_timer_index);
|
|
|
|
}
|
2011-03-20 21:02:12 +03:00
|
|
|
return BX_SOUNDLOW_OK;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2011-04-22 17:11:47 +04:00
|
|
|
int bx_sound_linux_c::closewaveinput()
|
|
|
|
{
|
|
|
|
stopwaverecord();
|
2011-04-24 22:45:37 +04:00
|
|
|
|
2015-01-31 13:48:22 +03:00
|
|
|
if (wave_fd[1] != -1) {
|
|
|
|
close(wave_fd[1]);
|
|
|
|
wave_fd[1] = -1;
|
2011-04-24 22:45:37 +04:00
|
|
|
}
|
2011-04-22 17:11:47 +04:00
|
|
|
return BX_SOUNDLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void bx_sound_linux_c::record_timer_handler(void *this_ptr)
|
|
|
|
{
|
|
|
|
bx_sound_linux_c *class_ptr = (bx_sound_linux_c *) this_ptr;
|
|
|
|
|
|
|
|
class_ptr->record_timer();
|
|
|
|
}
|
|
|
|
|
|
|
|
void bx_sound_linux_c::record_timer(void)
|
|
|
|
{
|
2013-06-24 23:19:12 +04:00
|
|
|
record_handler(this, record_packet_size);
|
2011-04-22 17:11:47 +04:00
|
|
|
}
|
|
|
|
|
2008-07-12 19:21:36 +04:00
|
|
|
#endif
|