Remove .a files before running ar, to avoid problems with renamed files remaining...
[kugel-rb.git] / firmware / export / audiohw.h
blob171358c325a0de6a10717c33966ace0e749dae5d
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 by Christian Gmeiner
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef _AUDIOHW_H_
23 #define _AUDIOHW_H_
25 #include "config.h"
26 #include <stdbool.h>
28 /* define some audiohw caps */
29 #define TREBLE_CAP (1 << 0)
30 #define BASS_CAP (1 << 1)
31 #define BALANCE_CAP (1 << 2)
32 #define CLIPPING_CAP (1 << 3)
33 #define PRESCALER_CAP (1 << 4)
34 #define BASS_CUTOFF_CAP (1 << 5)
35 #define TREBLE_CUTOFF_CAP (1 << 6)
37 #ifdef HAVE_UDA1380
38 #include "uda1380.h"
39 #elif defined(HAVE_WM8751)
40 #include "wm8751.h"
41 #elif defined(HAVE_WM8978)
42 #include "wm8978.h"
43 #elif defined(HAVE_WM8975)
44 #include "wm8975.h"
45 #elif defined(HAVE_WM8985)
46 #include "wm8985.h"
47 #elif defined(HAVE_WM8758)
48 #include "wm8758.h"
49 #elif defined(HAVE_WM8721)
50 #include "wm8721.h"
51 #elif defined(HAVE_WM8731)
52 #include "wm8731.h"
53 #elif defined(HAVE_TLV320)
54 #include "tlv320.h"
55 #elif defined(HAVE_AS3514)
56 #include "as3514.h"
57 #elif defined(HAVE_MAS35XX)
58 #include "mas35xx.h"
59 #elif defined(HAVE_TSC2100)
60 #include "tsc2100.h"
61 #endif
63 /* convert caps into defines */
64 #ifdef AUDIOHW_CAPS
65 #if (AUDIOHW_CAPS & TREBLE_CAP)
66 #define AUDIOHW_HAVE_TREBLE
67 #endif
69 #if (AUDIOHW_CAPS & BASS_CAP)
70 #define AUDIOHW_HAVE_BASS
71 #endif
73 #if (AUDIOHW_CAPS & BALANCE_CAP)
74 #define AUDIOHW_HAVE_BALANCE
75 #endif
77 #if (AUDIOHW_CAPS & CLIPPING_CAP)
78 #define AUDIOHW_HAVE_CLIPPING
79 #endif
81 #if (AUDIOHW_CAPS & PRESCALER_CAP)
82 #define AUDIOHW_HAVE_PRESCALER
83 #endif
85 #if (AUDIOHW_CAPS & BASS_CUTOFF_CAP)
86 #define AUDIOHW_HAVE_BASS_CUTOFF
87 #endif
89 #if (AUDIOHW_CAPS & TREBLE_CUTOFF_CAP)
90 #define AUDIOHW_HAVE_TREBLE_CUTOFF
91 #endif
92 #endif /* AUDIOHW_CAPS */
94 enum {
95 SOUND_VOLUME = 0,
96 SOUND_BASS,
97 SOUND_TREBLE,
98 SOUND_BALANCE,
99 SOUND_CHANNELS,
100 SOUND_STEREO_WIDTH,
101 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
102 SOUND_LOUDNESS,
103 SOUND_AVC,
104 SOUND_MDB_STRENGTH,
105 SOUND_MDB_HARMONICS,
106 SOUND_MDB_CENTER,
107 SOUND_MDB_SHAPE,
108 SOUND_MDB_ENABLE,
109 SOUND_SUPERBASS,
110 #endif
111 #if defined(HAVE_RECORDING)
112 SOUND_LEFT_GAIN,
113 SOUND_RIGHT_GAIN,
114 SOUND_MIC_GAIN,
115 #endif
116 #if defined(AUDIOHW_HAVE_BASS_CUTOFF)
117 SOUND_BASS_CUTOFF,
118 #endif
119 #if defined(AUDIOHW_HAVE_TREBLE_CUTOFF)
120 SOUND_TREBLE_CUTOFF,
121 #endif
124 enum Channel {
125 SOUND_CHAN_STEREO,
126 SOUND_CHAN_MONO,
127 SOUND_CHAN_CUSTOM,
128 SOUND_CHAN_MONO_LEFT,
129 SOUND_CHAN_MONO_RIGHT,
130 SOUND_CHAN_KARAOKE,
131 SOUND_CHAN_NUM_MODES,
134 struct sound_settings_info {
135 const char *unit;
136 char numdecimals;
137 char steps;
138 short minval;
139 short maxval;
140 short defaultval;
143 /* This struct is used by every driver to export its min/max/default values for
144 * its audio settings. Keep in mind that the order must be correct! */
145 extern const struct sound_settings_info audiohw_settings[];
147 /* All usable functions implemented by a audio codec drivers. Most of
148 * the function in sound settings are only called, when in audio codecs
149 * .h file suitable defines are added.
153 * Initialize audio codec to a well defined state.
155 void audiohw_init(void);
158 * Do initial audio codec setup.
160 void audiohw_preinit(void);
163 * Do some stuff (codec related) after audiohw_init that needs to be
164 * delayed such as enabling outputs to prevent popping. This lets
165 * other inits in the system complete in the meantime.
167 void audiohw_postinit(void);
170 * Close audio codec.
172 void audiohw_close(void);
174 #ifdef AUDIOHW_HAVE_CLIPPING
176 * Set new volume value
177 * @param val to set.
178 * NOTE: AUDIOHW_CAPS need to contain
179 * CLIPPING_CAP
181 void audiohw_set_volume(int val);
182 #endif
184 #ifdef AUDIOHW_HAVE_PRESCALER
186 * Set new prescaler value.
187 * @param val to set.
188 * NOTE: AUDIOHW_CAPS need to contain
189 * PRESCALER_CAP
191 void audiohw_set_prescaler(int val);
192 #endif
194 #ifdef AUDIOHW_HAVE_BALANCE
196 * Set new balance value
197 * @param val to set.
198 * NOTE: AUDIOHW_CAPS need to contain
199 * BALANCE_CAP
201 void audiohw_set_balance(int val);
202 #endif
205 * Mute or enable sound.
206 * @param mute true or false.
208 void audiohw_mute(bool mute);
211 * Silently en/disable audio output.
212 * @param enable true or false.
214 void audiohw_enable_output(bool enable);
216 #ifdef AUDIOHW_HAVE_TREBLE
218 * Set new treble value.
219 * @param val to set.
220 * NOTE: AUDIOHW_CAPS need to contain
221 * TREBLE_CAP
223 void audiohw_set_treble(int val);
224 #endif
226 #ifdef AUDIOHW_HAVE_BASS
228 * Set new bass value.
229 * @param val to set.
230 * NOTE: AUDIOHW_CAPS need to contain
231 * BASS_CAP
233 void audiohw_set_bass(int val);
234 #endif
236 #ifdef AUDIOHW_HAVE_BASS_CUTOFF
238 * Set new bass cut off value.
239 * @param val to set.
240 * NOTE: AUDIOHW_CAPS need to contain
241 * BASS_CUTOFF_CAP
243 void audiohw_set_bass_cutoff(int val);
244 #endif
246 #ifdef AUDIOHW_HAVE_TREBLE_CUTOFF
248 * Set new treble cut off value.
249 * @param val to set.
250 * NOTE: AUDIOHW_CAPS need to contain
251 * TREBLE_CUTOFF_CAP
253 void audiohw_set_treble_cutoff(int val);
254 #endif
256 #ifdef HAVE_RECORDING
259 * Enable recording.
260 * @param source_mic if this is true, we want to record from microphone,
261 * else we want to record FM/LineIn.
263 void audiohw_enable_recording(bool source_mic);
266 * Disable recording.
268 void audiohw_disable_recording(void);
271 * Set gain of recording source.
272 * @param left gain value.
273 * @param right will not be used if recording from micophone (mono).
274 * @param type AUDIO_GAIN_MIC, AUDIO_GAIN_LINEIN.
276 void audiohw_set_recvol(int left, int right, int type);
279 * Enable or disable recording monitor.
280 * @param enable ture or false.
282 void audiohw_set_monitor(bool enable);
284 #endif /*HAVE_RECORDING*/
287 #if CONFIG_CODEC != SWCODEC
289 /* functions which are only used by mas35xx codecs, but are also
290 aviable on SWCODECS through dsp */
293 * Set channel configuration.
294 * @param val new channel value (see enum Channel).
296 void audiohw_set_channel(int val);
299 * Set stereo width.
300 * @param val new stereo width value.
302 void audiohw_set_stereo_width(int val);
304 #endif /* CONFIG_CODEC != SWCODEC */
306 #endif /* _AUDIOHW_H_ */