198772a6b2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12605 a1c6a512-1295-4272-9138-f99709370657
98 lines
3.5 KiB
C
98 lines
3.5 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2006 by Michal Sevakis
|
|
* Based on the work of Thom Johansen
|
|
*
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
#include <stdbool.h>
|
|
#include "config.h"
|
|
#include "cpu.h"
|
|
#include "power.h"
|
|
#include "system.h"
|
|
#include "audio.h"
|
|
#include "spdif.h"
|
|
|
|
static int spdif_source = AUDIO_SRC_PLAYBACK;
|
|
static int spdif_on = false;
|
|
|
|
/* Initialize the S/PDIF driver */
|
|
void spdif_init(void)
|
|
{
|
|
/* PHASECONFIG setup: gain = 3*2^13, source = EBUIN */
|
|
PHASECONFIG = (6 << 3) | (4 << 0);
|
|
spdif_set_output_source(AUDIO_SRC_PLAYBACK, true);
|
|
}
|
|
|
|
/* Return the S/PDIF frequency in herz - unrounded */
|
|
unsigned long spdif_measure_frequency(void)
|
|
{
|
|
/* The following formula is specified in MCF5249 user's manual section
|
|
* 17.6.1. The 128 divide is because of the fact that the SPDIF clock is
|
|
* the sample rate times 128.
|
|
*/
|
|
return (unsigned long)((unsigned long long)FREQMEAS*CPU_FREQ /
|
|
((1 << 15)*3*(1 << 13))/128);
|
|
} /* spdif_measure_frequency */
|
|
|
|
/* Set the S/PDIF audio feed */
|
|
void spdif_set_output_source(int source, bool src_on)
|
|
{
|
|
static const unsigned short ebu1_config[AUDIO_NUM_SOURCES+1] =
|
|
{
|
|
/* SCLK2, TXSRC = PDOR3, validity, normal operation */
|
|
[AUDIO_SRC_PLAYBACK+1] = (3 << 8) | (1 << 5) | (5 << 2),
|
|
/* Input source is EBUin1, Feed-through monitoring */
|
|
[AUDIO_SRC_SPDIF+1] = (1 << 2),
|
|
/* SCLK2, TXSRC = IIS1recv, validity, normal operation */
|
|
[AUDIO_SRC_MIC+1] = (4 << 8) | (1 << 5) | (5 << 2),
|
|
[AUDIO_SRC_LINEIN+1] = (4 << 8) | (1 << 5) | (5 << 2),
|
|
[AUDIO_SRC_FMRADIO+1] = (4 << 8) | (1 << 5) | (5 << 2),
|
|
};
|
|
|
|
bool kick;
|
|
|
|
if ((unsigned)source >= ARRAYLEN(ebu1_config))
|
|
source = AUDIO_SRC_PLAYBACK;
|
|
|
|
spdif_source = source;
|
|
spdif_on = spdif_powered() && src_on;
|
|
kick = spdif_on && source == AUDIO_SRC_PLAYBACK;
|
|
|
|
/* FIFO must be in reset condition to reprogram bits 15-12 */
|
|
or_l(0x800, &EBU1CONFIG);
|
|
|
|
if (kick)
|
|
or_l(0x800, &IIS2CONFIG); /* Have to resync IIS2 TXSRC */
|
|
|
|
/* Tranceiver must be powered or else monitoring will be disabled.
|
|
CLOCKSEL bits only have relevance to normal operation so just
|
|
set them always. */
|
|
EBU1CONFIG = (spdif_on ? ebu1_config[source + 1] : 0) | (7 << 12);
|
|
|
|
if (kick && (DCR0 & DMA_EEXT)) /* only if still playing */
|
|
{
|
|
and_l(~0x800, &IIS2CONFIG);
|
|
PDOR3 = 0; /* A write to the FIFO kick-starts playback */
|
|
}
|
|
} /* spdif_set_output_source */
|
|
|
|
/* Return the last set S/PDIF audio source */
|
|
int spdif_get_output_source(bool *src_on)
|
|
{
|
|
if (src_on != NULL)
|
|
*src_on = spdif_on;
|
|
return spdif_source;
|
|
} /* spdif_get_output_source */
|