e5ce01f056
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8075 a1c6a512-1295-4272-9138-f99709370657
308 lines
8.7 KiB
C
308 lines
8.7 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2005 by Andy Young
|
|
*
|
|
* 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 "lcd.h"
|
|
#include "cpu.h"
|
|
#include "kernel.h"
|
|
#include "thread.h"
|
|
#include "power.h"
|
|
#include "debug.h"
|
|
#include "system.h"
|
|
#include "sprintf.h"
|
|
#include "button.h"
|
|
#include "string.h"
|
|
#include "file.h"
|
|
#include "buffer.h"
|
|
#include "audio.h"
|
|
|
|
#include "i2c-coldfire.h"
|
|
#include "uda1380.h"
|
|
#include "pcf50606.h"
|
|
|
|
/* ------------------------------------------------- */
|
|
/* Local functions and variables */
|
|
/* ------------------------------------------------- */
|
|
|
|
int uda1380_write_reg(unsigned char reg, unsigned short value);
|
|
unsigned short uda1380_regs[0x30];
|
|
short uda1380_balance;
|
|
short uda1380_volume;
|
|
|
|
/* Definition of a playback configuration to start with */
|
|
|
|
#define NUM_DEFAULT_REGS 13
|
|
unsigned short uda1380_defaults[2*NUM_DEFAULT_REGS] =
|
|
{
|
|
REG_0, EN_DAC | EN_INT | EN_DEC | SYSCLK_256FS | WSPLL_25_50,
|
|
REG_I2S, I2S_IFMT_IIS,
|
|
REG_PWR, PON_PLL | PON_BIAS, /* PON_HP & PON_DAC is enabled later */
|
|
REG_AMIX, AMIX_RIGHT(0x3f) | AMIX_LEFT(0x3f), /* 00=max, 3f=mute */
|
|
REG_MASTER_VOL, MASTER_VOL_LEFT(0x20) | MASTER_VOL_RIGHT(0x20), /* 00=max, ff=mute */
|
|
REG_MIX_VOL, MIX_VOL_CH_1(0) | MIX_VOL_CH_2(0xff), /* 00=max, ff=mute */
|
|
REG_EQ, EQ_MODE_MAX, /* Bass and tremble = 0 dB */
|
|
REG_MUTE, MUTE_MASTER | MUTE_CH2, /* Mute everything to start with */
|
|
REG_MIX_CTL, MIX_CTL_MIX, /* Enable mixer */
|
|
REG_DEC_VOL, 0,
|
|
REG_PGA, MUTE_ADC,
|
|
REG_ADC, SKIP_DCFIL,
|
|
REG_AGC, 0
|
|
};
|
|
|
|
|
|
|
|
/* Returns 0 if register was written or -1 if write failed */
|
|
int uda1380_write_reg(unsigned char reg, unsigned short value)
|
|
{
|
|
unsigned char data[4];
|
|
|
|
data[0] = UDA1380_ADDR;
|
|
data[1] = reg;
|
|
data[2] = value >> 8;
|
|
data[3] = value & 0xff;
|
|
|
|
if (i2c_write(1, data, 4) != 4)
|
|
{
|
|
DEBUGF("uda1380 error reg=0x%x", reg);
|
|
return -1;
|
|
}
|
|
|
|
uda1380_regs[reg] = value;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* Sets left and right master volume (0(max) to 252(muted))
|
|
*/
|
|
int uda1380_set_master_vol(int vol_l, int vol_r)
|
|
{
|
|
return uda1380_write_reg(REG_MASTER_VOL,
|
|
MASTER_VOL_LEFT(vol_l) | MASTER_VOL_RIGHT(vol_r));
|
|
}
|
|
|
|
/**
|
|
* Sets mixer volume for both channels (0(max) to 228(muted))
|
|
*/
|
|
int uda1380_set_mixer_vol(int channel1, int channel2)
|
|
{
|
|
return uda1380_write_reg(REG_MIX_VOL,
|
|
MIX_VOL_CH_1(channel1) | MIX_VOL_CH_2(channel2));
|
|
}
|
|
|
|
/**
|
|
* Sets the bass value (0-12)
|
|
*/
|
|
void uda1380_set_bass(int value)
|
|
{
|
|
uda1380_write_reg(REG_EQ, (uda1380_regs[REG_EQ] & ~BASS_MASK) | BASSL(value) | BASSR(value));
|
|
}
|
|
|
|
/**
|
|
* Sets the treble value (0-3)
|
|
*/
|
|
void uda1380_set_treble(int value)
|
|
{
|
|
uda1380_write_reg(REG_EQ, (uda1380_regs[REG_EQ] & ~TREBLE_MASK) | TREBLEL(value) | TREBLER(value));
|
|
}
|
|
|
|
/**
|
|
* Mute (mute=1) or enable sound (mute=0)
|
|
*
|
|
*/
|
|
int uda1380_mute(int mute)
|
|
{
|
|
unsigned int value = uda1380_regs[REG_MUTE];
|
|
|
|
if (mute)
|
|
value = value | MUTE_MASTER;
|
|
else
|
|
value = value & ~MUTE_MASTER;
|
|
|
|
return uda1380_write_reg(REG_MUTE, value);
|
|
}
|
|
|
|
/* Returns 0 if successful or -1 if some register failed */
|
|
int uda1380_set_regs(void)
|
|
{
|
|
int i;
|
|
memset(uda1380_regs, 0, sizeof(uda1380_regs));
|
|
|
|
/* Initialize all registers */
|
|
for (i=0; i<NUM_DEFAULT_REGS; i++)
|
|
{
|
|
unsigned char reg = uda1380_defaults[i*2+0];
|
|
unsigned short value = uda1380_defaults[i*2+1];
|
|
|
|
if (uda1380_write_reg(reg, value) == -1)
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* Silently enable / disable audio output */
|
|
void uda1380_enable_output(bool enable)
|
|
{
|
|
if (enable) {
|
|
uda1380_write_reg(REG_PWR, uda1380_regs[REG_PWR] | PON_DAC | PON_HP);
|
|
} else {
|
|
uda1380_write_reg(REG_MUTE, MUTE_MASTER);
|
|
uda1380_write_reg(REG_PWR, uda1380_regs[REG_PWR] & ~PON_DAC);
|
|
}
|
|
}
|
|
|
|
void uda1380_reset(void)
|
|
{
|
|
#ifdef IRIVER_H300_SERIES
|
|
int mask = set_irq_level(HIGHEST_IRQ_LEVEL);
|
|
pcf50606_write(0x3b, 0x00);
|
|
pcf50606_write(0x3b, 0x07);
|
|
set_irq_level(mask);
|
|
#else
|
|
/* RESET signal */
|
|
or_l(1<<29, &GPIO_OUT);
|
|
or_l(1<<29, &GPIO_ENABLE);
|
|
or_l(1<<29, &GPIO_FUNCTION);
|
|
sleep(HZ/100);
|
|
and_l(~(1<<29), &GPIO_OUT);
|
|
#endif
|
|
}
|
|
|
|
/* Initialize UDA1380 codec with default register values (uda1380_defaults) */
|
|
int uda1380_init(void)
|
|
{
|
|
uda1380_reset();
|
|
|
|
if (uda1380_set_regs() == -1)
|
|
return -1;
|
|
uda1380_balance = 0;
|
|
uda1380_volume = 0x20; /* Taken from uda1380_defaults */
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* Nice shutdown of UDA1380 codec */
|
|
void uda1380_close(void)
|
|
{
|
|
/* First enable mute and sleep a while */
|
|
uda1380_write_reg(REG_MUTE, MUTE_MASTER);
|
|
sleep(HZ/8);
|
|
|
|
/* Then power off the rest of the chip */
|
|
uda1380_write_reg(REG_PWR, 0);
|
|
uda1380_write_reg(REG_0, 0); /* Disable codec */
|
|
}
|
|
|
|
/**
|
|
* Calling this function enables the UDA1380 to send
|
|
* sound samples over the I2S bus, which is connected
|
|
* to the processor's IIS1 interface.
|
|
*
|
|
* source_mic: true=record from microphone, false=record from line-in (or radio)
|
|
*/
|
|
void uda1380_enable_recording(bool source_mic)
|
|
{
|
|
uda1380_write_reg(REG_0, uda1380_regs[REG_0] | EN_ADC);
|
|
|
|
if (source_mic)
|
|
{
|
|
uda1380_write_reg(REG_PWR, uda1380_regs[REG_PWR] | PON_LNA | PON_ADCL);
|
|
uda1380_write_reg(REG_ADC, (uda1380_regs[REG_ADC] & VGA_GAIN_MASK) | SEL_LNA | SEL_MIC | EN_DCFIL); /* VGA_GAIN: 0=0 dB, F=30dB */
|
|
uda1380_write_reg(REG_PGA, 0);
|
|
} else
|
|
{
|
|
uda1380_write_reg(REG_PWR, uda1380_regs[REG_PWR] | PON_PGAL | PON_ADCL | PON_PGAR | PON_ADCR);
|
|
uda1380_write_reg(REG_ADC, EN_DCFIL);
|
|
uda1380_write_reg(REG_PGA, (uda1380_regs[REG_PGA] & PGA_GAIN_MASK) | PGA_GAINL(0) | PGA_GAINR(0)); /* PGA_GAIN: 0=0 dB, F=24dB */
|
|
}
|
|
|
|
sleep(HZ/8);
|
|
|
|
uda1380_write_reg(REG_I2S, uda1380_regs[REG_I2S] | I2S_MODE_MASTER);
|
|
uda1380_write_reg(REG_MIX_CTL, MIX_MODE(1));
|
|
|
|
}
|
|
|
|
/**
|
|
* Stop sending samples on the I2S bus
|
|
*/
|
|
void uda1380_disable_recording(void)
|
|
{
|
|
uda1380_write_reg(REG_PGA, MUTE_ADC);
|
|
sleep(HZ/8);
|
|
|
|
uda1380_write_reg(REG_I2S, I2S_IFMT_IIS);
|
|
uda1380_write_reg(REG_PWR, uda1380_regs[REG_PWR] & ~(PON_LNA | PON_ADCL | PON_ADCR | PON_PGAL | PON_PGAR));
|
|
uda1380_write_reg(REG_0, uda1380_regs[REG_0] & ~EN_ADC);
|
|
uda1380_write_reg(REG_ADC, SKIP_DCFIL);
|
|
}
|
|
|
|
/**
|
|
* Set recording gain and volume
|
|
*
|
|
* type: params: ranges:
|
|
* AUDIO_GAIN_MIC left 0 .. 15 -> 0 .. 30 dB gain
|
|
* AUDIO_GAIN_LINEIN left & right 0 .. 8 -> 0 .. 24 dB gain
|
|
* AUDIO_GAIN_ADC left & right -128 .. 48 -> -64 .. 24 dB gain
|
|
*
|
|
* Note: For all types the value 0 gives 0 dB gain.
|
|
*/
|
|
void uda1380_set_recvol(int left, int right, int type)
|
|
{
|
|
switch (type)
|
|
{
|
|
case AUDIO_GAIN_MIC:
|
|
uda1380_write_reg(REG_ADC, (uda1380_regs[REG_ADC] & ~VGA_GAIN_MASK) | VGA_GAIN(left));
|
|
break;
|
|
|
|
case AUDIO_GAIN_LINEIN:
|
|
uda1380_write_reg(REG_PGA, (uda1380_regs[REG_PGA] & ~PGA_GAIN_MASK) | PGA_GAINL(left) | PGA_GAINR(right));
|
|
break;
|
|
|
|
case AUDIO_GAIN_ADC:
|
|
uda1380_write_reg(REG_DEC_VOL, DEC_VOLL(left) | DEC_VOLR(right));
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Enable or disable recording monitor (so one can listen to the recording)
|
|
*
|
|
*/
|
|
void uda1380_set_monitor(int enable)
|
|
{
|
|
if (enable) /* enable channel 2 */
|
|
uda1380_write_reg(REG_MUTE, uda1380_regs[REG_MUTE] & ~MUTE_CH2);
|
|
else /* mute channel 2 */
|
|
uda1380_write_reg(REG_MUTE, uda1380_regs[REG_MUTE] | MUTE_CH2);
|
|
}
|
|
|
|
/* Change the order of the noise chaper, 5th order is recommended above 32kHz */
|
|
void uda1380_set_nsorder(int order)
|
|
{
|
|
switch(order)
|
|
{
|
|
case 5:
|
|
uda1380_write_reg(REG_MIX_CTL, uda1380_regs[REG_MIX_CTL] | MIX_CTL_SEL_NS);
|
|
break;
|
|
case 3:
|
|
default:
|
|
uda1380_write_reg(REG_MIX_CTL, uda1380_regs[REG_MIX_CTL] & ~MIX_CTL_SEL_NS);
|
|
}
|
|
}
|