2005-04-01 13:41:03 +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>
|
2005-06-05 23:46:09 +00:00
|
|
|
#include <stdio.h>
|
2005-04-01 13:41:03 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "sound.h"
|
2006-01-30 21:12:31 +00:00
|
|
|
#include "logf.h"
|
2005-04-01 13:41:03 +00:00
|
|
|
#ifndef SIMULATOR
|
|
|
|
#include "i2c.h"
|
|
|
|
#include "mas.h"
|
2006-12-06 13:34:15 +00:00
|
|
|
#if CONFIG_CPU == PNX0101
|
2006-08-12 21:03:23 +00:00
|
|
|
#include "pnx0101.h"
|
2005-06-15 19:56:44 +00:00
|
|
|
#endif
|
2005-04-01 13:41:03 +00:00
|
|
|
#include "dac.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "hwcompat.h"
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2005-06-05 23:46:09 +00:00
|
|
|
#include "pcm_playback.h"
|
|
|
|
#endif
|
2005-04-01 13:41:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
extern bool audio_is_initialized;
|
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-04-01 13:41:03 +00:00
|
|
|
extern unsigned long shadow_io_control_main;
|
|
|
|
extern unsigned shadow_codec_reg0;
|
|
|
|
#endif
|
2005-11-06 23:12:11 +00:00
|
|
|
#endif /* SIMULATOR */
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2005-11-06 23:12:11 +00:00
|
|
|
struct sound_settings_info {
|
|
|
|
const char *unit;
|
|
|
|
int numdecimals;
|
|
|
|
int steps;
|
|
|
|
int minval;
|
|
|
|
int maxval;
|
|
|
|
int defaultval;
|
|
|
|
sound_set_type *setfn;
|
2005-04-01 13:41:03 +00:00
|
|
|
};
|
|
|
|
|
2005-11-06 23:12:11 +00:00
|
|
|
static const struct sound_settings_info sound_settings_table[] = {
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-12-07 23:07:07 +00:00
|
|
|
[SOUND_VOLUME] = {"dB", 0, 1,-100, 12, -25, sound_set_volume},
|
2005-11-06 23:12:11 +00:00
|
|
|
[SOUND_BASS] = {"dB", 0, 1, -12, 12, 6, sound_set_bass},
|
|
|
|
[SOUND_TREBLE] = {"dB", 0, 1, -12, 12, 6, sound_set_treble},
|
2005-06-15 19:56:44 +00:00
|
|
|
#elif defined(HAVE_UDA1380)
|
2005-12-07 23:07:07 +00:00
|
|
|
[SOUND_VOLUME] = {"dB", 0, 1, -84, 0, -25, sound_set_volume},
|
2005-11-06 23:12:11 +00:00
|
|
|
[SOUND_BASS] = {"dB", 0, 2, 0, 24, 0, sound_set_bass},
|
|
|
|
[SOUND_TREBLE] = {"dB", 0, 2, 0, 6, 0, sound_set_treble},
|
2006-03-28 20:38:05 +00:00
|
|
|
#elif defined(HAVE_TLV320)
|
2006-03-28 20:55:12 +00:00
|
|
|
[SOUND_VOLUME] = {"dB", 0, 1, -73, 6, -20, sound_set_volume},
|
2006-10-21 16:49:07 +00:00
|
|
|
#elif defined(HAVE_WM8975) || defined(HAVE_WM8751)
|
2006-03-27 16:05:51 +00:00
|
|
|
[SOUND_VOLUME] = {"dB", 0, 1, -74, 6, -25, sound_set_volume},
|
2006-01-30 21:12:31 +00:00
|
|
|
[SOUND_BASS] = {"dB", 0, 1, -6, 9, 0, sound_set_bass},
|
|
|
|
[SOUND_TREBLE] = {"dB", 0, 1, -6, 9, 0, sound_set_treble},
|
2006-02-13 13:48:08 +00:00
|
|
|
#elif defined(HAVE_WM8758)
|
2006-02-28 00:58:19 +00:00
|
|
|
[SOUND_VOLUME] = {"dB", 0, 1, -58, 6, -25, sound_set_volume},
|
2006-02-13 13:48:08 +00:00
|
|
|
[SOUND_BASS] = {"dB", 0, 1, -6, 9, 0, sound_set_bass},
|
|
|
|
[SOUND_TREBLE] = {"dB", 0, 1, -6, 9, 0, sound_set_treble},
|
2006-03-30 20:18:02 +00:00
|
|
|
#elif defined(HAVE_WM8731) || defined(HAVE_WM8721)
|
2006-03-27 16:05:51 +00:00
|
|
|
[SOUND_VOLUME] = {"dB", 0, 1, -74, 6, -25, sound_set_volume},
|
2006-02-26 15:59:46 +00:00
|
|
|
[SOUND_BASS] = {"dB", 0, 1, -6, 9, 0, sound_set_bass},
|
|
|
|
[SOUND_TREBLE] = {"dB", 0, 1, -6, 9, 0, sound_set_treble},
|
2006-08-12 21:03:23 +00:00
|
|
|
#elif (CONFIG_CPU == PNX0101)
|
|
|
|
[SOUND_VOLUME] = {"dB", 0, 1, -48, 15, 0, sound_set_volume},
|
2006-11-22 00:49:16 +00:00
|
|
|
#elif defined(HAVE_PP5024_CODEC)
|
|
|
|
/* TODO: Make this correct */
|
|
|
|
[SOUND_VOLUME] = {"dB", 0, 1, -74, 6, -25, sound_set_volume},
|
2005-11-06 23:12:11 +00:00
|
|
|
#else /* MAS3507D */
|
2005-12-07 23:07:07 +00:00
|
|
|
[SOUND_VOLUME] = {"dB", 0, 1, -78, 18, -18, sound_set_volume},
|
2005-11-06 23:12:11 +00:00
|
|
|
[SOUND_BASS] = {"dB", 0, 1, -15, 15, 7, sound_set_bass},
|
|
|
|
[SOUND_TREBLE] = {"dB", 0, 1, -15, 15, 7, sound_set_treble},
|
2005-04-01 13:41:03 +00:00
|
|
|
#endif
|
2005-11-06 23:12:11 +00:00
|
|
|
[SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0, sound_set_balance},
|
|
|
|
[SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0, sound_set_channels},
|
|
|
|
[SOUND_STEREO_WIDTH] = {"%", 0, 1, 0, 255, 100, sound_set_stereo_width},
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-11-06 23:12:11 +00:00
|
|
|
[SOUND_LOUDNESS] = {"dB", 0, 1, 0, 17, 0, sound_set_loudness},
|
|
|
|
[SOUND_AVC] = {"", 0, 1, -1, 4, 0, sound_set_avc},
|
|
|
|
[SOUND_MDB_STRENGTH] = {"dB", 0, 1, 0, 127, 48, sound_set_mdb_strength},
|
|
|
|
[SOUND_MDB_HARMONICS] = {"%", 0, 1, 0, 100, 50, sound_set_mdb_harmonics},
|
|
|
|
[SOUND_MDB_CENTER] = {"Hz", 0, 10, 20, 300, 60, sound_set_mdb_center},
|
|
|
|
[SOUND_MDB_SHAPE] = {"Hz", 0, 10, 50, 300, 90, sound_set_mdb_shape},
|
|
|
|
[SOUND_MDB_ENABLE] = {"", 0, 1, 0, 1, 0, sound_set_mdb_enable},
|
|
|
|
[SOUND_SUPERBASS] = {"", 0, 1, 0, 1, 0, sound_set_superbass},
|
2005-04-01 13:41:03 +00:00
|
|
|
#endif
|
2005-11-06 23:12:11 +00:00
|
|
|
#if CONFIG_CODEC == MAS3587F
|
|
|
|
[SOUND_LEFT_GAIN] = {"dB", 1, 1, 0, 15, 8, NULL},
|
|
|
|
[SOUND_RIGHT_GAIN] = {"dB", 1, 1, 0, 15, 8, NULL},
|
|
|
|
[SOUND_MIC_GAIN] = {"dB", 1, 1, 0, 15, 2, NULL},
|
2005-11-12 04:00:56 +00:00
|
|
|
#elif defined(HAVE_UDA1380)
|
2006-05-14 23:34:24 +00:00
|
|
|
[SOUND_LEFT_GAIN] = {"dB", 1, 1,-128, 96, 0, NULL},
|
|
|
|
[SOUND_RIGHT_GAIN] = {"dB", 1, 1,-128, 96, 0, NULL},
|
|
|
|
[SOUND_MIC_GAIN] = {"dB", 1, 1,-128, 108, 16, NULL},
|
2006-07-21 08:42:28 +00:00
|
|
|
#elif defined(HAVE_TLV320)
|
|
|
|
[SOUND_LEFT_GAIN] = {"dB", 1, 1, 0, 31, 23, NULL},
|
|
|
|
[SOUND_RIGHT_GAIN] = {"dB", 1, 1, 0, 31, 23, NULL},
|
|
|
|
[SOUND_MIC_GAIN] = {"dB", 1, 1, 0, 1, 1, NULL},
|
|
|
|
#endif
|
2005-04-01 13:41:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const char *sound_unit(int setting)
|
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
return sound_settings_table[setting].unit;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_numdecimals(int setting)
|
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
return sound_settings_table[setting].numdecimals;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_steps(int setting)
|
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
return sound_settings_table[setting].steps;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_min(int setting)
|
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
return sound_settings_table[setting].minval;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_max(int setting)
|
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
return sound_settings_table[setting].maxval;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_default(int setting)
|
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
return sound_settings_table[setting].defaultval;
|
|
|
|
}
|
|
|
|
|
|
|
|
sound_set_type* sound_get_fn(int setting)
|
|
|
|
{
|
|
|
|
if ((unsigned)setting < (sizeof(sound_settings_table)
|
|
|
|
/ sizeof(struct sound_settings_info)))
|
|
|
|
return sound_settings_table[setting].setfn;
|
|
|
|
else
|
|
|
|
return NULL;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC == MAS3507D /* volume/balance/treble/bass interdependency */
|
2005-06-19 23:33:23 +00:00
|
|
|
#define VOLUME_MIN -780
|
|
|
|
#define VOLUME_MAX 180
|
|
|
|
|
2005-04-01 13:41:03 +00:00
|
|
|
static const unsigned int bass_table[] =
|
|
|
|
{
|
|
|
|
0x9e400, /* -15dB */
|
|
|
|
0xa2800, /* -14dB */
|
|
|
|
0xa7400, /* -13dB */
|
|
|
|
0xac400, /* -12dB */
|
|
|
|
0xb1800, /* -11dB */
|
|
|
|
0xb7400, /* -10dB */
|
|
|
|
0xbd400, /* -9dB */
|
|
|
|
0xc3c00, /* -8dB */
|
|
|
|
0xca400, /* -7dB */
|
|
|
|
0xd1800, /* -6dB */
|
|
|
|
0xd8c00, /* -5dB */
|
|
|
|
0xe0400, /* -4dB */
|
|
|
|
0xe8000, /* -3dB */
|
|
|
|
0xefc00, /* -2dB */
|
|
|
|
0xf7c00, /* -1dB */
|
|
|
|
0,
|
|
|
|
0x800, /* 1dB */
|
|
|
|
0x10000, /* 2dB */
|
|
|
|
0x17c00, /* 3dB */
|
|
|
|
0x1f800, /* 4dB */
|
|
|
|
0x27000, /* 5dB */
|
|
|
|
0x2e400, /* 6dB */
|
|
|
|
0x35800, /* 7dB */
|
|
|
|
0x3c000, /* 8dB */
|
|
|
|
0x42800, /* 9dB */
|
|
|
|
0x48800, /* 10dB */
|
|
|
|
0x4e400, /* 11dB */
|
|
|
|
0x53800, /* 12dB */
|
|
|
|
0x58800, /* 13dB */
|
|
|
|
0x5d400, /* 14dB */
|
|
|
|
0x61800 /* 15dB */
|
|
|
|
};
|
|
|
|
|
|
|
|
static const unsigned int treble_table[] =
|
|
|
|
{
|
|
|
|
0xb2c00, /* -15dB */
|
|
|
|
0xbb400, /* -14dB */
|
|
|
|
0xc1800, /* -13dB */
|
|
|
|
0xc6c00, /* -12dB */
|
|
|
|
0xcbc00, /* -11dB */
|
|
|
|
0xd0400, /* -10dB */
|
|
|
|
0xd5000, /* -9dB */
|
|
|
|
0xd9800, /* -8dB */
|
|
|
|
0xde000, /* -7dB */
|
|
|
|
0xe2800, /* -6dB */
|
|
|
|
0xe7e00, /* -5dB */
|
|
|
|
0xec000, /* -4dB */
|
|
|
|
0xf0c00, /* -3dB */
|
|
|
|
0xf5c00, /* -2dB */
|
|
|
|
0xfac00, /* -1dB */
|
|
|
|
0,
|
|
|
|
0x5400, /* 1dB */
|
|
|
|
0xac00, /* 2dB */
|
|
|
|
0x10400, /* 3dB */
|
|
|
|
0x16000, /* 4dB */
|
|
|
|
0x1c000, /* 5dB */
|
|
|
|
0x22400, /* 6dB */
|
|
|
|
0x28400, /* 7dB */
|
|
|
|
0x2ec00, /* 8dB */
|
|
|
|
0x35400, /* 9dB */
|
|
|
|
0x3c000, /* 10dB */
|
|
|
|
0x42c00, /* 11dB */
|
|
|
|
0x49c00, /* 12dB */
|
|
|
|
0x51800, /* 13dB */
|
|
|
|
0x58400, /* 14dB */
|
|
|
|
0x5f800 /* 15dB */
|
|
|
|
};
|
|
|
|
|
|
|
|
static const unsigned int prescale_table[] =
|
|
|
|
{
|
|
|
|
0x80000, /* 0db */
|
|
|
|
0x8e000, /* 1dB */
|
|
|
|
0x9a400, /* 2dB */
|
|
|
|
0xa5800, /* 3dB */
|
|
|
|
0xaf400, /* 4dB */
|
|
|
|
0xb8000, /* 5dB */
|
|
|
|
0xbfc00, /* 6dB */
|
|
|
|
0xc6c00, /* 7dB */
|
|
|
|
0xcd000, /* 8dB */
|
|
|
|
0xd25c0, /* 9dB */
|
|
|
|
0xd7800, /* 10dB */
|
|
|
|
0xdc000, /* 11dB */
|
|
|
|
0xdfc00, /* 12dB */
|
|
|
|
0xe3400, /* 13dB */
|
|
|
|
0xe6800, /* 14dB */
|
|
|
|
0xe9400 /* 15dB */
|
|
|
|
};
|
|
|
|
|
2005-12-07 23:07:07 +00:00
|
|
|
/* convert tenth of dB volume (-780..+180) to dac3550 register value */
|
|
|
|
static int tenthdb2reg(int db)
|
|
|
|
{
|
|
|
|
if (db < -540) /* 3 dB steps */
|
2005-04-01 13:41:03 +00:00
|
|
|
return (db + 780) / 30;
|
2005-12-07 23:07:07 +00:00
|
|
|
else /* 1.5 dB steps */
|
2005-04-01 13:41:03 +00:00
|
|
|
return (db + 660) / 15;
|
|
|
|
}
|
2005-06-19 23:33:23 +00:00
|
|
|
#endif
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2006-12-06 13:34:15 +00:00
|
|
|
#if defined(HAVE_PP5024_CODEC)
|
2006-11-22 00:49:16 +00:00
|
|
|
/* TODO: Work out volume/balance/treble/bass interdependency */
|
|
|
|
#define VOLUME_MIN 0
|
|
|
|
#define VOLUME_MAX 1
|
|
|
|
|
2005-06-19 23:33:23 +00:00
|
|
|
#endif
|
|
|
|
|
2006-03-30 20:18:02 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3507D) || defined HAVE_UDA1380 \
|
|
|
|
|| defined HAVE_WM8975 || defined HAVE_WM8758 || defined(HAVE_WM8731) \
|
2006-11-22 00:49:16 +00:00
|
|
|
|| defined(HAVE_WM8721) || defined(HAVE_TLV320) || defined(HAVE_WM8751) \
|
|
|
|
|| defined(HAVE_PP5024_CODEC)
|
2005-06-19 23:33:23 +00:00
|
|
|
/* volume/balance/treble/bass interdependency main part */
|
|
|
|
#define VOLUME_RANGE (VOLUME_MAX - VOLUME_MIN)
|
|
|
|
|
|
|
|
/* all values in tenth of dB MAS3507D UDA1380 */
|
|
|
|
int current_volume = 0; /* -780..+180 -840.. 0 */
|
|
|
|
int current_balance = 0; /* -960..+960 -840..+840 */
|
|
|
|
int current_treble = 0; /* -150..+150 0.. +60 */
|
|
|
|
int current_bass = 0; /* -150..+150 0..+240 */
|
2005-06-18 01:25:47 +00:00
|
|
|
|
2005-06-19 23:33:23 +00:00
|
|
|
static void set_prescaled_volume(void)
|
2005-06-18 01:25:47 +00:00
|
|
|
{
|
2006-03-29 08:47:04 +00:00
|
|
|
int prescale = 0;
|
2005-06-18 01:25:47 +00:00
|
|
|
int l, r;
|
|
|
|
|
2006-03-29 08:47:04 +00:00
|
|
|
#ifndef HAVE_TLV320
|
2005-06-19 23:33:23 +00:00
|
|
|
prescale = MAX(current_bass, current_treble);
|
|
|
|
if (prescale < 0)
|
|
|
|
prescale = 0; /* no need to prescale if we don't boost
|
|
|
|
bass or treble */
|
|
|
|
|
2005-12-07 23:07:07 +00:00
|
|
|
/* Gain up the analog volume to compensate the prescale gain reduction,
|
|
|
|
* but if this would push the volume over the top, reduce prescaling
|
|
|
|
* instead (might cause clipping). */
|
2005-06-19 23:33:23 +00:00
|
|
|
if (current_volume + prescale > VOLUME_MAX)
|
|
|
|
prescale = VOLUME_MAX - current_volume;
|
2006-03-29 08:47:04 +00:00
|
|
|
#endif
|
|
|
|
|
2005-12-07 23:07:07 +00:00
|
|
|
#if CONFIG_CODEC == MAS3507D
|
|
|
|
mas_writereg(MAS_REG_KPRESCALE, prescale_table[prescale/10]);
|
2006-01-30 21:12:31 +00:00
|
|
|
#elif defined(HAVE_UDA1380)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_mixer_vol(tenthdb2mixer(-prescale), tenthdb2mixer(-prescale));
|
2006-03-30 20:18:02 +00:00
|
|
|
#elif defined(HAVE_WM8975) || defined(HAVE_WM8758) \
|
2006-10-21 16:49:07 +00:00
|
|
|
|| defined(HAVE_WM8731) || defined(HAVE_WM8721) || defined(HAVE_WM8751)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_mixer_vol(tenthdb2mixer(-prescale), tenthdb2mixer(-prescale));
|
2005-12-07 23:07:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (current_volume == VOLUME_MIN)
|
|
|
|
prescale = 0; /* Make sure the chip gets muted at VOLUME_MIN */
|
|
|
|
|
2005-06-19 23:33:23 +00:00
|
|
|
l = r = current_volume + prescale;
|
2005-06-18 01:25:47 +00:00
|
|
|
|
|
|
|
if (current_balance > 0)
|
|
|
|
{
|
|
|
|
l -= current_balance;
|
2005-06-19 23:33:23 +00:00
|
|
|
if (l < VOLUME_MIN)
|
|
|
|
l = VOLUME_MIN;
|
2005-06-18 01:25:47 +00:00
|
|
|
}
|
|
|
|
if (current_balance < 0)
|
|
|
|
{
|
|
|
|
r += current_balance;
|
2005-06-19 23:33:23 +00:00
|
|
|
if (r < VOLUME_MIN)
|
|
|
|
r = VOLUME_MIN;
|
2005-06-18 01:25:47 +00:00
|
|
|
}
|
|
|
|
|
2005-12-07 23:07:07 +00:00
|
|
|
#if CONFIG_CODEC == MAS3507D
|
2005-06-19 23:33:23 +00:00
|
|
|
dac_volume(tenthdb2reg(l), tenthdb2reg(r), false);
|
2006-01-30 21:12:31 +00:00
|
|
|
#elif defined(HAVE_UDA1380)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_master_vol(tenthdb2master(l), tenthdb2master(r));
|
2006-03-30 20:18:02 +00:00
|
|
|
#elif defined(HAVE_WM8975) || defined(HAVE_WM8758) \
|
2006-10-21 16:49:07 +00:00
|
|
|
|| defined(HAVE_WM8731) || defined(HAVE_WM8721) || defined(HAVE_WM8751)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_master_vol(tenthdb2master(l), tenthdb2master(r));
|
2006-10-21 16:49:07 +00:00
|
|
|
#if defined(HAVE_WM8975) || defined(HAVE_WM8758) || defined(HAVE_WM8751)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_lineout_vol(tenthdb2master(0), tenthdb2master(0));
|
2006-03-22 13:04:49 +00:00
|
|
|
#endif
|
|
|
|
|
2006-03-28 20:38:05 +00:00
|
|
|
#elif defined(HAVE_TLV320)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_headphone_vol(tenthdb2master(l), tenthdb2master(r));
|
2005-06-18 01:25:47 +00:00
|
|
|
#endif
|
2005-06-19 23:33:23 +00:00
|
|
|
}
|
2005-08-29 21:15:27 +00:00
|
|
|
#endif /* (CONFIG_CODEC == MAS3507D) || defined HAVE_UDA1380 */
|
2005-04-01 13:41:03 +00:00
|
|
|
#endif /* !SIMULATOR */
|
|
|
|
|
2006-03-21 23:20:17 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2005-04-01 13:41:03 +00:00
|
|
|
int channel_configuration = SOUND_CHAN_STEREO;
|
|
|
|
int stereo_width = 100;
|
2006-03-21 23:20:17 +00:00
|
|
|
#endif
|
2005-04-01 13:41:03 +00:00
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
2006-03-21 23:20:17 +00:00
|
|
|
|
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2005-04-01 13:41:03 +00:00
|
|
|
static void set_channel_config(void)
|
|
|
|
{
|
|
|
|
/* default values: stereo */
|
|
|
|
unsigned long val_ll = 0x80000;
|
|
|
|
unsigned long val_lr = 0;
|
|
|
|
unsigned long val_rl = 0;
|
|
|
|
unsigned long val_rr = 0x80000;
|
|
|
|
|
|
|
|
switch(channel_configuration)
|
|
|
|
{
|
|
|
|
/* case SOUND_CHAN_STEREO unnecessary */
|
|
|
|
|
|
|
|
case SOUND_CHAN_MONO:
|
|
|
|
val_ll = 0xc0000;
|
|
|
|
val_lr = 0xc0000;
|
|
|
|
val_rl = 0xc0000;
|
|
|
|
val_rr = 0xc0000;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOUND_CHAN_CUSTOM:
|
|
|
|
{
|
|
|
|
/* fixed point variables (matching MAS internal format)
|
|
|
|
integer part: upper 13 bits (inlcuding sign)
|
|
|
|
fractional part: lower 19 bits */
|
|
|
|
long fp_width, fp_straight, fp_cross;
|
|
|
|
|
|
|
|
fp_width = (stereo_width << 19) / 100;
|
|
|
|
if (stereo_width <= 100)
|
|
|
|
{
|
|
|
|
fp_straight = - ((1<<19) + fp_width) / 2;
|
|
|
|
fp_cross = fp_straight + fp_width;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-26 17:41:36 +00:00
|
|
|
/* straight = - (1 + width) / (2 * width) */
|
|
|
|
fp_straight = - ((((1<<19) + fp_width) / (fp_width >> 9)) << 9);
|
|
|
|
fp_cross = (1<<19) + fp_straight;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
2006-03-26 17:41:36 +00:00
|
|
|
val_ll = val_rr = fp_straight & 0xfffff;
|
|
|
|
val_lr = val_rl = fp_cross & 0xfffff;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOUND_CHAN_MONO_LEFT:
|
|
|
|
val_ll = 0x80000;
|
|
|
|
val_lr = 0x80000;
|
|
|
|
val_rl = 0;
|
|
|
|
val_rr = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOUND_CHAN_MONO_RIGHT:
|
|
|
|
val_ll = 0;
|
|
|
|
val_lr = 0;
|
|
|
|
val_rl = 0x80000;
|
|
|
|
val_rr = 0x80000;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOUND_CHAN_KARAOKE:
|
2006-03-26 17:41:36 +00:00
|
|
|
val_ll = 0xc0000;
|
|
|
|
val_lr = 0x40000;
|
|
|
|
val_rl = 0x40000;
|
|
|
|
val_rr = 0xc0000;
|
2005-04-01 13:41:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-04-01 13:41:03 +00:00
|
|
|
mas_writemem(MAS_BANK_D0, MAS_D0_OUT_LL, &val_ll, 1); /* LL */
|
|
|
|
mas_writemem(MAS_BANK_D0, MAS_D0_OUT_LR, &val_lr, 1); /* LR */
|
|
|
|
mas_writemem(MAS_BANK_D0, MAS_D0_OUT_RL, &val_rl, 1); /* RL */
|
|
|
|
mas_writemem(MAS_BANK_D0, MAS_D0_OUT_RR, &val_rr, 1); /* RR */
|
2005-08-29 21:15:27 +00:00
|
|
|
#elif CONFIG_CODEC == MAS3507D
|
2005-04-01 13:41:03 +00:00
|
|
|
mas_writemem(MAS_BANK_D1, 0x7f8, &val_ll, 1); /* LL */
|
|
|
|
mas_writemem(MAS_BANK_D1, 0x7f9, &val_lr, 1); /* LR */
|
|
|
|
mas_writemem(MAS_BANK_D1, 0x7fa, &val_rl, 1); /* RL */
|
|
|
|
mas_writemem(MAS_BANK_D1, 0x7fb, &val_rr, 1); /* RR */
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-03-21 23:20:17 +00:00
|
|
|
#endif /* CONFIG_CODEC != SWCODEC */
|
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-04-01 13:41:03 +00:00
|
|
|
unsigned long mdb_shape_shadow = 0;
|
|
|
|
unsigned long loudness_shadow = 0;
|
|
|
|
#endif
|
|
|
|
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_volume(int value)
|
|
|
|
{
|
2005-04-01 13:41:03 +00:00
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-12-07 23:07:07 +00:00
|
|
|
unsigned tmp = ((unsigned)(value + 115) & 0xff) << 8;
|
|
|
|
mas_codec_writereg(0x10, tmp);
|
2006-03-30 20:18:02 +00:00
|
|
|
#elif (CONFIG_CODEC == MAS3507D) || defined HAVE_UDA1380 \
|
|
|
|
|| defined HAVE_WM8975 || defined HAVE_WM8758 || defined HAVE_WM8731 \
|
2006-11-22 00:49:16 +00:00
|
|
|
|| defined(HAVE_WM8721) || defined(HAVE_TLV320) || defined(HAVE_WM8751) \
|
|
|
|
|| defined(HAVE_PP5024_CODEC)
|
2005-12-07 23:07:07 +00:00
|
|
|
current_volume = value * 10; /* tenth of dB */
|
|
|
|
set_prescaled_volume();
|
2006-02-03 23:14:42 +00:00
|
|
|
#elif CONFIG_CPU == PNX0101
|
2006-08-12 21:03:23 +00:00
|
|
|
int tmp = (60 - value * 4) & 0xff;
|
|
|
|
CODECVOL = tmp | (tmp << 8);
|
2005-12-07 23:07:07 +00:00
|
|
|
#endif
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_balance(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-12-07 23:07:07 +00:00
|
|
|
unsigned tmp = ((unsigned)(value * 127 / 100) & 0xff) << 8;
|
|
|
|
mas_codec_writereg(0x11, tmp);
|
2006-03-30 20:18:02 +00:00
|
|
|
#elif CONFIG_CODEC == MAS3507D || defined HAVE_UDA1380 \
|
|
|
|
|| defined HAVE_WM8975 || defined HAVE_WM8758 || defined HAVE_WM8731 \
|
2006-10-21 16:49:07 +00:00
|
|
|
|| defined(HAVE_WM8721) || defined(HAVE_TLV320) || defined(HAVE_WM8751)
|
2005-11-06 03:18:34 +00:00
|
|
|
current_balance = value * VOLUME_RANGE / 100; /* tenth of dB */
|
|
|
|
set_prescaled_volume();
|
2006-11-22 00:49:16 +00:00
|
|
|
#elif CONFIG_CPU == PNX0101 || defined(HAVE_PP5024_CODEC)
|
|
|
|
/* TODO: implement for iFP and Sansa */
|
2006-02-03 23:14:42 +00:00
|
|
|
(void)value;
|
2005-12-07 23:07:07 +00:00
|
|
|
#endif
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2006-03-29 08:47:04 +00:00
|
|
|
#ifndef HAVE_TLV320
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_bass(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-12-07 23:07:07 +00:00
|
|
|
unsigned tmp = ((unsigned)(value * 8) & 0xff) << 8;
|
|
|
|
mas_codec_writereg(0x14, tmp);
|
2005-08-29 21:15:27 +00:00
|
|
|
#elif CONFIG_CODEC == MAS3507D
|
2005-11-06 03:18:34 +00:00
|
|
|
mas_writereg(MAS_REG_KBASS, bass_table[value+15]);
|
|
|
|
current_bass = value * 10;
|
|
|
|
set_prescaled_volume();
|
2005-06-18 01:25:47 +00:00
|
|
|
#elif defined(HAVE_UDA1380)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_bass(value >> 1);
|
2005-11-06 03:18:34 +00:00
|
|
|
current_bass = value * 10;
|
2005-12-07 23:07:07 +00:00
|
|
|
set_prescaled_volume();
|
2006-03-30 20:18:02 +00:00
|
|
|
#elif defined HAVE_WM8975 || defined HAVE_WM8758 \
|
2006-10-21 16:49:07 +00:00
|
|
|
|| defined HAVE_WM8731 || defined(HAVE_WM8721) || defined(HAVE_WM8751)
|
2006-01-30 21:12:31 +00:00
|
|
|
current_bass = value * 10;
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_bass(value);
|
2006-01-30 21:12:31 +00:00
|
|
|
set_prescaled_volume();
|
2006-11-22 00:49:16 +00:00
|
|
|
#elif CONFIG_CPU == PNX0101 || defined(HAVE_PP5024_CODEC)
|
|
|
|
/* TODO: implement for iFP and Sansa */
|
2006-02-03 23:14:42 +00:00
|
|
|
(void)value;
|
2005-11-06 23:12:11 +00:00
|
|
|
#endif
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_treble(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-12-07 23:07:07 +00:00
|
|
|
unsigned tmp = ((unsigned)(value * 8) & 0xff) << 8;
|
|
|
|
mas_codec_writereg(0x15, tmp);
|
2005-08-29 21:15:27 +00:00
|
|
|
#elif CONFIG_CODEC == MAS3507D
|
2005-11-06 03:18:34 +00:00
|
|
|
mas_writereg(MAS_REG_KTREBLE, treble_table[value+15]);
|
|
|
|
current_treble = value * 10;
|
|
|
|
set_prescaled_volume();
|
2005-06-18 01:25:47 +00:00
|
|
|
#elif defined(HAVE_UDA1380)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_treble(value >> 1);
|
2005-11-06 03:18:34 +00:00
|
|
|
current_treble = value * 10;
|
2005-12-07 23:07:07 +00:00
|
|
|
set_prescaled_volume();
|
2006-03-30 20:18:02 +00:00
|
|
|
#elif defined(HAVE_WM8975) || defined(HAVE_WM8758) \
|
2006-10-21 16:49:07 +00:00
|
|
|
|| defined(HAVE_WM8731) || defined(HAVE_WM8721) || defined(HAVE_WM8751)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_treble(value);
|
2006-01-30 21:12:31 +00:00
|
|
|
current_treble = value * 10;
|
|
|
|
set_prescaled_volume();
|
2006-11-22 00:49:16 +00:00
|
|
|
#elif CONFIG_CPU == PNX0101 || defined(HAVE_PP5024_CODEC)
|
|
|
|
/* TODO: implement for iFP and Sansa */
|
2006-02-03 23:14:42 +00:00
|
|
|
(void)value;
|
2005-11-06 23:12:11 +00:00
|
|
|
#endif
|
|
|
|
}
|
2006-03-29 08:47:04 +00:00
|
|
|
#endif /* HAVE_TLV320 */
|
2005-11-06 23:12:11 +00:00
|
|
|
|
|
|
|
void sound_set_channels(int value)
|
|
|
|
{
|
2006-03-21 23:20:17 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
(void)value;
|
|
|
|
#else
|
2005-11-06 23:12:11 +00:00
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
channel_configuration = value;
|
2006-03-21 23:20:17 +00:00
|
|
|
set_channel_config();
|
|
|
|
#endif
|
2005-11-06 23:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_stereo_width(int value)
|
|
|
|
{
|
2006-03-21 23:20:17 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
(void)value;
|
|
|
|
#else
|
2005-11-06 23:12:11 +00:00
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
stereo_width = value;
|
|
|
|
if (channel_configuration == SOUND_CHAN_CUSTOM)
|
|
|
|
set_channel_config();
|
2006-03-21 23:20:17 +00:00
|
|
|
#endif
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_loudness(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
loudness_shadow = (loudness_shadow & 0x04) |
|
|
|
|
(MAX(MIN(value * 4, 0x44), 0) << 8);
|
|
|
|
mas_codec_writereg(MAS_REG_KLOUDNESS, loudness_shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_avc(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
int tmp;
|
|
|
|
switch (value) {
|
|
|
|
case 1: /* 20ms */
|
|
|
|
tmp = (0x1 << 8) | (0x8 << 12);
|
2005-04-01 13:41:03 +00:00
|
|
|
break;
|
2005-11-06 03:18:34 +00:00
|
|
|
case 2: /* 2s */
|
|
|
|
tmp = (0x2 << 8) | (0x8 << 12);
|
|
|
|
break;
|
|
|
|
case 3: /* 4s */
|
|
|
|
tmp = (0x4 << 8) | (0x8 << 12);
|
2005-04-01 13:41:03 +00:00
|
|
|
break;
|
2005-11-06 03:18:34 +00:00
|
|
|
case 4: /* 8s */
|
|
|
|
tmp = (0x8 << 8) | (0x8 << 12);
|
|
|
|
break;
|
|
|
|
case -1: /* turn off and then turn on again to decay quickly */
|
|
|
|
tmp = mas_codec_readreg(MAS_REG_KAVC);
|
|
|
|
mas_codec_writereg(MAS_REG_KAVC, 0);
|
|
|
|
break;
|
|
|
|
default: /* off */
|
|
|
|
tmp = 0;
|
|
|
|
break;
|
|
|
|
}
|
2005-11-06 23:12:11 +00:00
|
|
|
mas_codec_writereg(MAS_REG_KAVC, tmp);
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_strength(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2005-11-06 23:12:11 +00:00
|
|
|
mas_codec_writereg(MAS_REG_KMDB_STR, (value & 0x7f) << 8);
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_harmonics(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
int tmp = value * 127 / 100;
|
|
|
|
mas_codec_writereg(MAS_REG_KMDB_HAR, (tmp & 0x7f) << 8);
|
|
|
|
}
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_mdb_center(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
mas_codec_writereg(MAS_REG_KMDB_FC, (value/10) << 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_shape(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
mdb_shape_shadow = (mdb_shape_shadow & 0x02) | ((value/10) << 8);
|
|
|
|
mas_codec_writereg(MAS_REG_KMDB_SWITCH, mdb_shape_shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_enable(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
mdb_shape_shadow = (mdb_shape_shadow & ~0x02) | (value?2:0);
|
|
|
|
mas_codec_writereg(MAS_REG_KMDB_SWITCH, mdb_shape_shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_superbass(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
loudness_shadow = (loudness_shadow & ~0x04) | (value?4:0);
|
|
|
|
mas_codec_writereg(MAS_REG_KLOUDNESS, loudness_shadow);
|
|
|
|
}
|
|
|
|
#endif /* (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) */
|
|
|
|
|
2005-11-06 23:12:11 +00:00
|
|
|
#else /* SIMULATOR */
|
|
|
|
void sound_set_volume(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_balance(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_bass(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_treble(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_channels(int value)
|
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
(void)value;
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_stereo_width(int value)
|
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
(void)value;
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-11-06 23:12:11 +00:00
|
|
|
void sound_set_loudness(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
2005-11-06 23:12:11 +00:00
|
|
|
void sound_set_avc(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_strength(int value)
|
2005-11-06 03:18:34 +00:00
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
(void)value;
|
|
|
|
}
|
2005-11-06 03:18:34 +00:00
|
|
|
|
2005-11-06 23:12:11 +00:00
|
|
|
void sound_set_mdb_harmonics(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_center(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_shape(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_enable(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_superbass(int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
}
|
|
|
|
#endif /* (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) */
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
|
|
|
|
void sound_set(int setting, int value)
|
|
|
|
{
|
|
|
|
sound_set_type* sound_set_val = sound_get_fn(setting);
|
|
|
|
if (sound_set_val)
|
2005-11-06 03:18:34 +00:00
|
|
|
sound_set_val(value);
|
|
|
|
}
|
|
|
|
|
2005-04-01 13:41:03 +00:00
|
|
|
int sound_val2phys(int setting, int value)
|
|
|
|
{
|
2005-11-06 23:12:11 +00:00
|
|
|
#if CONFIG_CODEC == MAS3587F
|
2005-04-01 13:41:03 +00:00
|
|
|
int result = 0;
|
2005-11-06 23:12:11 +00:00
|
|
|
|
2005-04-01 13:41:03 +00:00
|
|
|
switch(setting)
|
|
|
|
{
|
|
|
|
case SOUND_LEFT_GAIN:
|
|
|
|
case SOUND_RIGHT_GAIN:
|
|
|
|
result = (value - 2) * 15;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOUND_MIC_GAIN:
|
|
|
|
result = value * 15 + 210;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
result = value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return result;
|
2005-11-12 04:00:56 +00:00
|
|
|
#elif defined(HAVE_UDA1380)
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
switch(setting)
|
|
|
|
{
|
|
|
|
case SOUND_LEFT_GAIN:
|
|
|
|
case SOUND_RIGHT_GAIN:
|
|
|
|
case SOUND_MIC_GAIN:
|
2006-05-14 23:34:24 +00:00
|
|
|
result = value * 5; /* (1/2) * 10 */
|
2005-11-12 04:00:56 +00:00
|
|
|
break;
|
|
|
|
|
2006-05-14 23:34:24 +00:00
|
|
|
default:
|
2005-11-12 04:00:56 +00:00
|
|
|
result = value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return result;
|
2006-07-21 08:42:28 +00:00
|
|
|
#elif defined(HAVE_TLV320)
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
switch(setting)
|
|
|
|
{
|
|
|
|
case SOUND_LEFT_GAIN:
|
|
|
|
case SOUND_RIGHT_GAIN:
|
|
|
|
result = (value - 23) * 15; /* (x - 23)/1.5 *10 */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOUND_MIC_GAIN:
|
|
|
|
result = value * 200; /* 0 or 20 dB */
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
result = value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return result;
|
2005-04-01 13:41:03 +00:00
|
|
|
#else
|
|
|
|
(void)setting;
|
|
|
|
return value;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2005-11-06 23:12:11 +00:00
|
|
|
#ifndef SIMULATOR
|
2005-04-01 13:41:03 +00:00
|
|
|
/* This function works by telling the decoder that we have another
|
|
|
|
crystal frequency than we actually have. It will adjust its internal
|
|
|
|
parameters and the result is that the audio is played at another pitch.
|
|
|
|
|
|
|
|
The pitch value is in tenths of percent.
|
|
|
|
*/
|
2005-05-22 12:45:35 +00:00
|
|
|
static int last_pitch = 1000;
|
|
|
|
|
2005-04-01 13:41:03 +00:00
|
|
|
void sound_set_pitch(int pitch)
|
|
|
|
{
|
|
|
|
unsigned long val;
|
|
|
|
|
2005-05-22 12:45:35 +00:00
|
|
|
if (pitch != last_pitch)
|
|
|
|
{
|
|
|
|
/* Calculate the new (bogus) frequency */
|
|
|
|
val = 18432 * 1000 / pitch;
|
2005-11-06 03:18:34 +00:00
|
|
|
|
2005-05-22 12:45:35 +00:00
|
|
|
mas_writemem(MAS_BANK_D0, MAS_D0_OFREQ_CONTROL, &val, 1);
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2005-05-22 12:45:35 +00:00
|
|
|
/* We must tell the MAS that the frequency has changed.
|
|
|
|
* This will unfortunately cause a short silence. */
|
|
|
|
mas_writemem(MAS_BANK_D0, MAS_D0_IO_CONTROL_MAIN, &shadow_io_control_main, 1);
|
2005-11-06 03:18:34 +00:00
|
|
|
|
2005-05-22 12:45:35 +00:00
|
|
|
last_pitch = pitch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int sound_get_pitch(void)
|
|
|
|
{
|
|
|
|
return last_pitch;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
2005-11-06 23:12:11 +00:00
|
|
|
#else /* SIMULATOR */
|
2005-04-01 13:41:03 +00:00
|
|
|
void sound_set_pitch(int pitch)
|
|
|
|
{
|
|
|
|
(void)pitch;
|
|
|
|
}
|
2005-05-22 12:45:35 +00:00
|
|
|
|
|
|
|
int sound_get_pitch(void)
|
|
|
|
{
|
|
|
|
return 1000;
|
|
|
|
}
|
2005-11-06 23:12:11 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) */
|