1 /*
2  * 88pm860x-codec.h -- 88PM860x ALSA SoC Audio Driver
3  *
4  * Copyright 2010 Marvell International Ltd.
5  *	Haojian Zhuang <haojian.zhuang@marvell.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11 
12 #ifndef __88PM860X_H
13 #define __88PM860X_H
14 
15 /* The offset of these registers are 0xb0 */
16 #define PM860X_PCM_IFACE_1		0x00
17 #define PM860X_PCM_IFACE_2		0x01
18 #define PM860X_PCM_IFACE_3		0x02
19 #define PM860X_PCM_RATE			0x03
20 #define PM860X_EC_PATH			0x04
21 #define PM860X_SIDETONE_L_GAIN		0x05
22 #define PM860X_SIDETONE_R_GAIN		0x06
23 #define PM860X_SIDETONE_SHIFT		0x07
24 #define PM860X_ADC_OFFSET_1		0x08
25 #define PM860X_ADC_OFFSET_2		0x09
26 #define PM860X_DMIC_DELAY		0x0a
27 
28 #define PM860X_I2S_IFACE_1		0x0b
29 #define PM860X_I2S_IFACE_2		0x0c
30 #define PM860X_I2S_IFACE_3		0x0d
31 #define PM860X_I2S_IFACE_4		0x0e
32 #define PM860X_EQUALIZER_N0_1		0x0f
33 #define PM860X_EQUALIZER_N0_2		0x10
34 #define PM860X_EQUALIZER_N1_1		0x11
35 #define PM860X_EQUALIZER_N1_2		0x12
36 #define PM860X_EQUALIZER_D1_1		0x13
37 #define PM860X_EQUALIZER_D1_2		0x14
38 #define PM860X_LOFI_GAIN_LEFT		0x15
39 #define PM860X_LOFI_GAIN_RIGHT		0x16
40 #define PM860X_HIFIL_GAIN_LEFT		0x17
41 #define PM860X_HIFIL_GAIN_RIGHT		0x18
42 #define PM860X_HIFIR_GAIN_LEFT		0x19
43 #define PM860X_HIFIR_GAIN_RIGHT		0x1a
44 #define PM860X_DAC_OFFSET		0x1b
45 #define PM860X_OFFSET_LEFT_1		0x1c
46 #define PM860X_OFFSET_LEFT_2		0x1d
47 #define PM860X_OFFSET_RIGHT_1		0x1e
48 #define PM860X_OFFSET_RIGHT_2		0x1f
49 #define PM860X_ADC_ANA_1		0x20
50 #define PM860X_ADC_ANA_2		0x21
51 #define PM860X_ADC_ANA_3		0x22
52 #define PM860X_ADC_ANA_4		0x23
53 #define PM860X_ANA_TO_ANA		0x24
54 #define PM860X_HS1_CTRL			0x25
55 #define PM860X_HS2_CTRL			0x26
56 #define PM860X_LO1_CTRL			0x27
57 #define PM860X_LO2_CTRL			0x28
58 #define PM860X_EAR_CTRL_1		0x29
59 #define PM860X_EAR_CTRL_2		0x2a
60 #define PM860X_AUDIO_SUPPLIES_1		0x2b
61 #define PM860X_AUDIO_SUPPLIES_2		0x2c
62 #define PM860X_ADC_EN_1			0x2d
63 #define PM860X_ADC_EN_2			0x2e
64 #define PM860X_DAC_EN_1			0x2f
65 #define PM860X_DAC_EN_2			0x31
66 #define PM860X_AUDIO_CAL_1		0x32
67 #define PM860X_AUDIO_CAL_2		0x33
68 #define PM860X_AUDIO_CAL_3		0x34
69 #define PM860X_AUDIO_CAL_4		0x35
70 #define PM860X_AUDIO_CAL_5		0x36
71 #define PM860X_ANA_INPUT_SEL_1		0x37
72 #define PM860X_ANA_INPUT_SEL_2		0x38
73 
74 #define PM860X_PCM_IFACE_4		0x39
75 #define PM860X_I2S_IFACE_5		0x3a
76 
77 #define PM860X_SHORTS			0x3b
78 #define PM860X_PLL_ADJ_1		0x3c
79 #define PM860X_PLL_ADJ_2		0x3d
80 
81 /* bits definition */
82 #define PM860X_CLK_DIR_IN		0
83 #define PM860X_CLK_DIR_OUT		1
84 
85 #define PM860X_DET_HEADSET		(1 << 0)
86 #define PM860X_DET_MIC			(1 << 1)
87 #define PM860X_DET_HOOK			(1 << 2)
88 #define PM860X_SHORT_HEADSET		(1 << 3)
89 #define PM860X_SHORT_LINEOUT		(1 << 4)
90 #define PM860X_DET_MASK			0x1F
91 
92 extern int pm860x_hs_jack_detect(struct snd_soc_codec *, struct snd_soc_jack *,
93 				 int, int, int, int);
94 extern int pm860x_mic_jack_detect(struct snd_soc_codec *, struct snd_soc_jack *,
95 				  int);
96 
97 #endif	/* __88PM860X_H */
98