2011-09-13 23:40:12 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 by Amaury Pouly
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "audiohw.h"
|
|
|
|
#include "audio.h"
|
2011-10-18 22:08:41 +00:00
|
|
|
#include "audioout-imx233.h"
|
|
|
|
#include "audioin-imx233.h"
|
2013-06-18 19:27:29 +00:00
|
|
|
#include "audio-imx233.h"
|
2011-09-13 23:40:12 +00:00
|
|
|
|
|
|
|
void audiohw_preinit(void)
|
|
|
|
{
|
2011-10-18 22:08:41 +00:00
|
|
|
imx233_audioout_preinit();
|
|
|
|
imx233_audioin_preinit();
|
2013-06-18 19:27:29 +00:00
|
|
|
imx233_audio_preinit();
|
2011-09-13 23:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void audiohw_postinit(void)
|
|
|
|
{
|
2011-10-18 22:08:41 +00:00
|
|
|
imx233_audioout_postinit();
|
|
|
|
imx233_audioin_postinit();
|
2013-06-18 19:27:29 +00:00
|
|
|
imx233_audio_postinit();
|
2011-09-13 23:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void audiohw_close(void)
|
|
|
|
{
|
2011-10-18 22:08:41 +00:00
|
|
|
imx233_audioout_close();
|
|
|
|
imx233_audioin_close();
|
|
|
|
}
|
|
|
|
|
2013-07-23 12:12:08 +00:00
|
|
|
/* volume in centibels */
|
2013-04-15 17:24:29 +00:00
|
|
|
void audiohw_set_volume(int vol_l, int vol_r)
|
2011-10-18 22:08:41 +00:00
|
|
|
{
|
2013-04-13 03:35:47 +00:00
|
|
|
imx233_audioout_set_hp_vol(vol_l / 5, vol_r / 5);
|
2011-10-18 22:08:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void audiohw_set_frequency(int fsel)
|
|
|
|
{
|
|
|
|
imx233_audioout_set_freq(fsel);
|
2011-09-13 23:40:12 +00:00
|
|
|
}
|
|
|
|
|
2013-06-18 14:09:07 +00:00
|
|
|
void audiohw_enable_recording(bool source_mic)
|
|
|
|
{
|
|
|
|
imx233_audioin_open();
|
|
|
|
/* if source is microhpone we need to power the microphone too */
|
|
|
|
imx233_audioin_enable_mic(source_mic);
|
2013-07-13 00:38:34 +00:00
|
|
|
int src = source_mic ? AUDIOIN_SELECT_MICROPHONE : AUDIOIN_SELECT_LINE1;
|
|
|
|
imx233_audioin_select_mux_input(false, src);
|
|
|
|
imx233_audioin_select_mux_input(true, src);
|
2013-06-18 14:09:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void audiohw_disable_recording(void)
|
|
|
|
{
|
|
|
|
imx233_audioin_close();
|
|
|
|
}
|
|
|
|
|
2013-07-23 12:12:08 +00:00
|
|
|
/* volume in centibels */
|
2011-09-13 23:40:12 +00:00
|
|
|
void audiohw_set_recvol(int left, int right, int type)
|
|
|
|
{
|
2013-07-13 00:38:55 +00:00
|
|
|
left /= 5;
|
|
|
|
right /= 5;
|
2013-06-18 14:09:07 +00:00
|
|
|
if(type == AUDIO_GAIN_LINEIN)
|
|
|
|
{
|
|
|
|
imx233_audioin_set_vol(false, left, AUDIOIN_SELECT_LINE1);
|
|
|
|
imx233_audioin_set_vol(true, right, AUDIOIN_SELECT_LINE1);
|
|
|
|
imx233_audioin_set_vol(false, left, AUDIOIN_SELECT_LINE2);
|
|
|
|
imx233_audioin_set_vol(true, right, AUDIOIN_SELECT_LINE2);
|
|
|
|
imx233_audioin_set_vol(false, left, AUDIOIN_SELECT_HEADPHONE);
|
|
|
|
imx233_audioin_set_vol(true, right, AUDIOIN_SELECT_HEADPHONE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
imx233_audioin_set_vol(false, left, AUDIOIN_SELECT_MICROPHONE);
|
2011-09-13 23:40:12 +00:00
|
|
|
}
|
2011-10-08 12:29:37 +00:00
|
|
|
|
|
|
|
void audiohw_set_depth_3d(int val)
|
|
|
|
{
|
2013-06-18 14:09:07 +00:00
|
|
|
/* input is raw value ranging from 0dB to 6dB in tenth of dB
|
|
|
|
* convert to value in 1.5dB steps */
|
|
|
|
imx233_audioout_set_3d_effect(val / 15);
|
|
|
|
}
|
|
|
|
|
|
|
|
void audiohw_set_monitor(bool enable)
|
|
|
|
{
|
|
|
|
imx233_audioout_select_hp_input(enable);
|
2011-10-08 12:29:37 +00:00
|
|
|
}
|
2014-02-16 19:46:00 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_SPEAKER
|
|
|
|
void audiohw_enable_speaker(bool en)
|
|
|
|
{
|
|
|
|
imx233_audioout_enable_spkr(en);
|
|
|
|
imx233_audio_enable_spkr(en);
|
|
|
|
}
|
|
|
|
#endif
|