summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-01-11 13:58:03 +0000
committerAidan MacDonald <amachronic@protonmail.com>2022-01-16 19:17:25 -0500
commit18b3e91707e42873eab833f0f3da709062207ba7 (patch)
tree7a5ebfc65961713243b607e83fba9e3758cbcc45 /firmware
parent15e3d37110f1674ec7d52c2f055ebfad1d77b5da (diff)
downloadrockbox-18b3e91707e42873eab833f0f3da709062207ba7.tar.gz
rockbox-18b3e91707e42873eab833f0f3da709062207ba7.zip
x1000: internal codec audio driver
Change-Id: I2eb551ec6b593951c33ae6b93df2a23dc6612c43
Diffstat (limited to 'firmware')
-rw-r--r--firmware/SOURCES4
-rw-r--r--firmware/drivers/audio/x1000-codec.c286
-rw-r--r--firmware/export/audiohw.h7
-rw-r--r--firmware/export/x1000-codec.h184
4 files changed, 481 insertions, 0 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 87db67d8fd..e8f9da1a07 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -1669,6 +1669,10 @@ target/mips/ingenic_x1000/spl-start.S
1669target/mips/ingenic_x1000/spl-x1000.c 1669target/mips/ingenic_x1000/spl-x1000.c
1670common/ucl_decompress.c 1670common/ucl_decompress.c
1671#endif 1671#endif
1672#if (defined(HAVE_X1000_ICODEC_PLAY) || defined(HAVE_X1000_ICODEC_REC)) \
1673 && !defined(BOOTLOADER)
1674drivers/audio/x1000-codec.c
1675#endif
1672#endif /* CONFIG_CPU == X1000 */ 1676#endif /* CONFIG_CPU == X1000 */
1673 1677
1674#if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777) 1678#if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
diff --git a/firmware/drivers/audio/x1000-codec.c b/firmware/drivers/audio/x1000-codec.c
new file mode 100644
index 0000000000..c083882dab
--- /dev/null
+++ b/firmware/drivers/audio/x1000-codec.c
@@ -0,0 +1,286 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2021-2022 Aidan MacDonald
11 * Copyright 2014 Ingenic Semiconductor Co.,Ltd
12 * cscheng <shicheng.cheng@ingenic.com>
13 * sound/soc/ingenic/icodec/icdc_d3.c
14 * ALSA SoC Audio driver -- ingenic internal codec (icdc_d3) driver
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version 2
19 * of the License, or (at your option) any later version.
20 *
21 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22 * KIND, either express or implied.
23 *
24 ****************************************************************************/
25
26#include "x1000-codec.h"
27#include "audiohw.h"
28#include "pcm_sampr.h"
29#include "kernel.h"
30#include "x1000/aic.h"
31
32static const uint8_t fsel_to_hw[HW_NUM_FREQ] = {
33 [0 ... HW_NUM_FREQ-1] = 0,
34 HW_HAVE_8_([HW_FREQ_8] = 0,)
35 HW_HAVE_11_([HW_FREQ_11] = 1,)
36 HW_HAVE_12_([HW_FREQ_12] = 2,)
37 HW_HAVE_16_([HW_FREQ_16] = 3,)
38 HW_HAVE_22_([HW_FREQ_22] = 4,)
39 HW_HAVE_24_([HW_FREQ_24] = 5,)
40 HW_HAVE_32_([HW_FREQ_32] = 6,)
41 HW_HAVE_44_([HW_FREQ_44] = 7,)
42 HW_HAVE_48_([HW_FREQ_48] = 8,)
43 HW_HAVE_88_([HW_FREQ_88] = 9,)
44 HW_HAVE_96_([HW_FREQ_96] = 10,)
45 HW_HAVE_176_([HW_FREQ_176] = 11,)
46 HW_HAVE_192_([HW_FREQ_192] = 12,)
47};
48
49void x1000_icodec_open(void)
50{
51 /* Ingenic does not specify any timing constraints for reset,
52 * let's do a 1ms delay for fun */
53 jz_writef(AIC_RGADW, ICRST(1));
54 mdelay(1);
55 jz_writef(AIC_RGADW, ICRST(0));
56
57 /* Power-up and initial config sequence */
58 static const uint8_t init_config[] = {
59 JZCODEC_CR_VIC, 0x03, /* ensure codec is powered off */
60 JZCODEC_CR_CK, 0x40, /* MCLK_DIV=1, SHUTDOWN_CLK=0, CRYSTAL=12Mhz */
61 JZCODEC_AICR_DAC, 0x13, /* ADWL=0 (16bit word length)
62 * SLAVE=0 (i2s master mode)
63 * SB_DAC=1 (power down DAC)
64 * AUDIOIF=3 (i2s mode) */
65 JZCODEC_AICR_ADC, 0x13, /* ADWL=0 (16bit word length)
66 * SB_ADC=1 (power down ADC)
67 * AUDIOIF=3 (i2s mode)
68 */
69 JZCODEC_CR_DAC, 0x91, /* DAC mute, power down */
70 JZCODEC_CR_DAC2, 0x38, /* DAC power down */
71 JZCODEC_CR_DMIC, 0x00, /* DMIC clock off */
72 JZCODEC_CR_MIC1, 0x30, /* MIC1 power down */
73 JZCODEC_CR_MIC2, 0x30, /* MIC2 power down */
74 JZCODEC_CR_ADC, 0x90, /* ADC mute, power down */
75 JZCODEC_ICR, 0x00, /* INT_FORM=0 (high level IRQ) */
76 JZCODEC_IMR, 0xff, /* Mask all interrupts */
77 JZCODEC_IMR2, 0xff,
78 JZCODEC_IFR, 0xff, /* Clear all interrupt flags */
79 JZCODEC_IFR2, 0xff,
80 };
81
82 for(size_t i = 0; i < ARRAYLEN(init_config); i += 2)
83 x1000_icodec_write(init_config[i], init_config[i+1]);
84
85 /* SB -> 0 (power up) */
86 x1000_icodec_write(JZCODEC_CR_VIC, 0x02);
87 mdelay(250);
88
89 /* Initial gain setting. Apparently we need to set one gain and
90 * then set another after 10ms; afterward it can be changed freely. */
91 static const uint8_t gain_regs[] = {
92 JZCODEC_GCR_DACL,
93 JZCODEC_GCR_DACR,
94 JZCODEC_GCR_DACL2,
95 JZCODEC_GCR_DACR2,
96 JZCODEC_GCR_MIC1,
97 JZCODEC_GCR_MIC2,
98 JZCODEC_GCR_ADCL,
99 JZCODEC_GCR_ADCR,
100 };
101
102 for(size_t i = 0; i < ARRAYLEN(gain_regs); ++i)
103 x1000_icodec_write(gain_regs[i], 0);
104
105 mdelay(10);
106
107 for(size_t i = 0; i < ARRAYLEN(gain_regs); ++i)
108 x1000_icodec_write(gain_regs[i], 1);
109
110 /* SB_SLEEP -> 0 (exit sleep/standby mode) */
111 x1000_icodec_write(JZCODEC_CR_VIC, 0x00);
112 mdelay(200);
113}
114
115void x1000_icodec_close(void)
116{
117 /* SB_SLEEP -> 1 (enable sleep mode) */
118 x1000_icodec_write(JZCODEC_CR_VIC, 0x02);
119
120 /* SB -> 1 (power down) */
121 x1000_icodec_write(JZCODEC_CR_VIC, 0x03);
122}
123
124/*
125 * DAC configuration
126 */
127
128void x1000_icodec_dac_frequency(int fsel)
129{
130 x1000_icodec_update(JZCODEC_FCR_DAC, 0x0f, fsel_to_hw[fsel]);
131}
132
133/*
134 * ADC configuration
135 */
136
137void x1000_icodec_adc_enable(bool en)
138{
139 x1000_icodec_update(JZCODEC_AICR_ADC, 0x10, en ? 0x00 : 0x10);
140 x1000_icodec_update(JZCODEC_CR_ADC, 0x10, en ? 0x00 : 0x10);
141}
142
143void x1000_icodec_adc_mute(bool muted)
144{
145 x1000_icodec_update(JZCODEC_CR_ADC, 0x80, muted ? 0x80 : 0x00);
146}
147
148void x1000_icodec_adc_mic_sel(int sel)
149{
150 x1000_icodec_update(JZCODEC_CR_ADC, 0x40,
151 sel == JZCODEC_MIC_SEL_DIGITAL ? 0x40 : 0x00);
152}
153
154void x1000_icodec_adc_frequency(int fsel)
155{
156 x1000_icodec_update(JZCODEC_FCR_ADC, 0x0f, fsel_to_hw[fsel]);
157}
158
159void x1000_icodec_adc_highpass_filter(bool en)
160{
161 x1000_icodec_update(JZCODEC_FCR_ADC, 0x40, en ? 0x40 : 0x00);
162}
163
164void x1000_icodec_adc_gain(int gain_dB)
165{
166 if(gain_dB < X1000_ICODEC_ADC_GAIN_MIN)
167 gain_dB = X1000_ICODEC_ADC_GAIN_MIN;
168 else if(gain_dB > X1000_ICODEC_ADC_GAIN_MAX)
169 gain_dB = X1000_ICODEC_ADC_GAIN_MAX;
170
171 /* bit 7 = use the same gain for both channels */
172 x1000_icodec_write(JZCODEC_GCR_ADCL, 0x80 | gain_dB);
173}
174
175/*
176 * MIC1 configuration
177 */
178
179void x1000_icodec_mic1_enable(bool en)
180{
181 x1000_icodec_update(JZCODEC_CR_MIC1, 0x10, en ? 0x00 : 0x10);
182}
183
184void x1000_icodec_mic1_bias_enable(bool en)
185{
186 x1000_icodec_update(JZCODEC_CR_MIC1, 0x20, en ? 0x00 : 0x20);
187}
188
189void x1000_icodec_mic1_configure(int settings)
190{
191 x1000_icodec_update(JZCODEC_CR_MIC1, JZCODEC_MIC1_CONFIGURE_MASK,
192 settings & JZCODEC_MIC1_CONFIGURE_MASK);
193}
194
195void x1000_icodec_mic1_gain(int gain_dB)
196{
197 if(gain_dB < X1000_ICODEC_MIC_GAIN_MIN)
198 gain_dB = X1000_ICODEC_MIC_GAIN_MIN;
199 else if(gain_dB > X1000_ICODEC_MIC_GAIN_MAX)
200 gain_dB = X1000_ICODEC_MIC_GAIN_MAX;
201
202 x1000_icodec_write(JZCODEC_GCR_MIC1, gain_dB/X1000_ICODEC_MIC_GAIN_STEP);
203}
204
205/*
206 * Mixer configuration
207 */
208
209void x1000_icodec_mixer_enable(bool en)
210{
211 x1000_icodec_update(JZCODEC_CR_MIX, 0x80, en ? 0x80 : 0x00);
212}
213
214/*
215 * Register access
216 */
217
218static int x1000_icodec_read_direct(int reg)
219{
220 jz_writef(AIC_RGADW, ADDR(reg));
221 return jz_readf(AIC_RGDATA, DATA);
222}
223
224static void x1000_icodec_write_direct(int reg, int value)
225{
226 jz_writef(AIC_RGADW, ADDR(reg), DATA(value));
227 jz_writef(AIC_RGADW, RGWR(1));
228 while(jz_readf(AIC_RGADW, RGWR));
229}
230
231static void x1000_icodec_update_direct(int reg, int mask, int value)
232{
233 int x = x1000_icodec_read_direct(reg) & ~mask;
234 x |= value;
235 x1000_icodec_write_direct(reg, x);
236}
237
238static int x1000_icodec_read_indirect(int c_reg, int index)
239{
240 x1000_icodec_update_direct(c_reg, 0x7f, index & 0x3f);
241 return x1000_icodec_read_direct(c_reg+1);
242}
243
244static void x1000_icodec_write_indirect(int c_reg, int index, int value)
245{
246 /* NB: The X1000 programming manual says we should write the data
247 * register first, but in fact the control register needs to be
248 * written first (following Ingenic's Linux driver). */
249 x1000_icodec_update_direct(c_reg, 0x7f, 0x40 | (index & 0x3f));
250 x1000_icodec_write_direct(c_reg+1, value);
251}
252
253static void x1000_icodec_update_indirect(int c_reg, int index, int mask, int value)
254{
255 int x = x1000_icodec_read_indirect(c_reg, index) & ~mask;
256 x |= value;
257 x1000_icodec_write_indirect(c_reg, index, x);
258}
259
260int x1000_icodec_read(int reg)
261{
262 if(reg & JZCODEC_INDIRECT_BIT)
263 return x1000_icodec_read_indirect(JZCODEC_INDIRECT_CREG(reg),
264 JZCODEC_INDIRECT_INDEX(reg));
265 else
266 return x1000_icodec_read_direct(reg);
267}
268
269void x1000_icodec_write(int reg, int value)
270{
271 if(reg & JZCODEC_INDIRECT_BIT)
272 return x1000_icodec_write_indirect(JZCODEC_INDIRECT_CREG(reg),
273 JZCODEC_INDIRECT_INDEX(reg), value);
274 else
275 return x1000_icodec_write_direct(reg, value);
276}
277
278void x1000_icodec_update(int reg, int mask, int value)
279{
280 if(reg & JZCODEC_INDIRECT_BIT)
281 return x1000_icodec_update_indirect(JZCODEC_INDIRECT_CREG(reg),
282 JZCODEC_INDIRECT_INDEX(reg),
283 mask, value);
284 else
285 return x1000_icodec_update_direct(reg, mask, value);
286}
diff --git a/firmware/export/audiohw.h b/firmware/export/audiohw.h
index 3f1bcb6feb..a365b97828 100644
--- a/firmware/export/audiohw.h
+++ b/firmware/export/audiohw.h
@@ -192,6 +192,8 @@ struct sound_settings_info
192#include "tsc2100.h" 192#include "tsc2100.h"
193#elif defined(HAVE_JZ4740_CODEC) 193#elif defined(HAVE_JZ4740_CODEC)
194#include "jz4740-codec.h" 194#include "jz4740-codec.h"
195#elif defined(HAVE_X1000_ICODEC_PLAY)
196#include "x1000-codec.h"
195#elif defined(HAVE_AK4537) 197#elif defined(HAVE_AK4537)
196#include "ak4537.h" 198#include "ak4537.h"
197#elif defined(HAVE_AK4376) 199#elif defined(HAVE_AK4376)
@@ -237,6 +239,11 @@ struct sound_settings_info
237#include "erosqlinux_codec.h" 239#include "erosqlinux_codec.h"
238#endif 240#endif
239 241
242#if defined(HAVE_X1000_ICODEC_REC) && !defined(HAVE_X1000_ICODEC_PLAY)
243/* Targets may have an external DAC above, but use icodec for recording only */
244#include "x1000-codec.h"
245#endif
246
240/* convert caps into defines */ 247/* convert caps into defines */
241#ifdef AUDIOHW_CAPS 248#ifdef AUDIOHW_CAPS
242/* Tone controls */ 249/* Tone controls */
diff --git a/firmware/export/x1000-codec.h b/firmware/export/x1000-codec.h
new file mode 100644
index 0000000000..cfc71dbd60
--- /dev/null
+++ b/firmware/export/x1000-codec.h
@@ -0,0 +1,184 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2021-2022 Aidan MacDonald
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef __X1000_CODEC_H__
23#define __X1000_CODEC_H__
24
25#include "config.h"
26#include <stdbool.h>
27
28/* Note: the internal X1000 codec supports playback and record, but devices
29 * can employ an external codec for one and the internal codec for the other.
30 * The caveat, in this case, is that only one codec can be used at a time
31 * because the HW cannot mux playback/record independently.
32 *
33 * At present only recording is implemented, since all X1000 ports use an
34 * external DAC for playback.
35 */
36
37#ifdef HAVE_X1000_ICODEC_PLAY
38# error "X1000 icodec playback not implemented"
39#endif
40
41#define X1000_ICODEC_ADC_GAIN_MIN 0
42#define X1000_ICODEC_ADC_GAIN_MAX 43
43#define X1000_ICODEC_ADC_GAIN_STEP 1
44
45#define X1000_ICODEC_MIC_GAIN_MIN 0
46#define X1000_ICODEC_MIC_GAIN_MAX 20
47#define X1000_ICODEC_MIC_GAIN_STEP 4
48
49#ifdef HAVE_X1000_ICODEC_REC
50AUDIOHW_SETTING(MIC_GAIN, "dB", 0, 1, 0, 63, 12)
51#endif
52
53#define JZCODEC_INDIRECT_CREG(r) ((r) & 0xff)
54#define JZCODEC_INDIRECT_INDEX(r) (((r) >> 8) & 0x7)
55#define JZCODEC_INDIRECT_BIT 0x800
56
57#define JZCODEC_INDIRECT(c, i) (JZCODEC_INDIRECT_BIT | ((i) << 8) | (c))
58
59/* Codec registers from Ingenic's kernel sources. The datasheet is badly
60 * screwed up and the addresses listed cannot be trusted. */
61enum {
62 JZCODEC_SR = 0,
63 JZCODEC_SR2,
64 JZCODEC_SIGR,
65 JZCODEC_SIGR2,
66 JZCODEC_SIGR3,
67 JZCODEC_SIGR5,
68 JZCODEC_SIGR7,
69 JZCODEC_MR,
70 JZCODEC_AICR_DAC,
71 JZCODEC_AICR_ADC,
72 JZCODEC_CR_DMIC,
73 JZCODEC_CR_MIC1,
74 JZCODEC_CR_MIC2,
75 JZCODEC_CR_DAC,
76 JZCODEC_CR_DAC2,
77 JZCODEC_CR_ADC,
78 JZCODEC_CR_MIX,
79 JZCODEC_DR_MIX,
80 JZCODEC_CR_VIC,
81 JZCODEC_CR_CK,
82 JZCODEC_FCR_DAC,
83 JZCODEC_SFCCR_DAC,
84 JZCODEC_SFFCR_DAC,
85 JZCODEC_FCR_ADC,
86 JZCODEC_CR_TIMER_MSB,
87 JZCODEC_CR_TIMER_LSB,
88 JZCODEC_ICR,
89 JZCODEC_IMR,
90 JZCODEC_IFR,
91 JZCODEC_IMR2,
92 JZCODEC_IFR2,
93 JZCODEC_GCR_DACL,
94 JZCODEC_GCR_DACR,
95 JZCODEC_GCR_DACL2,
96 JZCODEC_GCR_DACR2,
97 JZCODEC_GCR_MIC1,
98 JZCODEC_GCR_MIC2,
99 JZCODEC_GCR_ADCL,
100 JZCODEC_GCR_ADCR,
101 JZCODEC_GCR_MIXDACL,
102 JZCODEC_GCR_MIXDACR,
103 JZCODEC_GCR_MIXADCL,
104 JZCODEC_GCR_MIXADCR,
105 JZCODEC_CR_DAC_AGC,
106 JZCODEC_DR_DAC_AGC,
107 JZCODEC_CR_DAC2_AGC,
108 JZCODEC_DR_DAC2_AGC,
109 JZCODEC_CR_ADC_AGC,
110 JZCODEC_DR_ADC_AGC,
111 JZCODEC_SR_ADC_AGCDGL,
112 JZCODEC_SR_ADC_AGCDGR,
113 JZCODEC_SR_ADC_AGCAGL,
114 JZCODEC_SR_ADC_AGCAGR,
115 JZCODEC_CR_TR,
116 JZCODEC_DR_TR,
117 JZCODEC_SR_TR1,
118 JZCODEC_SR_TR2,
119 JZCODEC_SR_TR_SRCDAC,
120
121 JZCODEC_MIX0 = JZCODEC_INDIRECT(JZCODEC_CR_MIX, 0),
122 JZCODEC_MIX1 = JZCODEC_INDIRECT(JZCODEC_CR_MIX, 1),
123 JZCODEC_MIX2 = JZCODEC_INDIRECT(JZCODEC_CR_MIX, 2),
124 JZCODEC_MIX3 = JZCODEC_INDIRECT(JZCODEC_CR_MIX, 3),
125 JZCODEC_MIX4 = JZCODEC_INDIRECT(JZCODEC_CR_MIX, 4),
126
127 JZCODEC_DAC_AGC0 = JZCODEC_INDIRECT(JZCODEC_CR_DAC_AGC, 0),
128 JZCODEC_DAC_AGC1 = JZCODEC_INDIRECT(JZCODEC_CR_DAC_AGC, 1),
129 JZCODEC_DAC_AGC2 = JZCODEC_INDIRECT(JZCODEC_CR_DAC_AGC, 2),
130 JZCODEC_DAC_AGC3 = JZCODEC_INDIRECT(JZCODEC_CR_DAC_AGC, 3),
131
132 JZCODEC_DAC2_AGC0 = JZCODEC_INDIRECT(JZCODEC_CR_DAC2_AGC, 0),
133 JZCODEC_DAC2_AGC1 = JZCODEC_INDIRECT(JZCODEC_CR_DAC2_AGC, 1),
134 JZCODEC_DAC2_AGC2 = JZCODEC_INDIRECT(JZCODEC_CR_DAC2_AGC, 2),
135 JZCODEC_DAC2_AGC3 = JZCODEC_INDIRECT(JZCODEC_CR_DAC2_AGC, 3),
136
137 JZCODEC_ADC_AGC0 = JZCODEC_INDIRECT(JZCODEC_CR_ADC_AGC, 0),
138 JZCODEC_ADC_AGC1 = JZCODEC_INDIRECT(JZCODEC_CR_ADC_AGC, 1),
139 JZCODEC_ADC_AGC2 = JZCODEC_INDIRECT(JZCODEC_CR_ADC_AGC, 2),
140 JZCODEC_ADC_AGC3 = JZCODEC_INDIRECT(JZCODEC_CR_ADC_AGC, 3),
141 JZCODEC_ADC_AGC4 = JZCODEC_INDIRECT(JZCODEC_CR_ADC_AGC, 4),
142};
143
144/* for use with x1000_icodec_mic1_configure() */
145enum {
146 JZCODEC_MIC1_SINGLE_ENDED = (0 << 6),
147 JZCODEC_MIC1_DIFFERENTIAL = (1 << 6),
148
149 JZCODEC_MIC1_BIAS_2_08V = (0 << 3),
150 JZCODEC_MIC1_BIAS_1_66V = (1 << 3),
151
152 JZCODEC_MIC1_CONFIGURE_MASK = (1 << 6) | (1 << 3),
153};
154
155/* for use with x1000_icodec_adc_mic_sel() */
156enum {
157 JZCODEC_MIC_SEL_ANALOG,
158 JZCODEC_MIC_SEL_DIGITAL,
159};
160
161extern void x1000_icodec_open(void);
162extern void x1000_icodec_close(void);
163
164extern void x1000_icodec_dac_frequency(int fsel);
165
166extern void x1000_icodec_adc_enable(bool en);
167extern void x1000_icodec_adc_mute(bool muted);
168extern void x1000_icodec_adc_mic_sel(int sel);
169extern void x1000_icodec_adc_frequency(int fsel);
170extern void x1000_icodec_adc_highpass_filter(bool en);
171extern void x1000_icodec_adc_gain(int gain_dB);
172
173extern void x1000_icodec_mic1_enable(bool en);
174extern void x1000_icodec_mic1_bias_enable(bool en);
175extern void x1000_icodec_mic1_configure(int settings);
176extern void x1000_icodec_mic1_gain(int gain_dB);
177
178extern void x1000_icodec_mixer_enable(bool en);
179
180extern int x1000_icodec_read(int reg);
181extern void x1000_icodec_write(int reg, int value);
182extern void x1000_icodec_update(int reg, int mask, int value);
183
184#endif /* __X1000_CODEC_H__ */