NetBSD/sys/dev/audio_if.h

183 lines
6.3 KiB
C
Raw Normal View History

2002-06-04 18:02:32 +04:00
/* $NetBSD: audio_if.h,v 1.46 2002/06/04 14:02:32 isaki Exp $ */
1995-02-21 04:35:58 +03:00
/*
* Copyright (c) 1994 Havard Eidnes.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the Computer Systems
* Engineering Group at Lawrence Berkeley Laboratory.
* 4. Neither the name of the University nor of the Laboratory may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#ifndef _SYS_DEV_AUDIO_IF_H_
#define _SYS_DEV_AUDIO_IF_H_
1995-02-21 04:35:58 +03:00
/*
* Generic interface to hardware driver.
*/
1996-03-07 18:00:07 +03:00
struct audio_softc;
struct audio_params {
u_long sample_rate; /* sample rate */
u_int encoding; /* e.g. ulaw, linear, etc */
u_int precision; /* bits/sample */
u_int channels; /* mono(1), stereo(2) */
/* Software en/decode functions, set if SW coding required by HW */
2001-10-03 03:31:54 +04:00
void (*sw_code)(void *, u_char *, int);
int factor; /* coding space change */
2002-06-04 18:02:32 +04:00
int factor_denom; /* denominator of factor */
/*
* The following four members represent what format is used in a
* hardware. If hw_sample_rate != sample_rate || hw_channels !=
* channels, the audio framework converts data. Encoding and
* precision are converted in sw_code().
* set_params() should set correct values to them if no conversion is
2002-03-13 06:48:19 +03:00
* needed.
*/
u_long hw_sample_rate;
u_int hw_encoding;
u_int hw_precision;
u_int hw_channels;
};
/* The default audio mode: 8 kHz mono ulaw */
extern struct audio_params audio_default;
1995-02-21 04:35:58 +03:00
struct audio_hw_if {
2001-10-03 03:31:54 +04:00
int (*open)(void *, int); /* open hardware */
void (*close)(void *); /* close hardware */
int (*drain)(void *); /* Optional: drain buffers */
1995-02-21 04:35:58 +03:00
/* Encoding. */
/* XXX should we have separate in/out? */
2001-10-03 03:31:54 +04:00
int (*query_encoding)(void *, struct audio_encoding *);
1995-02-21 04:35:58 +03:00
/* Set the audio encoding parameters (record and play).
* Return 0 on success, or an error code if the
* requested parameters are impossible.
* The values in the params struct may be changed (e.g. rounding
* to the nearest sample rate.)
*/
int (*set_params)(void *, int, int, struct audio_params *,
2001-10-03 03:31:54 +04:00
struct audio_params *);
1995-02-21 04:35:58 +03:00
/* Hardware may have some say in the blocksize to choose */
2001-10-03 03:31:54 +04:00
int (*round_blocksize)(void *, int);
1995-02-21 04:35:58 +03:00
/*
* Changing settings may require taking device out of "data mode",
* which can be quite expensive. Also, audiosetinfo() may
* change several settings in quick succession. To avoid
* having to take the device in/out of "data mode", we provide
* this function which indicates completion of settings
* adjustment.
*/
2001-10-03 03:31:54 +04:00
int (*commit_settings)(void *);
1995-02-21 04:35:58 +03:00
/* Start input/output routines. These usually control DMA. */
2001-10-03 03:31:54 +04:00
int (*init_output)(void *, void *, int);
int (*init_input)(void *, void *, int);
int (*start_output)(void *, void *, int,
void (*)(void *), void *);
int (*start_input)(void *, void *, int,
void (*)(void *), void *);
int (*halt_output)(void *);
int (*halt_input)(void *);
int (*speaker_ctl)(void *, int);
1995-02-21 04:35:58 +03:00
#define SPKR_ON 1
#define SPKR_OFF 0
2001-10-03 03:31:54 +04:00
int (*getdev)(void *, struct audio_device *);
int (*setfd)(void *, int);
1995-02-21 04:35:58 +03:00
/* Mixer (in/out ports) */
2001-10-03 03:31:54 +04:00
int (*set_port)(void *, mixer_ctrl_t *);
int (*get_port)(void *, mixer_ctrl_t *);
1995-02-21 04:35:58 +03:00
2001-10-03 03:31:54 +04:00
int (*query_devinfo)(void *, mixer_devinfo_t *);
/* Allocate/free memory for the ring buffer. Usually malloc/free. */
2001-10-03 03:31:54 +04:00
void *(*allocm)(void *, int, size_t, int, int);
void (*freem)(void *, void *, int);
size_t (*round_buffersize)(void *, int, size_t);
paddr_t (*mappage)(void *, void *, off_t, int);
int (*get_props)(void *); /* device properties */
2001-10-03 03:31:54 +04:00
int (*trigger_output)(void *, void *, void *, int,
void (*)(void *), void *, struct audio_params *);
int (*trigger_input)(void *, void *, void *, int,
void (*)(void *), void *, struct audio_params *);
2001-10-04 00:48:41 +04:00
int (*dev_ioctl)(void *, u_long, caddr_t, int, struct proc *);
1995-02-21 04:35:58 +03:00
};
struct audio_attach_args {
int type;
void *hwif; /* either audio_hw_if * or midi_hw_if * */
void *hdl;
};
#define AUDIODEV_TYPE_AUDIO 0
#define AUDIODEV_TYPE_MIDI 1
#define AUDIODEV_TYPE_OPL 2
#define AUDIODEV_TYPE_MPU 3
#define AUDIODEV_TYPE_AUX 4
/* Attach the MI driver(s) to the MD driver. */
2001-10-03 03:31:54 +04:00
struct device *audio_attach_mi(struct audio_hw_if *, void *, struct device *);
int audioprint(void *, const char *);
1995-02-21 04:35:58 +03:00
/* Device identity flags */
#define SOUND_DEVICE 0
#define AUDIO_DEVICE 0x80
#define AUDIOCTL_DEVICE 0xc0
1995-02-21 04:35:58 +03:00
#define MIXER_DEVICE 0x10
#define AUDIOUNIT(x) (minor(x)&0x0f)
#define AUDIODEV(x) (minor(x)&0xf0)
1995-07-07 05:58:04 +04:00
#define ISDEVSOUND(x) (AUDIODEV((x)) == SOUND_DEVICE)
#define ISDEVAUDIO(x) (AUDIODEV((x)) == AUDIO_DEVICE)
#define ISDEVAUDIOCTL(x) (AUDIODEV((x)) == AUDIOCTL_DEVICE)
#define ISDEVMIXER(x) (AUDIODEV((x)) == MIXER_DEVICE)
#if !defined(__i386__) && !defined(__arm32__) && !defined(IPL_AUDIO)
1995-07-07 05:58:04 +04:00
#define splaudio splbio /* XXX */
#define IPL_AUDIO IPL_BIO /* XXX */
1997-03-21 07:36:29 +03:00
#endif
/*
* USB Audio specification defines 12 channels:
* L R C LFE Ls Rs Lc Rc S Sl Sr T
*/
#define AUDIO_MAX_CHANNELS 12
#endif /* _SYS_DEV_AUDIO_IF_H_ */