2007-02-22 01:59:35 +03:00
|
|
|
/* $NetBSD: ac97var.h,v 1.20 2007/02/21 22:59:59 thorpej Exp $ */
|
2000-11-04 11:07:14 +03:00
|
|
|
/* $OpenBSD: ac97.h,v 1.4 2000/07/19 09:01:35 csapuntz Exp $ */
|
1999-10-27 17:18:02 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1999 Constantine Sapuntzakis
|
|
|
|
*
|
|
|
|
* Author: Constantine Sapuntzakis <csapuntz@stanford.edu>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY CONSTANTINE SAPUNTZAKIS 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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
2004-08-24 03:17:54 +04:00
|
|
|
#ifndef _DEV_IC_AC97VAR_H_
|
|
|
|
#define _DEV_IC_AC97VAR_H_
|
merge kent-audio1 branch, which introduces audio filter pipeline to the MI
audio framework
Summary of changes:
* struct audio_params
- remove sw_code, factor, factor_denom, hw_sample_rate,
hw_encoding ,hw_precision, and hw_channels. Conversion information
is conveyed by stream_filter_list_t.
- change the type of sample_rate: u_long -> u_int
- add `validbits,' which represents the valid data size in
precision bits. It is required in order to distinguish 24/32bit
from 24/24bit or 32/32bit.
* audio_hw_if
- add two parameters to set_params()
stream_filter_list_t *pfil, stream_filter_list *rfil
A HW driver should set filter recipes for requested formats
- constify audio_params parameters of trigger_output() and
trigger_input(). They represent audio formats for the hardware.
- make open() and close() optional
- add int (AUMODE_PLAY or AUMODE_RECORD) and audio_params_t parameters
to round_blocksize()
* sw_code is replaced with stream_filter_t.
stream_filer_t converts audio data in an input buffer and writes
into another output buffer unlike sw_code, which converts data in
single buffer.
converters in dev/auconv.c, dev/mulaw.c, dev/aurateconv.c,
dev/tc/bba.c, dev/ic/msm6258.c, and arch/arm/iomd/vidcaudio.c are
reimplemented as stream_filter_t
* MI audio
- audiosetinfo() builds filter pipelines from stream_filter_list_t
filled by audio_hw_if::set_params()
- audiosetinfo() returns with EINVAL if mmapped and set_params()
requests filters
- audio_write(), audio_pint(), and audio_rint() invoke a filter
pipeline.
- ioctl() for FIONREAD, AUDIO_WSEEK, AUDIO_GETIOFFS,
AUDIO_GETOOFFS, and audio_prinfo::{seek,samples} for
AUDIO_GETINFO handle values for a buffer nearest to userland.
* add `struct device *' parameter to ac97_attach()
* all of audio HW drivers follow audio_hw_if and ac97 changes
2005-01-11 01:01:36 +03:00
|
|
|
#include <sys/types.h>
|
2004-08-24 03:17:54 +04:00
|
|
|
|
1999-10-27 17:18:02 +04:00
|
|
|
struct ac97_codec_if;
|
|
|
|
|
merge kent-audio1 branch, which introduces audio filter pipeline to the MI
audio framework
Summary of changes:
* struct audio_params
- remove sw_code, factor, factor_denom, hw_sample_rate,
hw_encoding ,hw_precision, and hw_channels. Conversion information
is conveyed by stream_filter_list_t.
- change the type of sample_rate: u_long -> u_int
- add `validbits,' which represents the valid data size in
precision bits. It is required in order to distinguish 24/32bit
from 24/24bit or 32/32bit.
* audio_hw_if
- add two parameters to set_params()
stream_filter_list_t *pfil, stream_filter_list *rfil
A HW driver should set filter recipes for requested formats
- constify audio_params parameters of trigger_output() and
trigger_input(). They represent audio formats for the hardware.
- make open() and close() optional
- add int (AUMODE_PLAY or AUMODE_RECORD) and audio_params_t parameters
to round_blocksize()
* sw_code is replaced with stream_filter_t.
stream_filer_t converts audio data in an input buffer and writes
into another output buffer unlike sw_code, which converts data in
single buffer.
converters in dev/auconv.c, dev/mulaw.c, dev/aurateconv.c,
dev/tc/bba.c, dev/ic/msm6258.c, and arch/arm/iomd/vidcaudio.c are
reimplemented as stream_filter_t
* MI audio
- audiosetinfo() builds filter pipelines from stream_filter_list_t
filled by audio_hw_if::set_params()
- audiosetinfo() returns with EINVAL if mmapped and set_params()
requests filters
- audio_write(), audio_pint(), and audio_rint() invoke a filter
pipeline.
- ioctl() for FIONREAD, AUDIO_WSEEK, AUDIO_GETIOFFS,
AUDIO_GETOOFFS, and audio_prinfo::{seek,samples} for
AUDIO_GETINFO handle values for a buffer nearest to userland.
* add `struct device *' parameter to ac97_attach()
* all of audio HW drivers follow audio_hw_if and ac97 changes
2005-01-11 01:01:36 +03:00
|
|
|
/*
|
1999-10-27 17:18:02 +04:00
|
|
|
* This is the interface used to attach the AC97 compliant CODEC.
|
|
|
|
*/
|
2002-01-01 00:30:01 +03:00
|
|
|
enum ac97_host_flags {
|
|
|
|
AC97_HOST_DONT_READ = 0x1,
|
2005-04-04 06:08:58 +04:00
|
|
|
AC97_HOST_SWAPPED_CHANNELS = 0x2, /* l/r is reversed */
|
|
|
|
AC97_HOST_SKIP_AUDIO = 0x4,
|
2006-04-16 01:18:34 +04:00
|
|
|
AC97_HOST_SKIP_MODEM = 0x8,
|
|
|
|
AC97_HOST_INVERTED_EAMP = 0x10
|
2002-01-01 00:30:01 +03:00
|
|
|
};
|
|
|
|
|
1999-10-27 17:18:02 +04:00
|
|
|
struct ac97_host_if {
|
|
|
|
void *arg;
|
|
|
|
|
2003-07-08 14:06:28 +04:00
|
|
|
int (*attach)(void *, struct ac97_codec_if *);
|
merge kent-audio1 branch, which introduces audio filter pipeline to the MI
audio framework
Summary of changes:
* struct audio_params
- remove sw_code, factor, factor_denom, hw_sample_rate,
hw_encoding ,hw_precision, and hw_channels. Conversion information
is conveyed by stream_filter_list_t.
- change the type of sample_rate: u_long -> u_int
- add `validbits,' which represents the valid data size in
precision bits. It is required in order to distinguish 24/32bit
from 24/24bit or 32/32bit.
* audio_hw_if
- add two parameters to set_params()
stream_filter_list_t *pfil, stream_filter_list *rfil
A HW driver should set filter recipes for requested formats
- constify audio_params parameters of trigger_output() and
trigger_input(). They represent audio formats for the hardware.
- make open() and close() optional
- add int (AUMODE_PLAY or AUMODE_RECORD) and audio_params_t parameters
to round_blocksize()
* sw_code is replaced with stream_filter_t.
stream_filer_t converts audio data in an input buffer and writes
into another output buffer unlike sw_code, which converts data in
single buffer.
converters in dev/auconv.c, dev/mulaw.c, dev/aurateconv.c,
dev/tc/bba.c, dev/ic/msm6258.c, and arch/arm/iomd/vidcaudio.c are
reimplemented as stream_filter_t
* MI audio
- audiosetinfo() builds filter pipelines from stream_filter_list_t
filled by audio_hw_if::set_params()
- audiosetinfo() returns with EINVAL if mmapped and set_params()
requests filters
- audio_write(), audio_pint(), and audio_rint() invoke a filter
pipeline.
- ioctl() for FIONREAD, AUDIO_WSEEK, AUDIO_GETIOFFS,
AUDIO_GETOOFFS, and audio_prinfo::{seek,samples} for
AUDIO_GETINFO handle values for a buffer nearest to userland.
* add `struct device *' parameter to ac97_attach()
* all of audio HW drivers follow audio_hw_if and ac97 changes
2005-01-11 01:01:36 +03:00
|
|
|
int (*read)(void *, uint8_t, uint16_t *);
|
|
|
|
int (*write)(void *, uint8_t, uint16_t);
|
2004-09-22 16:20:24 +04:00
|
|
|
int (*reset)(void *);
|
2000-11-04 11:07:14 +03:00
|
|
|
|
2003-07-08 14:06:28 +04:00
|
|
|
enum ac97_host_flags (*flags)(void *);
|
2007-02-22 01:59:35 +03:00
|
|
|
void (*spdif_event)(void *, bool);
|
1999-10-27 17:18:02 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the interface exported by the AC97 compliant CODEC
|
|
|
|
*/
|
|
|
|
struct ac97_codec_if_vtbl {
|
2003-07-08 14:06:28 +04:00
|
|
|
int (*mixer_get_port)(struct ac97_codec_if *, mixer_ctrl_t *);
|
|
|
|
int (*mixer_set_port)(struct ac97_codec_if *, mixer_ctrl_t *);
|
|
|
|
int (*query_devinfo)(struct ac97_codec_if *, mixer_devinfo_t *);
|
|
|
|
int (*get_portnum_by_name)(struct ac97_codec_if *, const char *,
|
|
|
|
const char *, const char *);
|
2000-11-04 11:07:14 +03:00
|
|
|
/*
|
|
|
|
* The AC97 codec driver records the various port settings. This
|
|
|
|
* function can be used to restore the port settings, e.g. after
|
|
|
|
* resume from a laptop suspend to disk.
|
2006-04-16 01:18:34 +04:00
|
|
|
* Also restores AC97_POWER_REG.
|
2000-11-04 11:07:14 +03:00
|
|
|
*/
|
2003-07-08 14:06:28 +04:00
|
|
|
void (*restore_ports)(struct ac97_codec_if *);
|
2002-10-08 13:19:44 +04:00
|
|
|
|
2003-07-08 14:06:28 +04:00
|
|
|
u_int16_t (*get_extcaps)(struct ac97_codec_if *);
|
merge kent-audio1 branch, which introduces audio filter pipeline to the MI
audio framework
Summary of changes:
* struct audio_params
- remove sw_code, factor, factor_denom, hw_sample_rate,
hw_encoding ,hw_precision, and hw_channels. Conversion information
is conveyed by stream_filter_list_t.
- change the type of sample_rate: u_long -> u_int
- add `validbits,' which represents the valid data size in
precision bits. It is required in order to distinguish 24/32bit
from 24/24bit or 32/32bit.
* audio_hw_if
- add two parameters to set_params()
stream_filter_list_t *pfil, stream_filter_list *rfil
A HW driver should set filter recipes for requested formats
- constify audio_params parameters of trigger_output() and
trigger_input(). They represent audio formats for the hardware.
- make open() and close() optional
- add int (AUMODE_PLAY or AUMODE_RECORD) and audio_params_t parameters
to round_blocksize()
* sw_code is replaced with stream_filter_t.
stream_filer_t converts audio data in an input buffer and writes
into another output buffer unlike sw_code, which converts data in
single buffer.
converters in dev/auconv.c, dev/mulaw.c, dev/aurateconv.c,
dev/tc/bba.c, dev/ic/msm6258.c, and arch/arm/iomd/vidcaudio.c are
reimplemented as stream_filter_t
* MI audio
- audiosetinfo() builds filter pipelines from stream_filter_list_t
filled by audio_hw_if::set_params()
- audiosetinfo() returns with EINVAL if mmapped and set_params()
requests filters
- audio_write(), audio_pint(), and audio_rint() invoke a filter
pipeline.
- ioctl() for FIONREAD, AUDIO_WSEEK, AUDIO_GETIOFFS,
AUDIO_GETOOFFS, and audio_prinfo::{seek,samples} for
AUDIO_GETINFO handle values for a buffer nearest to userland.
* add `struct device *' parameter to ac97_attach()
* all of audio HW drivers follow audio_hw_if and ac97 changes
2005-01-11 01:01:36 +03:00
|
|
|
int (*set_rate)(struct ac97_codec_if *, int, u_int *);
|
2003-07-08 14:06:28 +04:00
|
|
|
void (*set_clock)(struct ac97_codec_if *, unsigned int);
|
2004-11-08 17:24:17 +03:00
|
|
|
void (*detach)(struct ac97_codec_if *);
|
2006-07-26 18:44:33 +04:00
|
|
|
/**
|
|
|
|
* To enable SPDIF,
|
|
|
|
* - call unlock() just after ac97_attach()
|
|
|
|
* - call lock() in audio_hw_if::open()
|
|
|
|
* - call unlock() in audio_hw_if::close()
|
|
|
|
*/
|
|
|
|
void (*lock)(struct ac97_codec_if *);
|
|
|
|
void (*unlock)(struct ac97_codec_if *);
|
1999-10-27 17:18:02 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ac97_codec_if {
|
|
|
|
struct ac97_codec_if_vtbl *vtbl;
|
|
|
|
};
|
|
|
|
|
merge kent-audio1 branch, which introduces audio filter pipeline to the MI
audio framework
Summary of changes:
* struct audio_params
- remove sw_code, factor, factor_denom, hw_sample_rate,
hw_encoding ,hw_precision, and hw_channels. Conversion information
is conveyed by stream_filter_list_t.
- change the type of sample_rate: u_long -> u_int
- add `validbits,' which represents the valid data size in
precision bits. It is required in order to distinguish 24/32bit
from 24/24bit or 32/32bit.
* audio_hw_if
- add two parameters to set_params()
stream_filter_list_t *pfil, stream_filter_list *rfil
A HW driver should set filter recipes for requested formats
- constify audio_params parameters of trigger_output() and
trigger_input(). They represent audio formats for the hardware.
- make open() and close() optional
- add int (AUMODE_PLAY or AUMODE_RECORD) and audio_params_t parameters
to round_blocksize()
* sw_code is replaced with stream_filter_t.
stream_filer_t converts audio data in an input buffer and writes
into another output buffer unlike sw_code, which converts data in
single buffer.
converters in dev/auconv.c, dev/mulaw.c, dev/aurateconv.c,
dev/tc/bba.c, dev/ic/msm6258.c, and arch/arm/iomd/vidcaudio.c are
reimplemented as stream_filter_t
* MI audio
- audiosetinfo() builds filter pipelines from stream_filter_list_t
filled by audio_hw_if::set_params()
- audiosetinfo() returns with EINVAL if mmapped and set_params()
requests filters
- audio_write(), audio_pint(), and audio_rint() invoke a filter
pipeline.
- ioctl() for FIONREAD, AUDIO_WSEEK, AUDIO_GETIOFFS,
AUDIO_GETOOFFS, and audio_prinfo::{seek,samples} for
AUDIO_GETINFO handle values for a buffer nearest to userland.
* add `struct device *' parameter to ac97_attach()
* all of audio HW drivers follow audio_hw_if and ac97 changes
2005-01-11 01:01:36 +03:00
|
|
|
struct device;
|
2005-04-11 22:26:48 +04:00
|
|
|
int ac97_attach_type(struct ac97_host_if *, struct device *, int);
|
merge kent-audio1 branch, which introduces audio filter pipeline to the MI
audio framework
Summary of changes:
* struct audio_params
- remove sw_code, factor, factor_denom, hw_sample_rate,
hw_encoding ,hw_precision, and hw_channels. Conversion information
is conveyed by stream_filter_list_t.
- change the type of sample_rate: u_long -> u_int
- add `validbits,' which represents the valid data size in
precision bits. It is required in order to distinguish 24/32bit
from 24/24bit or 32/32bit.
* audio_hw_if
- add two parameters to set_params()
stream_filter_list_t *pfil, stream_filter_list *rfil
A HW driver should set filter recipes for requested formats
- constify audio_params parameters of trigger_output() and
trigger_input(). They represent audio formats for the hardware.
- make open() and close() optional
- add int (AUMODE_PLAY or AUMODE_RECORD) and audio_params_t parameters
to round_blocksize()
* sw_code is replaced with stream_filter_t.
stream_filer_t converts audio data in an input buffer and writes
into another output buffer unlike sw_code, which converts data in
single buffer.
converters in dev/auconv.c, dev/mulaw.c, dev/aurateconv.c,
dev/tc/bba.c, dev/ic/msm6258.c, and arch/arm/iomd/vidcaudio.c are
reimplemented as stream_filter_t
* MI audio
- audiosetinfo() builds filter pipelines from stream_filter_list_t
filled by audio_hw_if::set_params()
- audiosetinfo() returns with EINVAL if mmapped and set_params()
requests filters
- audio_write(), audio_pint(), and audio_rint() invoke a filter
pipeline.
- ioctl() for FIONREAD, AUDIO_WSEEK, AUDIO_GETIOFFS,
AUDIO_GETOOFFS, and audio_prinfo::{seek,samples} for
AUDIO_GETINFO handle values for a buffer nearest to userland.
* add `struct device *' parameter to ac97_attach()
* all of audio HW drivers follow audio_hw_if and ac97 changes
2005-01-11 01:01:36 +03:00
|
|
|
int ac97_attach(struct ac97_host_if *, struct device *);
|
2004-08-24 03:17:54 +04:00
|
|
|
|
2004-11-10 07:20:26 +03:00
|
|
|
#define AC97_IS_FIXED_RATE(codec) \
|
|
|
|
!((codec)->vtbl->get_extcaps(codec) & AC97_EXT_AUDIO_VRA)
|
|
|
|
#define AC97_IS_4CH(codec) \
|
|
|
|
((codec)->vtbl->get_extcaps(codec) & AC97_EXT_AUDIO_SDAC)
|
|
|
|
#define AC97_IS_6CH(codec) \
|
|
|
|
(((codec)->vtbl->get_extcaps(codec) \
|
|
|
|
& (AC97_EXT_AUDIO_SDAC | AC97_EXT_AUDIO_CDAC | AC97_EXT_AUDIO_LDAC)) \
|
|
|
|
== (AC97_EXT_AUDIO_SDAC | AC97_EXT_AUDIO_CDAC | AC97_EXT_AUDIO_LDAC))
|
2004-12-22 03:54:55 +03:00
|
|
|
#define AC97_HAS_SPDIF(codec) \
|
|
|
|
((codec)->vtbl->get_extcaps(codec) & AC97_EXT_AUDIO_SPDIF)
|
2005-04-11 22:26:48 +04:00
|
|
|
|
|
|
|
#define AC97_CODEC_TYPE_AUDIO 1
|
|
|
|
#define AC97_CODEC_TYPE_MODEM 2
|
|
|
|
|
2004-08-24 03:17:54 +04:00
|
|
|
#endif /* _DEV_IC_AC97VAR_H_ */
|