1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 ****************************************************************************/
23 /* volume/balance/treble/bass interdependency */
24 #define VOLUME_MIN -730
27 extern int tenthdb2master(int db
);
29 extern void audiohw_set_master_vol(int vol_l
, int vol_r
);
30 extern void audiohw_set_lineout_vol(int vol_l
, int vol_r
);
31 extern void audiohw_set_bass(int value
);
32 extern void audiohw_set_treble(int value
);
33 extern void audiohw_set_nsorder(int order
);
34 extern void audiohw_set_sample_rate(int sampling_control
);
36 /* Register addresses */
55 /* Register settings for the supported samplerates: */
56 #define WM8975_8000HZ 0x4d
57 #define WM8975_12000HZ 0x61
58 #define WM8975_16000HZ 0x55
59 #define WM8975_22050HZ 0x77
60 #define WM8975_24000HZ 0x79
61 #define WM8975_32000HZ 0x59
62 #define WM8975_44100HZ 0x63
63 #define WM8975_48000HZ 0x41
64 #define WM8975_88200HZ 0x7f
65 #define WM8975_96000HZ 0x5d
67 #endif /* _WM8975_H */