D2: Make the nand driver's sanity checks a little more... sane. This should allow...
[kugel-rb.git] / firmware / export / wm8985.h
blob56c7f8d4053d5b7f7ff2edafe0f0857e781ad2e8
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Dave Chapman
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #ifndef _WM8985_H
21 #define _WM8985_H
23 /* volume/balance/treble/bass interdependency */
24 #define VOLUME_MIN -570
25 #define VOLUME_MAX 60
27 #define AUDIOHW_CAPS (BASS_CAP | TREBLE_CAP | BASS_CUTOFF_CAP | TREBLE_CUTOFF_CAP)
29 extern int tenthdb2master(int db);
31 extern void audiohw_set_headphone_vol(int vol_l, int vol_r);
32 extern void audiohw_set_lineout_vol(int vol_l, int vol_r);
34 #endif /* _WM8985_H */