When setting a cache path also enable the cache implicitly.
[Rockbox.git] / firmware / export / wm8975.h
blob6457f255f6f1a3f6cb55f1f8695eff1f51127737
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 _WM8975_H
21 #define _WM8975_H
23 /* volume/balance/treble/bass interdependency */
24 #define VOLUME_MIN -730
25 #define VOLUME_MAX 60
27 #define AUDIOHW_CAPS (BASS_CAP | TREBLE_CAP)
29 extern int tenthdb2master(int db);
31 extern void audiohw_set_master_vol(int vol_l, int vol_r);
32 extern void audiohw_set_lineout_vol(int vol_l, int vol_r);
33 extern void audiohw_set_nsorder(int order);
34 extern void audiohw_set_sample_rate(int sampling_control);
36 /* Register addresses */
37 #define LOUT1VOL 0x02
38 #define ROUT1VOL 0x03
39 #define DACCTRL 0x05
40 #define AINTFCE 0x07
41 #define BASSCTRL 0x0c
42 #define TREBCTRL 0x0d
43 #define RESET 0x0f
44 #define PWRMGMT1 0x19
45 #define PWRMGMT2 0x1a
46 #define LOUTMIX1 0x22
47 #define LOUTMIX2 0x23
48 #define ROUTMIX1 0x24
49 #define ROUTMIX2 0x25
50 #define MOUTMIX1 0x26
51 #define MOUTMIX2 0x27
52 #define LOUT2VOL 0x28
53 #define ROUT2VOL 0x29
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 */