2005-03-18 11:39:28 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Linus Nielsen Feltzing
|
|
|
|
*
|
|
|
|
* 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 "debug.h"
|
|
|
|
#include "panic.h"
|
|
|
|
#include <kernel.h>
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "i2c.h"
|
|
|
|
#include "uda1380.h"
|
|
|
|
#include "system.h"
|
|
|
|
#endif
|
2005-06-19 18:41:53 +00:00
|
|
|
#include "logf.h"
|
2005-03-18 11:39:28 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
2005-06-05 23:05:10 +00:00
|
|
|
#include "pcm_playback.h"
|
2005-03-18 11:39:28 +00:00
|
|
|
#include "lcd.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "buffer.h"
|
2005-03-28 00:00:24 +00:00
|
|
|
#include "sprintf.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include <string.h>
|
|
|
|
|
2005-06-18 22:23:54 +00:00
|
|
|
#ifdef HAVE_UDA1380
|
|
|
|
|
2005-03-28 00:00:24 +00:00
|
|
|
static bool pcm_playing;
|
2005-03-31 06:49:10 +00:00
|
|
|
static bool pcm_paused;
|
|
|
|
static int pcm_freq = 0x6; /* 44.1 is default */
|
2005-03-18 11:39:28 +00:00
|
|
|
|
2005-06-05 23:05:10 +00:00
|
|
|
static unsigned char *next_start;
|
|
|
|
static long next_size;
|
|
|
|
|
2005-03-18 11:39:28 +00:00
|
|
|
/* Set up the DMA transfer that kicks in when the audio FIFO gets empty */
|
2005-03-31 06:49:10 +00:00
|
|
|
static void dma_start(const void *addr, long size)
|
|
|
|
{
|
|
|
|
pcm_playing = true;
|
2005-03-18 11:39:28 +00:00
|
|
|
|
2005-03-31 06:49:10 +00:00
|
|
|
addr = (void *)((unsigned long)addr & ~3); /* Align data */
|
|
|
|
size &= ~3; /* Size must be multiple of 4 */
|
2005-03-18 11:39:28 +00:00
|
|
|
|
2005-03-31 06:49:10 +00:00
|
|
|
/* Reset the audio FIFO */
|
|
|
|
IIS2CONFIG = 0x800;
|
2005-07-01 07:55:19 +00:00
|
|
|
EBU1CONFIG = 0x800;
|
2005-07-01 17:05:09 +00:00
|
|
|
|
2005-03-18 11:39:28 +00:00
|
|
|
/* Set up DMA transfer */
|
2005-03-31 06:49:10 +00:00
|
|
|
SAR0 = ((unsigned long)addr); /* Source address */
|
|
|
|
DAR0 = (unsigned long)&PDOR3; /* Destination address */
|
|
|
|
BCR0 = size; /* Bytes to transfer */
|
2005-03-18 11:39:28 +00:00
|
|
|
|
2005-03-31 06:49:10 +00:00
|
|
|
/* Enable the FIFO and force one write to it */
|
2005-07-01 07:55:19 +00:00
|
|
|
IIS2CONFIG = (pcm_freq << 12) | 0x300 | 4 << 2;
|
|
|
|
/* Also send the audio to S/PDIF */
|
2005-07-18 15:55:56 +00:00
|
|
|
EBU1CONFIG = (7 << 12) | (3 << 8) | (1 << 5) | (5 << 2);
|
2005-03-31 06:49:10 +00:00
|
|
|
DCR0 = DMA_INT | DMA_EEXT | DMA_CS | DMA_SINC | DMA_START;
|
2005-03-18 11:39:28 +00:00
|
|
|
}
|
|
|
|
|
2005-06-10 10:58:45 +00:00
|
|
|
/* Stops the DMA transfer and interrupt */
|
|
|
|
static void dma_stop(void)
|
|
|
|
{
|
|
|
|
pcm_playing = false;
|
|
|
|
|
2005-06-30 20:02:56 +00:00
|
|
|
DCR0 = 0;
|
2005-06-10 10:58:45 +00:00
|
|
|
/* Reset the FIFO */
|
|
|
|
IIS2CONFIG = 0x800;
|
2005-07-01 07:55:19 +00:00
|
|
|
EBU1CONFIG = 0x800;
|
2005-07-07 07:15:05 +00:00
|
|
|
|
2005-07-01 17:05:09 +00:00
|
|
|
next_start = NULL;
|
|
|
|
next_size = 0;
|
|
|
|
pcm_paused = false;
|
2005-06-10 10:58:45 +00:00
|
|
|
}
|
|
|
|
|
2005-07-17 19:29:02 +00:00
|
|
|
#define PEEK_SAMPLE_COUNT 64
|
|
|
|
static long calculate_channel_peak_average(int channel, unsigned short *addr,
|
|
|
|
long size)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
long min, max;
|
|
|
|
int count, min_count, max_count;
|
|
|
|
unsigned long average, zero_point;
|
|
|
|
|
|
|
|
addr = &addr[channel];
|
|
|
|
average = 0;
|
|
|
|
|
2005-07-17 21:02:40 +00:00
|
|
|
if (pcm_playing && !pcm_paused && addr != NULL && size)
|
2005-07-17 19:29:02 +00:00
|
|
|
{
|
|
|
|
/* Calculate the zero point and remove DC offset (should be around 32768) */
|
|
|
|
zero_point = 0;
|
|
|
|
for (i = 0; i < size; i++)
|
|
|
|
zero_point += addr[i*2];
|
|
|
|
zero_point /= i;
|
|
|
|
|
|
|
|
/*for (i = 0; i < size; i++) {
|
|
|
|
long peak = addr[i*2] - 32768;
|
|
|
|
if (peak < 0)
|
|
|
|
peak = 0;
|
|
|
|
average += peak;
|
|
|
|
}
|
|
|
|
average /= i;*/
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
|
|
|
|
while (size > PEEK_SAMPLE_COUNT)
|
|
|
|
{
|
|
|
|
min = zero_point;
|
|
|
|
max = zero_point;
|
|
|
|
min_count = 1;
|
|
|
|
max_count = 1;
|
|
|
|
|
|
|
|
for (i = 0; i < PEEK_SAMPLE_COUNT; i++)
|
|
|
|
{
|
|
|
|
unsigned long value = *addr;
|
|
|
|
if (value < zero_point) {
|
|
|
|
min += value;
|
|
|
|
min_count++;
|
|
|
|
}
|
|
|
|
if (value > zero_point) {
|
|
|
|
max += value;
|
|
|
|
max_count++;
|
|
|
|
}
|
|
|
|
addr = &addr[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
min /= min_count;
|
|
|
|
max /= max_count;
|
|
|
|
|
|
|
|
size -= PEEK_SAMPLE_COUNT;
|
|
|
|
average += (max - min) / 2;
|
|
|
|
//average += (max - zero_point) + (zero_point - min);
|
|
|
|
//average += zero_point - min;
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count)
|
|
|
|
{
|
|
|
|
average /= count;
|
|
|
|
/* I don't know why this is needed. Should be fixed. */
|
|
|
|
average = zero_point - average;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return average;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcm_calculate_peaks(int *left, int *right)
|
|
|
|
{
|
|
|
|
unsigned short *addr = (unsigned short *)SAR0;
|
2005-07-22 06:32:55 +00:00
|
|
|
long size = MIN(512, (BCR0 & 0xffffff) / 2);
|
2005-07-17 19:29:02 +00:00
|
|
|
|
|
|
|
if (left != NULL)
|
|
|
|
*left = calculate_channel_peak_average(0, addr, size);
|
|
|
|
if (right != NULL)
|
|
|
|
*right = calculate_channel_peak_average(1, addr, size);;
|
|
|
|
}
|
|
|
|
|
2005-03-28 00:00:24 +00:00
|
|
|
/* sets frequency of input to DAC */
|
|
|
|
void pcm_set_frequency(unsigned int frequency)
|
|
|
|
{
|
2005-03-31 06:49:10 +00:00
|
|
|
switch(frequency)
|
|
|
|
{
|
2005-03-28 00:00:24 +00:00
|
|
|
case 11025:
|
|
|
|
pcm_freq = 0x4;
|
2005-07-01 07:55:19 +00:00
|
|
|
uda1380_set_nsorder(3);
|
2005-03-28 00:00:24 +00:00
|
|
|
break;
|
2005-07-01 07:55:19 +00:00
|
|
|
case 22050:
|
2005-03-28 00:00:24 +00:00
|
|
|
pcm_freq = 0x6;
|
2005-07-01 07:55:19 +00:00
|
|
|
uda1380_set_nsorder(3);
|
2005-03-28 00:00:24 +00:00
|
|
|
break;
|
2005-07-01 07:55:19 +00:00
|
|
|
case 44100:
|
2005-03-28 00:00:24 +00:00
|
|
|
default:
|
2005-07-01 07:55:19 +00:00
|
|
|
pcm_freq = 0xC;
|
|
|
|
uda1380_set_nsorder(5);
|
2005-03-31 06:49:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-03-28 00:00:24 +00:00
|
|
|
}
|
|
|
|
|
2005-03-18 11:39:28 +00:00
|
|
|
/* the registered callback function to ask for more mp3 data */
|
|
|
|
static void (*callback_for_more)(unsigned char**, long*) = NULL;
|
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
void pcm_play_data(void (*get_more)(unsigned char** start, long* size))
|
2005-06-05 23:05:10 +00:00
|
|
|
{
|
2005-07-13 12:48:22 +00:00
|
|
|
unsigned char *start;
|
|
|
|
long size;
|
2005-06-05 23:05:10 +00:00
|
|
|
|
2005-03-18 11:39:28 +00:00
|
|
|
callback_for_more = get_more;
|
2005-07-13 12:48:22 +00:00
|
|
|
|
2005-07-07 07:15:05 +00:00
|
|
|
/** FIXME: This is a temporary fix to prevent playback glitches when
|
|
|
|
* playing the first file. We will just drop the first frame to prevent
|
|
|
|
* that problem from occurring.
|
|
|
|
* Some debug data:
|
|
|
|
* - This problem will occur only when the first file.
|
|
|
|
* - First frame will be totally corrupt and the song will begin
|
|
|
|
* from the next frame. But at the next time (when the bug has
|
|
|
|
* already happened), the song will start from first frame.
|
|
|
|
* - Dropping some frames directly from (mpa) codec will also
|
|
|
|
* prevent the problem from happening. So it's unlikely you can
|
|
|
|
* find the explanation for this bug from this file.
|
|
|
|
*/
|
|
|
|
get_more((unsigned char **)&start, (long *)&size); // REMOVE THIS TO TEST
|
2005-07-13 12:48:22 +00:00
|
|
|
get_more((unsigned char **)&start, (long *)&size);
|
2005-06-07 06:34:54 +00:00
|
|
|
get_more(&next_start, &next_size);
|
2005-07-01 17:05:09 +00:00
|
|
|
dma_start(start, size);
|
2005-07-01 21:23:07 +00:00
|
|
|
uda1380_mute(false);
|
2005-03-18 11:39:28 +00:00
|
|
|
}
|
|
|
|
|
2005-07-22 06:32:55 +00:00
|
|
|
long pcm_get_bytes_waiting(void)
|
|
|
|
{
|
|
|
|
return next_size + (BCR0 & 0xffffff);
|
|
|
|
}
|
|
|
|
|
2005-03-18 11:39:28 +00:00
|
|
|
void pcm_play_stop(void)
|
|
|
|
{
|
2005-06-14 09:25:28 +00:00
|
|
|
if (pcm_playing) {
|
2005-07-01 21:23:07 +00:00
|
|
|
uda1380_mute(true);
|
2005-06-14 07:54:09 +00:00
|
|
|
dma_stop();
|
2005-06-14 09:25:28 +00:00
|
|
|
}
|
2005-03-18 11:39:28 +00:00
|
|
|
}
|
|
|
|
|
2005-03-31 06:49:10 +00:00
|
|
|
void pcm_play_pause(bool play)
|
|
|
|
{
|
2005-07-13 12:48:22 +00:00
|
|
|
if(pcm_paused && play && next_size)
|
2005-03-31 06:49:10 +00:00
|
|
|
{
|
2005-06-30 20:02:56 +00:00
|
|
|
logf("unpause");
|
|
|
|
/* Reset chunk size so dma has enough data to fill the fifo. */
|
2005-07-01 17:13:33 +00:00
|
|
|
/* This shouldn't be needed anymore. */
|
|
|
|
//SAR0 = (unsigned long)next_start;
|
|
|
|
//BCR0 = next_size;
|
2005-03-31 06:49:10 +00:00
|
|
|
/* Enable the FIFO and force one write to it */
|
2005-07-01 07:55:19 +00:00
|
|
|
IIS2CONFIG = (pcm_freq << 12) | 0x300 | 4 << 2;
|
2005-07-18 15:55:56 +00:00
|
|
|
EBU1CONFIG = (7 << 12) | (3 << 8) | (1 << 5) | (5 << 2);
|
2005-06-30 20:02:56 +00:00
|
|
|
DCR0 |= DMA_EEXT | DMA_START;
|
2005-07-10 17:31:12 +00:00
|
|
|
|
2005-07-01 21:23:07 +00:00
|
|
|
uda1380_mute(false);
|
2005-03-31 06:49:10 +00:00
|
|
|
}
|
|
|
|
else if(!pcm_paused && !play)
|
|
|
|
{
|
2005-06-30 20:02:56 +00:00
|
|
|
logf("pause");
|
2005-07-01 21:23:07 +00:00
|
|
|
uda1380_mute(true);
|
|
|
|
|
2005-06-30 20:02:56 +00:00
|
|
|
/* Disable DMA peripheral request. */
|
|
|
|
DCR0 &= ~DMA_EEXT;
|
2005-03-31 06:49:10 +00:00
|
|
|
IIS2CONFIG = 0x800;
|
2005-07-01 07:55:19 +00:00
|
|
|
EBU1CONFIG = 0x800;
|
2005-03-31 06:49:10 +00:00
|
|
|
}
|
2005-06-10 20:46:39 +00:00
|
|
|
pcm_paused = !play;
|
2005-03-31 06:49:10 +00:00
|
|
|
}
|
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
bool pcm_is_paused(void)
|
|
|
|
{
|
|
|
|
return pcm_paused;
|
|
|
|
}
|
|
|
|
|
2005-03-18 11:39:28 +00:00
|
|
|
bool pcm_is_playing(void)
|
|
|
|
{
|
|
|
|
return pcm_playing;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* DMA0 Interrupt is called when the DMA has finished transfering a chunk */
|
|
|
|
void DMA0(void) __attribute__ ((interrupt_handler, section(".icode")));
|
|
|
|
void DMA0(void)
|
|
|
|
{
|
2005-03-28 00:00:24 +00:00
|
|
|
int res = DSR0;
|
|
|
|
|
2005-03-18 11:39:28 +00:00
|
|
|
DSR0 = 1; /* Clear interrupt */
|
2005-07-01 17:05:09 +00:00
|
|
|
DCR0 &= ~DMA_EEXT;
|
2005-06-30 20:02:56 +00:00
|
|
|
|
2005-03-31 06:49:10 +00:00
|
|
|
/* Stop on error */
|
|
|
|
if(res & 0x70)
|
2005-03-28 00:00:24 +00:00
|
|
|
{
|
|
|
|
dma_stop();
|
2005-07-07 07:15:05 +00:00
|
|
|
logf("DMA Error:0x%04x", res);
|
2005-03-28 00:00:24 +00:00
|
|
|
}
|
2005-03-18 11:39:28 +00:00
|
|
|
else
|
|
|
|
{
|
2005-06-05 23:05:10 +00:00
|
|
|
if(next_size)
|
2005-03-31 06:49:10 +00:00
|
|
|
{
|
2005-06-05 23:05:10 +00:00
|
|
|
SAR0 = (unsigned long)next_start; /* Source address */
|
|
|
|
BCR0 = next_size; /* Bytes to transfer */
|
2005-07-01 17:05:09 +00:00
|
|
|
DCR0 |= DMA_EEXT;
|
2005-06-07 06:34:54 +00:00
|
|
|
if (callback_for_more)
|
2005-06-05 23:05:10 +00:00
|
|
|
callback_for_more(&next_start, &next_size);
|
2005-03-31 06:49:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Finished playing */
|
|
|
|
dma_stop();
|
2005-07-07 07:15:05 +00:00
|
|
|
logf("DMA No Data:0x%04x", res);
|
2005-03-31 06:49:10 +00:00
|
|
|
}
|
2005-03-18 11:39:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
IPR |= (1<<14); /* Clear pending interrupt request */
|
|
|
|
}
|
2005-03-31 06:49:10 +00:00
|
|
|
|
|
|
|
void pcm_init(void)
|
|
|
|
{
|
|
|
|
pcm_playing = false;
|
|
|
|
pcm_paused = false;
|
|
|
|
|
|
|
|
uda1380_init();
|
|
|
|
|
|
|
|
BUSMASTER_CTRL = 0x81; /* PARK[1,0]=10 + BCR24BIT */
|
|
|
|
DIVR0 = 54; /* DMA0 is mapped into vector 54 in system.c */
|
|
|
|
DMAROUTE = (DMAROUTE & 0xffffff00) | DMA0_REQ_AUDIO_1;
|
|
|
|
DMACONFIG = 1; /* DMA0Req = PDOR3 */
|
|
|
|
|
|
|
|
/* Reset the audio FIFO */
|
|
|
|
IIS2CONFIG = 0x800;
|
|
|
|
|
|
|
|
/* Enable interrupt at level 7, priority 0 */
|
|
|
|
ICR4 = (ICR4 & 0xffff00ff) | 0x00001c00;
|
|
|
|
IMR &= ~(1<<14); /* bit 14 is DMA0 */
|
2005-06-05 23:05:10 +00:00
|
|
|
|
2005-03-31 06:49:10 +00:00
|
|
|
pcm_set_frequency(44100);
|
2005-07-03 15:25:06 +00:00
|
|
|
|
|
|
|
/* Turn on headphone power with audio output muted. */
|
|
|
|
uda1380_mute(true);
|
|
|
|
sleep(HZ/4);
|
|
|
|
uda1380_enable_output(true);
|
|
|
|
|
2005-07-07 07:15:05 +00:00
|
|
|
/* Call dma_stop to initialize everything. */
|
|
|
|
dma_stop();
|
2005-04-14 11:51:31 +00:00
|
|
|
}
|
2005-06-18 22:23:54 +00:00
|
|
|
|
|
|
|
#endif /* HAVE_UDA1380 */
|