2007-05-22 15:56:05 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Christian Gmeiner
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _AUDIOHW_H_
|
|
|
|
#define _AUDIOHW_H_
|
|
|
|
|
|
|
|
#include "config.h"
|
2007-06-13 06:33:40 +00:00
|
|
|
#include <stdbool.h>
|
2007-05-22 15:56:05 +00:00
|
|
|
|
2007-05-22 20:17:35 +00:00
|
|
|
#ifdef HAVE_UDA1380
|
|
|
|
#include "uda1380.h"
|
|
|
|
#elif defined(HAVE_WM8751)
|
|
|
|
#include "wm8751.h"
|
2007-09-21 15:51:53 +00:00
|
|
|
#elif defined(HAVE_WM8975) || defined(HAVE_WM8978)
|
2007-05-22 20:17:35 +00:00
|
|
|
#include "wm8975.h"
|
2008-01-14 22:04:48 +00:00
|
|
|
#elif defined(HAVE_WM8985)
|
|
|
|
#include "wm8985.h"
|
2007-05-22 20:17:35 +00:00
|
|
|
#elif defined(HAVE_WM8758)
|
|
|
|
#include "wm8758.h"
|
2007-10-02 07:48:50 +00:00
|
|
|
#elif defined(HAVE_WM8721)
|
|
|
|
#include "wm8721.h"
|
|
|
|
#elif defined(HAVE_WM8731)
|
|
|
|
#include "wm8731.h"
|
2007-05-22 20:17:35 +00:00
|
|
|
#elif defined(HAVE_TLV320)
|
|
|
|
#include "tlv320.h"
|
|
|
|
#elif defined(HAVE_AS3514)
|
|
|
|
#include "as3514.h"
|
|
|
|
#elif defined(HAVE_MAS35XX)
|
|
|
|
#include "mas35xx.h"
|
|
|
|
#endif
|
|
|
|
|
2007-05-22 15:56:05 +00:00
|
|
|
enum {
|
|
|
|
SOUND_VOLUME = 0,
|
|
|
|
SOUND_BASS,
|
|
|
|
SOUND_TREBLE,
|
|
|
|
SOUND_BALANCE,
|
|
|
|
SOUND_CHANNELS,
|
|
|
|
SOUND_STEREO_WIDTH,
|
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
|
|
|
SOUND_LOUDNESS,
|
|
|
|
SOUND_AVC,
|
|
|
|
SOUND_MDB_STRENGTH,
|
|
|
|
SOUND_MDB_HARMONICS,
|
|
|
|
SOUND_MDB_CENTER,
|
|
|
|
SOUND_MDB_SHAPE,
|
|
|
|
SOUND_MDB_ENABLE,
|
|
|
|
SOUND_SUPERBASS,
|
|
|
|
#endif
|
|
|
|
#if CONFIG_CODEC == MAS3587F || defined(HAVE_UDA1380) || defined(HAVE_TLV320)\
|
2007-06-05 07:03:30 +00:00
|
|
|
|| defined(HAVE_WM8975) || defined(HAVE_WM8758) || defined(HAVE_WM8731) \
|
2008-01-14 22:04:48 +00:00
|
|
|
|| defined(HAVE_AS3514) || defined(HAVE_WM8978) || defined(HAVE_WM8985)
|
2007-05-22 15:56:05 +00:00
|
|
|
SOUND_LEFT_GAIN,
|
|
|
|
SOUND_RIGHT_GAIN,
|
|
|
|
SOUND_MIC_GAIN,
|
|
|
|
#endif
|
2007-11-24 07:51:00 +00:00
|
|
|
#ifdef HAVE_WM8758
|
|
|
|
SOUND_BASS_CUTOFF,
|
|
|
|
SOUND_TREBLE_CUTOFF,
|
|
|
|
#endif
|
2007-05-22 15:56:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum Channel {
|
|
|
|
SOUND_CHAN_STEREO,
|
|
|
|
SOUND_CHAN_MONO,
|
|
|
|
SOUND_CHAN_CUSTOM,
|
|
|
|
SOUND_CHAN_MONO_LEFT,
|
|
|
|
SOUND_CHAN_MONO_RIGHT,
|
|
|
|
SOUND_CHAN_KARAOKE,
|
|
|
|
SOUND_CHAN_NUM_MODES,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sound_settings_info {
|
|
|
|
const char *unit;
|
|
|
|
int numdecimals;
|
|
|
|
int steps;
|
|
|
|
int minval;
|
|
|
|
int maxval;
|
|
|
|
int defaultval;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* This struct is used by every driver to export its min/max/default values for
|
|
|
|
* its audio settings. Keep in mind that the order must be correct! */
|
|
|
|
extern const struct sound_settings_info audiohw_settings[];
|
|
|
|
|
2007-06-11 23:39:07 +00:00
|
|
|
/* All usable functions implemented by a audio codec drivers. Most of
|
|
|
|
* the function in sound settings are only called, when in audio codecs
|
|
|
|
* .h file suitable defines are added.
|
|
|
|
*/
|
|
|
|
|
2007-06-13 06:33:40 +00:00
|
|
|
/**
|
|
|
|
* Initialize audio codec to a well defined state.
|
|
|
|
*/
|
|
|
|
void audiohw_init(void);
|
|
|
|
|
2008-02-12 20:40:53 +00:00
|
|
|
/**
|
|
|
|
* Do some stuff (codec related) after audiohw_init.
|
|
|
|
*/
|
|
|
|
void audiohw_postinit(void);
|
|
|
|
|
2007-06-13 06:33:40 +00:00
|
|
|
/**
|
|
|
|
* Close audio codec.
|
|
|
|
*/
|
|
|
|
void audiohw_close(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mute or enable sound.
|
2007-11-19 15:50:52 +00:00
|
|
|
* @param mute true or false.
|
2007-06-13 06:33:40 +00:00
|
|
|
*/
|
|
|
|
void audiohw_mute(bool mute);
|
2007-06-11 23:39:07 +00:00
|
|
|
|
2008-02-09 14:43:36 +00:00
|
|
|
/**
|
|
|
|
* Silently en/disable audio output.
|
|
|
|
* @param enable true or false.
|
|
|
|
*/
|
|
|
|
void audiohw_enable_output(bool enable);
|
|
|
|
|
2007-11-19 15:50:52 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable recording.
|
|
|
|
* @param source_mic if this is true, we want to record from microphone,
|
|
|
|
* else we want to record FM/LineIn.
|
|
|
|
*/
|
|
|
|
void audiohw_enable_recording(bool source_mic);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable recording.
|
|
|
|
*/
|
|
|
|
void audiohw_disable_recording(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set gain of recording source.
|
|
|
|
* @param left gain value.
|
|
|
|
* @param right will not be used if recording from micophone (mono).
|
|
|
|
* @param type AUDIO_GAIN_MIC, AUDIO_GAIN_LINEIN.
|
|
|
|
*/
|
|
|
|
void audiohw_set_recvol(int left, int right, int type);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable or disable recording monitor.
|
|
|
|
* @param enable ture or false.
|
|
|
|
*/
|
|
|
|
void audiohw_set_monitor(bool enable);
|
|
|
|
|
|
|
|
#endif /*HAVE_RECORDING*/
|
|
|
|
|
2007-05-22 15:56:05 +00:00
|
|
|
#endif /* _AUDIOHW_H_ */
|