alsa-lib/src/pcm/pcm_hw.c

733 lines
17 KiB
C
Raw Normal View History

2000-05-08 18:53:38 +00:00
/*
* PCM - Hardware
* Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org>
*
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program 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 Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
2000-05-08 18:53:38 +00:00
#include <string.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
2000-10-14 19:43:14 +00:00
#include <sys/shm.h>
2000-11-20 20:10:46 +00:00
#include <asm/page.h>
2000-05-08 18:53:38 +00:00
#include "pcm_local.h"
2000-11-20 20:10:46 +00:00
#include "../control/control_local.h"
2000-05-08 18:53:38 +00:00
#ifndef F_SETSIG
#define F_SETSIG 10
#endif
2000-11-20 20:10:46 +00:00
#ifndef PAGE_ALIGN
#define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
#endif
typedef struct {
int fd;
int card, device, subdevice;
volatile struct sndrv_pcm_mmap_status *mmap_status;
struct sndrv_pcm_mmap_control *mmap_control;
2000-11-20 20:10:46 +00:00
int shmid;
} snd_pcm_hw_t;
2001-01-29 14:27:53 +00:00
#define SNDRV_FILE_PCM_STREAM_PLAYBACK "/dev/snd/pcmC%iD%ip"
#define SNDRV_FILE_PCM_STREAM_CAPTURE "/dev/snd/pcmC%iD%ic"
#define SNDRV_PCM_VERSION_MAX SNDRV_PROTOCOL_VERSION(2, 0, 0)
2000-05-08 18:53:38 +00:00
static int snd_pcm_hw_nonblock(snd_pcm_t *pcm, int nonblock)
2000-05-08 18:53:38 +00:00
{
long flags;
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2000-05-08 18:53:38 +00:00
if ((flags = fcntl(fd, F_GETFL)) < 0) {
2000-10-14 19:43:14 +00:00
SYSERR("F_GETFL failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
if (nonblock)
flags |= O_NONBLOCK;
else
flags &= ~O_NONBLOCK;
if (fcntl(fd, F_SETFL, flags) < 0) {
2000-10-14 19:43:14 +00:00
SYSERR("F_SETFL for O_NONBLOCK failed");
return -errno;
}
return 0;
}
static int snd_pcm_hw_async(snd_pcm_t *pcm, int sig, pid_t pid)
{
long flags;
snd_pcm_hw_t *hw = pcm->private_data;
int fd = hw->fd;
if ((flags = fcntl(fd, F_GETFL)) < 0) {
2000-10-14 19:43:14 +00:00
SYSERR("F_GETFL failed");
return -errno;
}
if (sig >= 0)
flags |= O_ASYNC;
else
flags &= ~O_ASYNC;
if (fcntl(fd, F_SETFL, flags) < 0) {
2000-10-14 19:43:14 +00:00
SYSERR("F_SETFL for O_ASYNC failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
if (sig < 0)
return 0;
if (sig == 0)
sig = SIGIO;
if (fcntl(fd, F_SETSIG, sig) < 0) {
2000-10-14 19:43:14 +00:00
SYSERR("F_SETSIG failed");
return -errno;
}
if (pid == 0)
pid = getpid();
if (fcntl(fd, F_SETOWN, pid) < 0) {
2000-10-14 19:43:14 +00:00
SYSERR("F_SETOWN failed");
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
2000-12-21 20:44:10 +00:00
static int snd_pcm_hw_info(snd_pcm_t *pcm, snd_pcm_info_t * info)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_INFO, info) < 0) {
SYSERR("SNDRV_PCM_IOCTL_INFO failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
2000-12-21 20:44:10 +00:00
static int snd_pcm_hw_hw_refine(snd_pcm_t *pcm, snd_pcm_hw_params_t *params)
{
snd_pcm_hw_t *hw = pcm->private_data;
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_HW_REFINE, params) < 0) {
// SYSERR("SNDRV_PCM_IOCTL_HW_REFINE failed");
return -errno;
}
return 0;
}
2000-11-20 20:10:46 +00:00
static int snd_pcm_hw_hw_params(snd_pcm_t *pcm, snd_pcm_hw_params_t * params)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_HW_PARAMS, params) < 0) {
SYSERR("SNDRV_PCM_IOCTL_HW_PARAMS failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
2001-01-19 13:10:50 +00:00
static int snd_pcm_hw_hw_free(snd_pcm_t *pcm)
{
snd_pcm_hw_t *hw = pcm->private_data;
2001-01-19 13:10:50 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_HW_FREE) < 0) {
SYSERR("SNDRV_PCM_IOCTL_HW_FREE failed");
2001-01-19 13:10:50 +00:00
return -errno;
}
return 0;
}
2000-11-20 20:10:46 +00:00
static int snd_pcm_hw_sw_params(snd_pcm_t *pcm, snd_pcm_sw_params_t * params)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
if ((snd_pcm_start_t) params->start_mode == pcm->start_mode &&
(snd_pcm_xrun_t) params->xrun_mode == pcm->xrun_mode &&
(snd_pcm_tstamp_t) params->tstamp_mode == pcm->tstamp_mode &&
params->period_step == pcm->period_step &&
params->sleep_min == pcm->sleep_min &&
params->xfer_align == pcm->xfer_align &&
params->silence_threshold == pcm->silence_threshold &&
params->silence_size == pcm->silence_size) {
hw->mmap_control->avail_min = params->avail_min;
return 0;
}
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_SW_PARAMS, params) < 0) {
SYSERR("SNDRV_PCM_IOCTL_SW_PARAMS failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
2000-11-20 20:10:46 +00:00
static int snd_pcm_hw_channel_info(snd_pcm_t *pcm, snd_pcm_channel_info_t * info)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
struct sndrv_pcm_channel_info i;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
i.channel = info->channel;
if (ioctl(fd, SNDRV_PCM_IOCTL_CHANNEL_INFO, &i) < 0) {
2001-01-29 14:27:53 +00:00
SYSERR("SNDRV_PCM_IOCTL_CHANNEL_INFO failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
info->channel = i.channel;
2000-11-20 20:10:46 +00:00
if (pcm->info & SND_PCM_INFO_MMAP) {
info->addr = 0;
info->first = i.first;
info->step = i.step;
2000-11-20 20:10:46 +00:00
info->type = SND_PCM_AREA_MMAP;
info->u.mmap.fd = fd;
info->u.mmap.offset = i.offset;
return 0;
}
2000-11-20 20:10:46 +00:00
return snd_pcm_channel_info_shm(pcm, info, hw->shmid);
2000-05-08 18:53:38 +00:00
}
static int snd_pcm_hw_status(snd_pcm_t *pcm, snd_pcm_status_t * status)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_STATUS, status) < 0) {
SYSERR("SNDRV_PCM_IOCTL_STATUS failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
static snd_pcm_state_t snd_pcm_hw_state(snd_pcm_t *pcm)
2000-05-09 10:46:43 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
return (snd_pcm_state_t) hw->mmap_status->state;
}
static int snd_pcm_hw_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp)
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_DELAY, delayp) < 0) {
SYSERR("SNDRV_PCM_IOCTL_DELAY failed");
return -errno;
}
2000-09-24 09:57:26 +00:00
return 0;
2000-05-09 10:46:43 +00:00
}
static int snd_pcm_hw_prepare(snd_pcm_t *pcm)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_PREPARE) < 0) {
SYSERR("SNDRV_PCM_IOCTL_PREPARE failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
2000-11-24 17:08:03 +00:00
static int snd_pcm_hw_reset(snd_pcm_t *pcm)
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-11-24 17:08:03 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_RESET) < 0) {
SYSERR("SNDRV_PCM_IOCTL_RESET failed");
2000-11-24 17:08:03 +00:00
return -errno;
}
return 0;
}
2000-09-24 09:57:26 +00:00
static int snd_pcm_hw_start(snd_pcm_t *pcm)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2000-11-22 14:27:37 +00:00
#if 0
2000-11-20 20:10:46 +00:00
assert(pcm->stream != SND_PCM_STREAM_PLAYBACK ||
snd_pcm_mmap_playback_hw_avail(pcm) > 0);
2000-11-22 14:27:37 +00:00
#endif
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_START) < 0) {
SYSERR("SNDRV_PCM_IOCTL_START failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
2000-10-02 06:59:59 +00:00
static int snd_pcm_hw_drop(snd_pcm_t *pcm)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_DROP) < 0) {
SYSERR("SNDRV_PCM_IOCTL_DROP failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
static int snd_pcm_hw_drain(snd_pcm_t *pcm)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_DRAIN) < 0) {
SYSERR("SNDRV_PCM_IOCTL_DRAIN failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
static int snd_pcm_hw_pause(snd_pcm_t *pcm, int enable)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_PAUSE, enable) < 0) {
SYSERR("SNDRV_PCM_IOCTL_PAUSE failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
static snd_pcm_sframes_t snd_pcm_hw_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames)
2000-05-29 19:53:30 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
int fd = hw->fd;
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_REWIND, &frames) < 0) {
SYSERR("SNDRV_PCM_IOCTL_REWIND failed");
return -errno;
}
return 0;
2000-05-29 19:53:30 +00:00
}
static snd_pcm_sframes_t snd_pcm_hw_writei(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size)
2000-05-08 18:53:38 +00:00
{
snd_pcm_sframes_t result;
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
struct sndrv_xferi xferi;
2000-09-24 09:57:26 +00:00
xferi.buf = (char*) buffer;
xferi.frames = size;
2001-01-29 14:27:53 +00:00
result = ioctl(fd, SNDRV_PCM_IOCTL_WRITEI_FRAMES, &xferi);
2000-05-08 18:53:38 +00:00
if (result < 0)
return -errno;
2000-09-25 17:17:38 +00:00
return xferi.result;
2000-05-08 18:53:38 +00:00
}
static snd_pcm_sframes_t snd_pcm_hw_writen(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size)
2000-05-08 18:53:38 +00:00
{
snd_pcm_sframes_t result;
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
struct sndrv_xfern xfern;
2000-09-24 09:57:26 +00:00
xfern.bufs = bufs;
xfern.frames = size;
2001-01-29 14:27:53 +00:00
result = ioctl(fd, SNDRV_PCM_IOCTL_WRITEN_FRAMES, &xfern);
2000-05-08 18:53:38 +00:00
if (result < 0)
return -errno;
2000-09-25 17:17:38 +00:00
return xfern.result;
2000-05-08 18:53:38 +00:00
}
static snd_pcm_sframes_t snd_pcm_hw_readi(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size)
2000-05-08 18:53:38 +00:00
{
snd_pcm_sframes_t result;
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
struct sndrv_xferi xferi;
2000-09-24 09:57:26 +00:00
xferi.buf = buffer;
xferi.frames = size;
2001-01-29 14:27:53 +00:00
result = ioctl(fd, SNDRV_PCM_IOCTL_READI_FRAMES, &xferi);
2000-05-08 18:53:38 +00:00
if (result < 0)
return -errno;
2000-09-25 17:17:38 +00:00
return xferi.result;
2000-05-08 18:53:38 +00:00
}
snd_pcm_sframes_t snd_pcm_hw_readn(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size)
2000-05-08 18:53:38 +00:00
{
snd_pcm_sframes_t result;
snd_pcm_hw_t *hw = pcm->private_data;
2000-06-21 14:59:20 +00:00
int fd = hw->fd;
struct sndrv_xfern xfern;
2000-09-24 09:57:26 +00:00
xfern.bufs = bufs;
xfern.frames = size;
2001-01-29 14:27:53 +00:00
result = ioctl(fd, SNDRV_PCM_IOCTL_READN_FRAMES, &xfern);
2000-05-08 18:53:38 +00:00
if (result < 0)
return -errno;
2000-09-25 17:17:38 +00:00
return xfern.result;
2000-05-08 18:53:38 +00:00
}
2000-09-24 09:57:26 +00:00
static int snd_pcm_hw_mmap_status(snd_pcm_t *pcm)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-08-31 11:21:05 +00:00
void *ptr;
ptr = mmap(NULL, PAGE_ALIGN(sizeof(struct sndrv_pcm_mmap_status)), PROT_READ, MAP_FILE|MAP_SHARED,
2000-06-21 14:59:20 +00:00
hw->fd, SND_PCM_MMAP_OFFSET_STATUS);
if (ptr == MAP_FAILED || ptr == NULL) {
2000-10-14 19:43:14 +00:00
SYSERR("status mmap failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
hw->mmap_status = ptr;
pcm->hw_ptr = &hw->mmap_status->hw_ptr;
return 0;
}
2000-09-24 09:57:26 +00:00
static int snd_pcm_hw_mmap_control(snd_pcm_t *pcm)
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-08-31 11:21:05 +00:00
void *ptr;
ptr = mmap(NULL, PAGE_ALIGN(sizeof(struct sndrv_pcm_mmap_control)), PROT_READ|PROT_WRITE, MAP_FILE|MAP_SHARED,
2000-06-21 14:59:20 +00:00
hw->fd, SND_PCM_MMAP_OFFSET_CONTROL);
if (ptr == MAP_FAILED || ptr == NULL) {
2000-10-14 19:43:14 +00:00
SYSERR("control mmap failed");
return -errno;
}
hw->mmap_control = ptr;
pcm->appl_ptr = &hw->mmap_control->appl_ptr;
2000-05-08 18:53:38 +00:00
return 0;
}
2000-09-24 09:57:26 +00:00
static int snd_pcm_hw_munmap_status(snd_pcm_t *pcm)
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-11-22 14:27:37 +00:00
if (munmap((void*)hw->mmap_status, PAGE_ALIGN(sizeof(*hw->mmap_status))) < 0) {
2000-10-14 19:43:14 +00:00
SYSERR("status munmap failed");
return -errno;
}
return 0;
}
2000-09-24 09:57:26 +00:00
static int snd_pcm_hw_munmap_control(snd_pcm_t *pcm)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-11-22 14:27:37 +00:00
if (munmap(hw->mmap_control, PAGE_ALIGN(sizeof(*hw->mmap_control))) < 0) {
2000-10-14 19:43:14 +00:00
SYSERR("control munmap failed");
2000-05-08 18:53:38 +00:00
return -errno;
}
2000-05-08 18:53:38 +00:00
return 0;
}
2000-11-20 20:10:46 +00:00
static int snd_pcm_hw_mmap(snd_pcm_t *pcm)
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-11-20 20:10:46 +00:00
if (!(pcm->info & SND_PCM_INFO_MMAP)) {
snd_pcm_uframes_t size = snd_pcm_frames_to_bytes(pcm, pcm->buffer_size);
2000-11-20 20:10:46 +00:00
int id = shmget(IPC_PRIVATE, size, 0666);
if (id < 0) {
SYSERR("shmget failed");
return -errno;
}
hw->shmid = id;
}
return 0;
}
static int snd_pcm_hw_munmap(snd_pcm_t *pcm)
2000-05-08 18:53:38 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-11-20 20:10:46 +00:00
if (!(pcm->info & SND_PCM_INFO_MMAP)) {
if (shmctl(hw->shmid, IPC_RMID, 0) < 0) {
SYSERR("shmctl IPC_RMID failed");
return -errno;
}
}
2000-05-08 18:53:38 +00:00
return 0;
}
static int snd_pcm_hw_close(snd_pcm_t *pcm)
2000-09-24 09:57:26 +00:00
{
snd_pcm_hw_t *hw = pcm->private_data;
2000-11-20 20:10:46 +00:00
if (close(hw->fd)) {
2000-10-14 19:43:14 +00:00
SYSERR("close failed\n");
return -errno;
}
snd_pcm_hw_munmap_status(pcm);
snd_pcm_hw_munmap_control(pcm);
2000-11-20 20:10:46 +00:00
free(hw);
return 0;
}
static snd_pcm_sframes_t snd_pcm_hw_mmap_forward(snd_pcm_t *pcm, snd_pcm_uframes_t size)
{
2000-11-20 20:10:46 +00:00
if (!(pcm->info & SND_PCM_INFO_MMAP) &&
pcm->stream == SND_PCM_STREAM_PLAYBACK)
2000-09-24 09:57:26 +00:00
return snd_pcm_write_mmap(pcm, size);
snd_pcm_mmap_appl_forward(pcm, size);
return size;
}
static snd_pcm_sframes_t snd_pcm_hw_avail_update(snd_pcm_t *pcm)
2000-09-24 09:57:26 +00:00
{
snd_pcm_uframes_t avail;
snd_pcm_sframes_t err;
#if 0
2000-11-20 20:10:46 +00:00
if (pcm->ready_mode == SND_PCM_READY_ASAP ||
pcm->xrun_mode == SND_PCM_XRUN_ASAP) {
snd_pcm_sframes_t d;
int err = snd_pcm_hw_delay(pcm, &d);
2000-09-24 09:57:26 +00:00
if (err < 0)
return err;
2000-09-24 09:57:26 +00:00
}
#endif
if (pcm->stream == SND_PCM_STREAM_PLAYBACK) {
avail = snd_pcm_mmap_playback_avail(pcm);
} else {
avail = snd_pcm_mmap_capture_avail(pcm);
2000-11-20 20:10:46 +00:00
if (avail > 0 &&
!(pcm->info & SND_PCM_INFO_MMAP)) {
err = snd_pcm_read_mmap(pcm, avail);
if (err < 0)
return err;
assert((snd_pcm_uframes_t)err == avail);
2000-09-24 09:57:26 +00:00
return err;
}
2000-09-24 09:57:26 +00:00
}
2000-11-20 20:10:46 +00:00
if (avail > pcm->buffer_size)
return -EPIPE;
2000-09-24 09:57:26 +00:00
return avail;
}
2001-01-17 11:00:32 +00:00
static void snd_pcm_hw_dump(snd_pcm_t *pcm, snd_output_t *out)
{
snd_pcm_hw_t *hw = pcm->private_data;
char *name = "Unknown";
int err = snd_card_get_name(hw->card, &name);
assert(err >= 0);
2001-01-17 11:00:32 +00:00
snd_output_printf(out, "Hardware PCM card %d '%s' device %d subdevice %d\n",
hw->card, name, hw->device, hw->subdevice);
free(name);
2000-11-20 20:10:46 +00:00
if (pcm->setup) {
2001-01-17 11:00:32 +00:00
snd_output_printf(out, "\nIts setup is:\n");
snd_pcm_dump_setup(pcm, out);
}
}
snd_pcm_ops_t snd_pcm_hw_ops = {
2000-06-21 14:59:20 +00:00
close: snd_pcm_hw_close,
2000-12-21 20:44:10 +00:00
info: snd_pcm_hw_info,
hw_refine: snd_pcm_hw_hw_refine,
2000-11-20 20:10:46 +00:00
hw_params: snd_pcm_hw_hw_params,
2001-01-19 13:10:50 +00:00
hw_free: snd_pcm_hw_hw_free,
2000-11-20 20:10:46 +00:00
sw_params: snd_pcm_hw_sw_params,
2000-09-24 09:57:26 +00:00
channel_info: snd_pcm_hw_channel_info,
dump: snd_pcm_hw_dump,
2000-09-24 09:57:26 +00:00
nonblock: snd_pcm_hw_nonblock,
async: snd_pcm_hw_async,
mmap: snd_pcm_hw_mmap,
munmap: snd_pcm_hw_munmap,
};
snd_pcm_fast_ops_t snd_pcm_hw_fast_ops = {
2000-06-21 14:59:20 +00:00
status: snd_pcm_hw_status,
state: snd_pcm_hw_state,
2000-09-24 09:57:26 +00:00
delay: snd_pcm_hw_delay,
2000-06-21 14:59:20 +00:00
prepare: snd_pcm_hw_prepare,
2000-11-24 17:08:03 +00:00
reset: snd_pcm_hw_reset,
2000-09-24 09:57:26 +00:00
start: snd_pcm_hw_start,
2000-10-02 06:59:59 +00:00
drop: snd_pcm_hw_drop,
drain: snd_pcm_hw_drain,
2000-06-21 14:59:20 +00:00
pause: snd_pcm_hw_pause,
rewind: snd_pcm_hw_rewind,
2000-09-24 09:57:26 +00:00
writei: snd_pcm_hw_writei,
writen: snd_pcm_hw_writen,
readi: snd_pcm_hw_readi,
readn: snd_pcm_hw_readn,
avail_update: snd_pcm_hw_avail_update,
mmap_forward: snd_pcm_hw_mmap_forward,
2000-05-08 18:53:38 +00:00
};
int snd_pcm_hw_open_subdevice(snd_pcm_t **pcmp, int card, int device, int subdevice, snd_pcm_stream_t stream, int mode)
2000-05-08 18:53:38 +00:00
{
char filename[32];
char *filefmt;
2000-06-21 14:59:20 +00:00
int ver;
int ret = 0, fd = -1;
2000-05-08 18:53:38 +00:00
int attempt = 0;
2000-06-21 14:59:20 +00:00
snd_pcm_info_t info;
int fmode;
snd_ctl_t *ctl;
snd_pcm_t *pcm = NULL;
snd_pcm_hw_t *hw = NULL;
2000-06-21 14:59:20 +00:00
assert(pcmp);
2000-06-21 14:59:20 +00:00
if ((ret = snd_ctl_hw_open(&ctl, NULL, card)) < 0)
2000-06-21 14:59:20 +00:00
return ret;
switch (snd_enum_to_int(stream)) {
case SND_PCM_STREAM_PLAYBACK:
2001-01-29 14:27:53 +00:00
filefmt = SNDRV_FILE_PCM_STREAM_PLAYBACK;
2000-05-08 18:53:38 +00:00
break;
case SND_PCM_STREAM_CAPTURE:
2001-01-29 14:27:53 +00:00
filefmt = SNDRV_FILE_PCM_STREAM_CAPTURE;
2000-05-08 18:53:38 +00:00
break;
default:
2000-06-04 16:24:04 +00:00
assert(0);
2000-05-08 18:53:38 +00:00
}
sprintf(filename, filefmt, card, device);
__again:
if (attempt++ > 3) {
2000-11-22 14:27:37 +00:00
ret = -EBUSY;
goto _err;
}
ret = snd_ctl_pcm_prefer_subdevice(ctl, subdevice);
2000-11-22 14:27:37 +00:00
if (ret < 0)
goto _err;
2000-06-21 14:59:20 +00:00
fmode = O_RDWR;
if (mode & SND_PCM_NONBLOCK)
fmode |= O_NONBLOCK;
if (mode & SND_PCM_ASYNC)
fmode |= O_ASYNC;
2000-10-15 14:15:30 +00:00
if ((fd = open(filename, fmode)) < 0) {
SYSERR("open %s failed", filename);
2000-11-22 14:27:37 +00:00
ret = -errno;
goto _err;
2000-10-15 14:15:30 +00:00
}
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_PVERSION, &ver) < 0) {
SYSERR("SNDRV_PCM_IOCTL_PVERSION failed");
2000-06-21 14:59:20 +00:00
ret = -errno;
goto _err;
2000-05-08 18:53:38 +00:00
}
2001-01-29 14:27:53 +00:00
if (SNDRV_PROTOCOL_INCOMPATIBLE(ver, SNDRV_PCM_VERSION_MAX)) {
2000-06-21 14:59:20 +00:00
ret = -SND_ERROR_INCOMPATIBLE_VERSION;
goto _err;
2000-05-08 18:53:38 +00:00
}
if (subdevice >= 0) {
memset(&info, 0, sizeof(info));
2001-01-29 14:27:53 +00:00
if (ioctl(fd, SNDRV_PCM_IOCTL_INFO, &info) < 0) {
SYSERR("SNDRV_PCM_IOCTL_INFO failed");
2000-06-21 14:59:20 +00:00
ret = -errno;
goto _err;
2000-05-08 18:53:38 +00:00
}
if (info.subdevice != (unsigned int) subdevice) {
2000-05-08 18:53:38 +00:00
close(fd);
goto __again;
}
}
2000-06-21 14:59:20 +00:00
hw = calloc(1, sizeof(snd_pcm_hw_t));
2000-09-24 09:57:26 +00:00
if (!hw) {
2000-06-21 14:59:20 +00:00
ret = -ENOMEM;
goto _err;
2000-05-08 18:53:38 +00:00
}
hw->card = card;
hw->device = device;
hw->subdevice = subdevice;
2000-06-21 14:59:20 +00:00
hw->fd = fd;
2000-09-24 09:57:26 +00:00
pcm = calloc(1, sizeof(snd_pcm_t));
if (!pcm) {
2000-09-24 09:57:26 +00:00
ret = -ENOMEM;
goto _err;
}
2000-11-22 14:27:37 +00:00
snd_ctl_close(ctl);
pcm->type = SND_PCM_TYPE_HW;
pcm->stream = stream;
pcm->mode = mode;
pcm->ops = &snd_pcm_hw_ops;
pcm->op_arg = pcm;
pcm->fast_ops = &snd_pcm_hw_fast_ops;
pcm->fast_op_arg = pcm;
pcm->private_data = hw;
pcm->poll_fd = fd;
*pcmp = pcm;
ret = snd_pcm_hw_mmap_status(pcm);
2000-09-24 09:57:26 +00:00
if (ret < 0) {
snd_pcm_close(pcm);
2000-09-24 09:57:26 +00:00
return ret;
}
ret = snd_pcm_hw_mmap_control(pcm);
if (ret < 0) {
snd_pcm_close(pcm);
return ret;
}
return 0;
2000-06-21 14:59:20 +00:00
_err:
if (hw)
free(hw);
if (pcm)
free(pcm);
2000-11-22 14:27:37 +00:00
if (fd >= 0)
close(fd);
snd_ctl_close(ctl);
2000-06-21 14:59:20 +00:00
return ret;
2000-05-08 18:53:38 +00:00
}
int snd_pcm_hw_open_device(snd_pcm_t **pcmp, int card, int device, snd_pcm_stream_t stream, int mode)
2000-05-08 18:53:38 +00:00
{
return snd_pcm_hw_open_subdevice(pcmp, card, device, -1, stream, mode);
2000-05-08 18:53:38 +00:00
}
int snd_pcm_hw_open(snd_pcm_t **pcmp, const char *name, int card, int device, int subdevice, snd_pcm_stream_t stream, int mode)
2000-10-10 09:11:07 +00:00
{
int err = snd_pcm_hw_open_subdevice(pcmp, card, device, subdevice, stream, mode);
2000-10-10 09:11:07 +00:00
if (err < 0)
return err;
if (name)
(*pcmp)->name = strdup(name);
2000-10-10 09:11:07 +00:00
return 0;
}
int _snd_pcm_hw_open(snd_pcm_t **pcmp, const char *name, snd_config_t *conf,
snd_pcm_stream_t stream, int mode)
2000-09-24 09:57:26 +00:00
{
snd_config_iterator_t i, next;
2000-09-24 09:57:26 +00:00
long card = -1, device = 0, subdevice = -1;
const char *str;
2000-09-24 09:57:26 +00:00
int err;
snd_config_for_each(i, next, conf) {
2001-02-07 11:34:33 +00:00
snd_config_t *n = snd_config_iterator_entry(i);
const char *id = snd_config_get_id(n);
if (strcmp(id, "comment") == 0)
2000-09-24 09:57:26 +00:00
continue;
2001-02-07 11:34:33 +00:00
if (strcmp(id, "type") == 0)
2000-09-24 09:57:26 +00:00
continue;
2001-02-07 11:34:33 +00:00
if (strcmp(id, "card") == 0) {
err = snd_config_get_integer(n, &card);
2000-09-24 09:57:26 +00:00
if (err < 0) {
2001-02-07 11:34:33 +00:00
err = snd_config_get_string(n, &str);
2000-11-30 09:40:50 +00:00
if (err < 0) {
2001-02-07 11:34:33 +00:00
ERR("Invalid type for %s", id);
2000-09-24 09:57:26 +00:00
return -EINVAL;
2000-11-30 09:40:50 +00:00
}
2000-09-24 09:57:26 +00:00
card = snd_card_get_index(str);
2000-11-30 09:40:50 +00:00
if (card < 0) {
2001-02-07 11:34:33 +00:00
ERR("Invalid value for %s", id);
2000-09-24 09:57:26 +00:00
return card;
2000-11-30 09:40:50 +00:00
}
2000-09-24 09:57:26 +00:00
}
continue;
}
2001-02-07 11:34:33 +00:00
if (strcmp(id, "device") == 0) {
err = snd_config_get_integer(n, &device);
2000-11-30 09:40:50 +00:00
if (err < 0) {
2001-02-07 11:34:33 +00:00
ERR("Invalid type for %s", id);
2000-09-24 09:57:26 +00:00
return err;
2000-11-30 09:40:50 +00:00
}
2000-09-24 09:57:26 +00:00
continue;
}
2001-02-07 11:34:33 +00:00
if (strcmp(id, "subdevice") == 0) {
err = snd_config_get_integer(n, &subdevice);
2000-11-30 09:40:50 +00:00
if (err < 0) {
2001-02-07 11:34:33 +00:00
ERR("Invalid type for %s", id);
2000-09-24 09:57:26 +00:00
return err;
2000-11-30 09:40:50 +00:00
}
2000-09-24 09:57:26 +00:00
continue;
}
2001-02-07 11:34:33 +00:00
ERR("Unknown field %s", id);
2000-09-24 09:57:26 +00:00
return -EINVAL;
}
2000-11-30 09:40:50 +00:00
if (card < 0) {
ERR("card is not defined");
2000-09-24 09:57:26 +00:00
return -EINVAL;
2000-11-30 09:40:50 +00:00
}
2000-10-10 09:11:07 +00:00
return snd_pcm_hw_open(pcmp, name, card, device, subdevice, stream, mode);
2000-09-24 09:57:26 +00:00
}