2008-11-10 11:04:43 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2009-02-05 19:57:18 +00:00
|
|
|
* Copyright (C) 2009 by Bertrik Sikken
|
2008-11-10 11:04:43 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2009-02-05 19:57:18 +00:00
|
|
|
#include "config.h"
|
2008-11-10 11:04:43 +00:00
|
|
|
#include "system.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "audio.h"
|
2009-02-05 19:57:18 +00:00
|
|
|
#include "audiohw.h"
|
2008-11-10 11:04:43 +00:00
|
|
|
#include "sound.h"
|
2011-12-08 19:20:00 +00:00
|
|
|
#include "general.h"
|
2008-11-10 11:04:43 +00:00
|
|
|
|
2010-05-14 12:59:54 +00:00
|
|
|
int audio_channels = 2;
|
|
|
|
|
2011-12-08 19:20:00 +00:00
|
|
|
#if CONFIG_CPU == AS3525
|
|
|
|
int audio_output_source = AUDIO_SRC_PLAYBACK;
|
|
|
|
#endif
|
|
|
|
|
2008-11-10 11:04:43 +00:00
|
|
|
void audio_set_output_source(int source)
|
|
|
|
{
|
2010-07-02 06:00:00 +00:00
|
|
|
bitset32(&CGU_PERI, CGU_I2SOUT_APB_CLOCK_ENABLE);
|
2011-12-08 19:20:00 +00:00
|
|
|
|
|
|
|
if ((unsigned)source >= AUDIO_NUM_SOURCES)
|
|
|
|
source = AUDIO_SRC_PLAYBACK;
|
|
|
|
|
|
|
|
bool loopback = source != AUDIO_SRC_PLAYBACK;
|
|
|
|
|
|
|
|
#if CONFIG_CPU == AS3525
|
|
|
|
loopback = loopback && audio_channels > 1;
|
|
|
|
|
|
|
|
audio_output_source = source;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (loopback)
|
|
|
|
I2SOUT_CONTROL |= (1<<5); /* loopback from i2sin fifo */
|
2010-05-26 11:07:49 +00:00
|
|
|
else
|
2011-12-08 19:20:00 +00:00
|
|
|
I2SOUT_CONTROL &= ~(1<<5); /* normal i2sout */
|
2009-11-01 22:51:31 +00:00
|
|
|
}
|
2008-11-10 11:04:43 +00:00
|
|
|
|
|
|
|
void audio_input_mux(int source, unsigned flags)
|
|
|
|
{
|
2009-02-05 19:57:18 +00:00
|
|
|
static int last_source = AUDIO_SRC_PLAYBACK;
|
2010-03-29 23:10:00 +00:00
|
|
|
#if defined(HAVE_RECORDING) && (INPUT_SRC_CAPS & SRC_CAP_FMRADIO)
|
2009-11-01 22:51:31 +00:00
|
|
|
static bool last_recording = false;
|
|
|
|
const bool recording = flags & SRCF_RECORDING;
|
|
|
|
#else
|
|
|
|
(void) flags;
|
|
|
|
#endif
|
2009-02-05 19:57:18 +00:00
|
|
|
|
|
|
|
switch (source)
|
|
|
|
{
|
|
|
|
default: /* playback - no recording */
|
|
|
|
source = AUDIO_SRC_PLAYBACK;
|
2021-08-08 13:27:27 +00:00
|
|
|
/*fallthrough*/
|
2009-02-05 19:57:18 +00:00
|
|
|
case AUDIO_SRC_PLAYBACK:
|
|
|
|
if (source != last_source)
|
|
|
|
{
|
2010-05-14 12:59:54 +00:00
|
|
|
audio_channels = 2;
|
2010-02-22 02:42:58 +00:00
|
|
|
#if defined(HAVE_RECORDING) || defined(HAVE_FMRADIO_IN)
|
2009-02-05 19:57:18 +00:00
|
|
|
audiohw_set_monitor(false);
|
2010-02-22 02:42:58 +00:00
|
|
|
#endif
|
2009-11-01 22:51:31 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
audiohw_disable_recording();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-03-15 01:00:00 +00:00
|
|
|
#if defined(HAVE_RECORDING) && (INPUT_SRC_CAPS & SRC_CAP_MIC)
|
2009-11-01 22:51:31 +00:00
|
|
|
case AUDIO_SRC_MIC: /* recording only */
|
|
|
|
if (source != last_source)
|
|
|
|
{
|
2010-05-14 12:59:54 +00:00
|
|
|
audio_channels = 1;
|
2009-11-01 22:51:31 +00:00
|
|
|
audiohw_set_monitor(false);
|
|
|
|
audiohw_enable_recording(true); /* source mic */
|
2009-02-05 19:57:18 +00:00
|
|
|
}
|
|
|
|
break;
|
2009-11-01 22:51:31 +00:00
|
|
|
#endif
|
2009-02-05 19:57:18 +00:00
|
|
|
|
2010-02-22 02:42:58 +00:00
|
|
|
#if (INPUT_SRC_CAPS & SRC_CAP_FMRADIO)
|
|
|
|
|
2009-02-05 19:57:18 +00:00
|
|
|
case AUDIO_SRC_FMRADIO: /* recording and playback */
|
2009-11-01 22:51:31 +00:00
|
|
|
if (source == last_source
|
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
&& recording == last_recording
|
|
|
|
#endif
|
|
|
|
)
|
2009-02-05 19:57:18 +00:00
|
|
|
break;
|
|
|
|
|
2010-05-14 12:59:54 +00:00
|
|
|
audio_channels = 2;
|
2009-11-01 22:51:31 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
last_recording = recording;
|
|
|
|
|
|
|
|
if (recording)
|
|
|
|
{
|
|
|
|
audiohw_set_monitor(false);
|
|
|
|
audiohw_enable_recording(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
audiohw_disable_recording();
|
|
|
|
#endif
|
2010-02-22 02:42:58 +00:00
|
|
|
#if defined(HAVE_RECORDING) || defined(HAVE_FMRADIO_IN)
|
2009-11-01 22:51:31 +00:00
|
|
|
audiohw_set_monitor(true); /* line 2 analog audio path */
|
2010-02-22 02:42:58 +00:00
|
|
|
#endif
|
2009-11-01 22:51:31 +00:00
|
|
|
}
|
2009-02-05 19:57:18 +00:00
|
|
|
break;
|
2010-02-22 02:42:58 +00:00
|
|
|
#endif /* (INPUT_SRC_CAPS & SRC_CAP_FMRADIO) */
|
2009-11-01 22:51:31 +00:00
|
|
|
}
|
2009-02-05 19:57:18 +00:00
|
|
|
|
|
|
|
last_source = source;
|
2011-12-08 19:20:00 +00:00
|
|
|
|
|
|
|
#if CONFIG_CPU == AS3525
|
|
|
|
/* Sync on behalf of change in number of channels */
|
|
|
|
audio_set_output_source(audio_output_source);
|
|
|
|
#endif
|
2009-11-01 22:51:31 +00:00
|
|
|
}
|
2011-12-08 19:20:00 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SAMPR_TYPES
|
|
|
|
unsigned int pcm_sampr_to_hw_sampr(unsigned int samplerate,
|
|
|
|
unsigned int type)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
if (samplerate != HW_SAMPR_RESET && type == SAMPR_TYPE_REC)
|
|
|
|
{
|
|
|
|
/* Check if the samplerate is in the list of recordable rates.
|
|
|
|
* Fail to default if not */
|
|
|
|
int index = round_value_to_list32(samplerate, rec_freq_sampr,
|
|
|
|
REC_NUM_FREQ, false);
|
|
|
|
if (samplerate != rec_freq_sampr[index])
|
|
|
|
samplerate = REC_SAMPR_DEFAULT;
|
|
|
|
|
|
|
|
samplerate *= 2; /* Recording rates are 1/2 the codec clock */
|
|
|
|
}
|
|
|
|
#endif /* HAVE_RECORDING */
|
|
|
|
|
|
|
|
return samplerate;
|
|
|
|
(void)type;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_SAMPR_TYPES */
|
|
|
|
|