blob: 13eccb97633a35ede1e518484b8cca1f8a366b14 [file] [log] [blame]
Dave Chapman9581ad32006-02-13 13:48:08 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2005 by Dave Chapman
11 *
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.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#ifndef _WM8758_H
21#define _WM8758_H
22
23extern void wmcodec_reset(void);
24extern int wmcodec_init(void);
25extern void wmcodec_enable_output(bool enable);
26extern int wmcodec_set_master_vol(int vol_l, int vol_r);
Thom Johansen473fc2b2006-03-22 13:04:49 +000027extern int wmcodec_set_lineout_vol(int vol_l, int vol_r);
Dave Chapman9581ad32006-02-13 13:48:08 +000028extern int wmcodec_set_mixer_vol(int channel1, int channel2);
29extern void wmcodec_set_bass(int value);
30extern void wmcodec_set_treble(int value);
31extern int wmcodec_mute(int mute);
32extern void wmcodec_close(void);
33extern void wmcodec_set_nsorder(int order);
34extern void wmcodec_set_sample_rate(int sampling_control);
35
36extern void wmcodec_enable_recording(bool source_mic);
37extern void wmcodec_disable_recording(void);
38extern void wmcodec_set_recvol(int left, int right, int type);
39extern void wmcodec_set_monitor(int enable);
40
41#define RESET 0x00
42#define PWRMGMT1 0x01
43#define PWRMGMT2 0x02
44#define PWRMGMT3 0x03
45#define AINTFCE 0x04
46#define CLKCTRL 0x06
47#define SRATECTRL 0x07
48#define DACCTRL 0x0a
49#define OUTCTRL 0x31
50#define LOUTMIX 0x32
51#define ROUTMIX 0x33
52
53#define LOUT1VOL 0x34
54#define ROUT1VOL 0x35
55#define LOUT2VOL 0x36
56#define ROUT2VOL 0x37
57
58#define PLLN 0x24
59#define PLLK1 0x25
60#define PLLK2 0x26
61#define PLLK3 0x27
62
63/* Register settings for the supported samplerates: */
64#define WM8758_8000HZ 0x4d
65#define WM8758_12000HZ 0x61
66#define WM8758_16000HZ 0x55
67#define WM8758_22050HZ 0x77
68#define WM8758_24000HZ 0x79
69#define WM8758_32000HZ 0x59
70#define WM8758_44100HZ 0x63
71#define WM8758_48000HZ 0x41
72#define WM8758_88200HZ 0x7f
73#define WM8758_96000HZ 0x5d
74
75#endif /* _WM8758_H */