summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/as3514.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/audio/as3514.c')
-rw-r--r--firmware/drivers/audio/as3514.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/drivers/audio/as3514.c b/firmware/drivers/audio/as3514.c
index dc6efb511a..b7c99f433b 100644
--- a/firmware/drivers/audio/as3514.c
+++ b/firmware/drivers/audio/as3514.c
@@ -182,8 +182,13 @@ void audiohw_preinit(void)
182 as3514_write(AS3514_HPH_OUT_L, 182 as3514_write(AS3514_HPH_OUT_L,
183 HPH_OUT_L_HP_ON | HPH_OUT_L_HP_MUTE | 0x00); 183 HPH_OUT_L_HP_ON | HPH_OUT_L_HP_MUTE | 0x00);
184 184
185#ifdef PHILIPS_SA9200
186 /* LRCK 8-23kHz (there are audible clicks while reading the ADC otherwise) */
187 as3514_write(AS3514_PLLMODE, PLLMODE_LRCK_8_23);
188#else
185 /* LRCK 24-48kHz */ 189 /* LRCK 24-48kHz */
186 as3514_write(AS3514_PLLMODE, PLLMODE_LRCK_24_48); 190 as3514_write(AS3514_PLLMODE, PLLMODE_LRCK_24_48);
191#endif
187 192
188 /* DAC_Mute_off */ 193 /* DAC_Mute_off */
189 as3514_set(AS3514_DAC_L, DAC_L_DAC_MUTE_off); 194 as3514_set(AS3514_DAC_L, DAC_L_DAC_MUTE_off);