2005-04-01 13:41:03 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Linus Nielsen Feltzing
|
2007-05-22 15:56:05 +00:00
|
|
|
* Copyright (C) 2007 by Christian Gmeiner
|
2005-04-01 13:41:03 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +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.
|
2005-04-01 13:41:03 +00:00
|
|
|
*
|
|
|
|
* 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"
|
2009-01-02 11:21:58 +00:00
|
|
|
#include "system.h"
|
2005-04-01 13:41:03 +00:00
|
|
|
#include "i2c.h"
|
|
|
|
|
2008-04-28 22:15:52 +00:00
|
|
|
/* TODO
|
|
|
|
* find a nice way to handle 1.5db steps -> see wm8751 ifdef in sound_set_bass/treble
|
|
|
|
*/
|
|
|
|
|
2005-04-01 13:41:03 +00:00
|
|
|
extern bool audio_is_initialized;
|
|
|
|
|
|
|
|
const char *sound_unit(int setting)
|
|
|
|
{
|
2007-05-22 15:56:05 +00:00
|
|
|
return audiohw_settings[setting].unit;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_numdecimals(int setting)
|
|
|
|
{
|
2007-05-22 15:56:05 +00:00
|
|
|
return audiohw_settings[setting].numdecimals;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_steps(int setting)
|
|
|
|
{
|
2007-05-22 15:56:05 +00:00
|
|
|
return audiohw_settings[setting].steps;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_min(int setting)
|
|
|
|
{
|
2007-05-22 15:56:05 +00:00
|
|
|
return audiohw_settings[setting].minval;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_max(int setting)
|
|
|
|
{
|
2007-05-22 15:56:05 +00:00
|
|
|
return audiohw_settings[setting].maxval;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sound_default(int setting)
|
|
|
|
{
|
2007-05-22 15:56:05 +00:00
|
|
|
return audiohw_settings[setting].defaultval;
|
2005-11-06 23:12:11 +00:00
|
|
|
}
|
|
|
|
|
2009-11-11 16:54:15 +00:00
|
|
|
static sound_set_type * const sound_set_fns[] =
|
2005-11-06 23:12:11 +00:00
|
|
|
{
|
2009-01-02 11:21:58 +00:00
|
|
|
[0 ... SOUND_LAST_SETTING-1] = NULL,
|
|
|
|
[SOUND_VOLUME] = sound_set_volume,
|
2010-05-15 13:09:45 +00:00
|
|
|
#if defined(AUDIOHW_HAVE_BASS)
|
2009-01-02 11:21:58 +00:00
|
|
|
[SOUND_BASS] = sound_set_bass,
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif
|
|
|
|
#if defined(AUDIOHW_HAVE_TREBLE)
|
2009-01-02 11:21:58 +00:00
|
|
|
[SOUND_TREBLE] = sound_set_treble,
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif
|
2009-01-02 11:21:58 +00:00
|
|
|
[SOUND_BALANCE] = sound_set_balance,
|
|
|
|
[SOUND_CHANNELS] = sound_set_channels,
|
|
|
|
[SOUND_STEREO_WIDTH] = sound_set_stereo_width,
|
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
|
|
|
[SOUND_LOUDNESS] = sound_set_loudness,
|
|
|
|
[SOUND_AVC] = sound_set_avc,
|
|
|
|
[SOUND_MDB_STRENGTH] = sound_set_mdb_strength,
|
|
|
|
[SOUND_MDB_HARMONICS] = sound_set_mdb_harmonics,
|
|
|
|
[SOUND_MDB_CENTER] = sound_set_mdb_center,
|
|
|
|
[SOUND_MDB_SHAPE] = sound_set_mdb_shape,
|
|
|
|
[SOUND_MDB_ENABLE] = sound_set_mdb_enable,
|
|
|
|
[SOUND_SUPERBASS] = sound_set_superbass,
|
2010-04-25 22:54:58 +00:00
|
|
|
#endif /* (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) */
|
2008-05-16 19:28:45 +00:00
|
|
|
#if defined(AUDIOHW_HAVE_BASS_CUTOFF)
|
2009-01-02 11:21:58 +00:00
|
|
|
[SOUND_BASS_CUTOFF] = sound_set_bass_cutoff,
|
2008-05-16 19:28:45 +00:00
|
|
|
#endif
|
|
|
|
#if defined(AUDIOHW_HAVE_TREBLE_CUTOFF)
|
2009-01-02 11:21:58 +00:00
|
|
|
[SOUND_TREBLE_CUTOFF] = sound_set_treble_cutoff,
|
2007-05-22 15:56:05 +00:00
|
|
|
#endif
|
2010-05-15 13:09:45 +00:00
|
|
|
#if defined(AUDIOHW_HAVE_DEPTH_3D)
|
|
|
|
[SOUND_DEPTH_3D] = sound_set_depth_3d,
|
|
|
|
#endif
|
|
|
|
/* Hardware EQ tone controls */
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ)
|
|
|
|
[SOUND_EQ_BAND1_GAIN] = sound_set_hw_eq_band1_gain,
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND1_FREQUENCY)
|
|
|
|
[SOUND_EQ_BAND1_FREQUENCY] = sound_set_hw_eq_band1_frequency,
|
|
|
|
#endif
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND2)
|
|
|
|
[SOUND_EQ_BAND2_GAIN] = sound_set_hw_eq_band2_gain,
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND2_FREQUENCY)
|
|
|
|
[SOUND_EQ_BAND2_FREQUENCY] = sound_set_hw_eq_band2_frequency,
|
|
|
|
#endif
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND2_WIDTH)
|
|
|
|
[SOUND_EQ_BAND2_WIDTH] = sound_set_hw_eq_band2_width,
|
|
|
|
#endif
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ_BAND2 */
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND3)
|
|
|
|
[SOUND_EQ_BAND3_GAIN] = sound_set_hw_eq_band3_gain,
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND3_FREQUENCY)
|
|
|
|
[SOUND_EQ_BAND3_FREQUENCY] = sound_set_hw_eq_band3_frequency,
|
|
|
|
#endif
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND3_WIDTH)
|
|
|
|
[SOUND_EQ_BAND3_WIDTH] = sound_set_hw_eq_band3_width,
|
|
|
|
#endif
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ_BAND3 */
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND4)
|
|
|
|
[SOUND_EQ_BAND4_GAIN] = sound_set_hw_eq_band4_gain,
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND4_FREQUENCY)
|
|
|
|
[SOUND_EQ_BAND4_FREQUENCY] = sound_set_hw_eq_band4_frequency,
|
|
|
|
#endif
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND4_WIDTH)
|
|
|
|
[SOUND_EQ_BAND4_WIDTH] = sound_set_hw_eq_band4_width,
|
|
|
|
#endif
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ_BAND4 */
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND5)
|
|
|
|
[SOUND_EQ_BAND5_GAIN] = sound_set_hw_eq_band5_gain,
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND5_FREQUENCY)
|
|
|
|
[SOUND_EQ_BAND5_FREQUENCY] = sound_set_hw_eq_band5_frequency,
|
|
|
|
#endif
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ_BAND5 */
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ */
|
2009-01-02 11:21:58 +00:00
|
|
|
};
|
2007-05-22 15:56:05 +00:00
|
|
|
|
2009-01-02 11:21:58 +00:00
|
|
|
sound_set_type* sound_get_fn(int setting)
|
|
|
|
{
|
|
|
|
return ((unsigned)setting >= ARRAYLEN(sound_set_fns)?
|
|
|
|
NULL : sound_set_fns[setting]);
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 19:11:16 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-02-26 00:41:26 +00:00
|
|
|
static int (*dsp_callback)(int, intptr_t) = NULL;
|
|
|
|
|
|
|
|
void sound_set_dsp_callback(int (*func)(int, intptr_t))
|
|
|
|
{
|
|
|
|
dsp_callback = func;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-05-13 06:19:16 +00:00
|
|
|
#if !defined(AUDIOHW_HAVE_CLIPPING)
|
2008-04-28 08:37:18 +00:00
|
|
|
/*
|
|
|
|
* The prescaler compensates for any kind of boosts, to prevent clipping.
|
|
|
|
*
|
|
|
|
* It's basically just a measure to make sure that audio does not clip during
|
|
|
|
* tone controls processing, like if i want to boost bass 12 dB, i can decrease
|
|
|
|
* the audio amplitude by -12 dB before processing, then increase master gain
|
|
|
|
* by 12 dB after processing.
|
|
|
|
*/
|
2005-06-19 23:33:23 +00:00
|
|
|
|
2010-08-11 09:11:43 +00:00
|
|
|
/* all values in tenth of dB MAS3507D UDA1380 */
|
|
|
|
static int current_volume = 0; /* -780..+180 -840.. 0 */
|
|
|
|
static int current_balance = 0; /* -960..+960 -840..+840 */
|
2010-05-15 13:09:45 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_TREBLE
|
2010-08-11 09:11:43 +00:00
|
|
|
static int current_treble = 0; /* -150..+150 0.. +60 */
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_BASS
|
2010-08-11 09:11:43 +00:00
|
|
|
static int current_bass = 0; /* -150..+150 0..+240 */
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ
|
2010-08-11 09:11:43 +00:00
|
|
|
static int current_eq_band_gain[AUDIOHW_EQ_BAND_NUM];
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif
|
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
|
|
|
{
|
2007-03-07 15:00:29 +00:00
|
|
|
int prescale = 0;
|
2005-06-18 01:25:47 +00:00
|
|
|
int l, r;
|
|
|
|
|
2010-04-13 20:37:04 +00:00
|
|
|
/* The codecs listed use HW tone controls but don't have suitable prescaler
|
|
|
|
* functionality, so we let the prescaler stay at 0 for these, unless
|
|
|
|
* SW tone controls are in use. This is to avoid needing the SW DSP just for
|
|
|
|
* the prescaling.
|
|
|
|
*/
|
2007-03-07 15:00:29 +00:00
|
|
|
#if defined(HAVE_SW_TONE_CONTROLS) || !(defined(HAVE_WM8975) \
|
2008-12-08 21:09:56 +00:00
|
|
|
|| defined(HAVE_WM8711) || defined(HAVE_WM8721) || defined(HAVE_WM8731) \
|
2010-05-11 04:02:45 +00:00
|
|
|
|| defined(HAVE_WM8758) || defined(HAVE_WM8985) || defined(HAVE_UDA1341))
|
2007-03-07 15:00:29 +00:00
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#if defined(AUDIOHW_HAVE_BASS) && defined(AUDIOHW_HAVE_TREBLE)
|
2005-06-19 23:33:23 +00:00
|
|
|
prescale = MAX(current_bass, current_treble);
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ)
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < AUDIOHW_EQ_BAND_NUM; i++)
|
|
|
|
prescale = MAX(current_eq_band_gain[i], prescale);
|
|
|
|
#endif
|
|
|
|
|
2005-06-19 23:33:23 +00:00
|
|
|
if (prescale < 0)
|
|
|
|
prescale = 0; /* no need to prescale if we don't boost
|
2010-05-15 13:09:45 +00:00
|
|
|
bass, treble or eq band */
|
2005-06-19 23:33:23 +00:00
|
|
|
|
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;
|
2007-03-07 15:00:29 +00:00
|
|
|
#endif
|
|
|
|
|
2008-05-14 21:35:19 +00:00
|
|
|
#if defined(AUDIOHW_HAVE_PRESCALER)
|
|
|
|
audiohw_set_prescaler(prescale);
|
|
|
|
#else
|
2007-02-26 00:41:26 +00:00
|
|
|
dsp_callback(DSP_CALLBACK_SET_PRESCALE, 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
|
|
|
|
2008-12-27 20:56:54 +00:00
|
|
|
/* Balance the channels scaled by the current volume and min volume. */
|
|
|
|
/* Subtract a dB from VOLUME_MIN to get it to a mute level */
|
2005-06-18 01:25:47 +00:00
|
|
|
if (current_balance > 0)
|
|
|
|
{
|
2008-12-27 20:56:54 +00:00
|
|
|
l -= ((l - (VOLUME_MIN - ONE_DB)) * current_balance) / VOLUME_RANGE;
|
2005-06-18 01:25:47 +00:00
|
|
|
}
|
2008-12-27 20:56:54 +00:00
|
|
|
else if (current_balance < 0)
|
2005-06-18 01:25:47 +00:00
|
|
|
{
|
2008-12-27 20:56:54 +00:00
|
|
|
r += ((r - (VOLUME_MIN - ONE_DB)) * current_balance) / VOLUME_RANGE;
|
2005-06-18 01:25:47 +00:00
|
|
|
}
|
|
|
|
|
2009-08-01 21:38:18 +00:00
|
|
|
#ifdef HAVE_SW_VOLUME_CONTROL
|
|
|
|
dsp_callback(DSP_CALLBACK_SET_SW_VOLUME, 0);
|
|
|
|
#endif
|
|
|
|
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
/* ypr0 with sdl has separate volume controls */
|
|
|
|
#if !defined(HAVE_SDL_AUDIO) || defined(SAMSUNG_YPR0)
|
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);
|
2007-02-26 00:41:26 +00:00
|
|
|
#elif defined(HAVE_UDA1380) || defined(HAVE_WM8975) || defined(HAVE_WM8758) \
|
2008-12-08 21:09:56 +00:00
|
|
|
|| defined(HAVE_WM8711) || defined(HAVE_WM8721) || defined(HAVE_WM8731) \
|
2010-04-26 21:40:00 +00:00
|
|
|
|| defined(HAVE_WM8750) || defined(HAVE_WM8751) || defined(HAVE_AS3514) \
|
2011-01-06 23:26:43 +00:00
|
|
|
|| defined(HAVE_TSC2100) || defined(HAVE_AK4537) || defined(HAVE_UDA1341) \
|
2011-09-06 12:39:24 +00:00
|
|
|
|| defined(HAVE_CS42L55) || defined(HAVE_RK27XX_CODEC)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_master_vol(tenthdb2master(l), tenthdb2master(r));
|
2008-02-06 05:15:06 +00:00
|
|
|
#if defined(HAVE_WM8975) || defined(HAVE_WM8758) \
|
2011-03-14 09:58:19 +00:00
|
|
|
|| (defined(HAVE_WM8751) && defined(TOSHIBA_GIGABEAT_F)) \
|
2011-01-06 23:26:43 +00:00
|
|
|
|| defined(HAVE_WM8985) || defined(HAVE_CS42L55)
|
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
|
|
|
|
|
2011-11-16 14:08:01 +00:00
|
|
|
#elif defined(HAVE_TLV320) || defined(HAVE_WM8978) || defined(HAVE_WM8985) || defined(HAVE_IMX233_CODEC) || defined(HAVE_AIC3X)
|
2006-12-06 10:24:59 +00:00
|
|
|
audiohw_set_headphone_vol(tenthdb2master(l), tenthdb2master(r));
|
2010-08-02 20:34:47 +00:00
|
|
|
#elif defined(HAVE_JZ4740_CODEC) || defined(HAVE_SDL_AUDIO) || defined(ANDROID)
|
2009-05-26 22:57:49 +00:00
|
|
|
audiohw_set_volume(current_volume);
|
2005-06-18 01:25:47 +00:00
|
|
|
#endif
|
2010-06-21 16:53:00 +00:00
|
|
|
#else /* HAVE_SDL_AUDIO */
|
2010-04-25 22:54:58 +00:00
|
|
|
audiohw_set_volume(current_volume);
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* !HAVE_SDL_AUDIO */
|
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
|
|
|
|
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;
|
2008-05-13 06:19:16 +00:00
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_CLIPPING)
|
|
|
|
audiohw_set_volume(value);
|
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);
|
2008-05-13 06:19:16 +00:00
|
|
|
#else
|
|
|
|
current_volume = value * 10; /* tenth of dB */
|
|
|
|
set_prescaled_volume();
|
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;
|
2008-05-13 06:19:16 +00:00
|
|
|
|
|
|
|
#ifdef AUDIOHW_HAVE_BALANCE
|
|
|
|
audiohw_set_balance(value);
|
|
|
|
#else
|
2007-12-10 11:14:28 +00:00
|
|
|
current_balance = value * VOLUME_RANGE / 100; /* tenth of dB */
|
2005-11-06 03:18:34 +00:00
|
|
|
set_prescaled_volume();
|
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
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_BASS
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_bass(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2008-04-28 08:37:18 +00:00
|
|
|
|
2008-05-16 20:06:50 +00:00
|
|
|
#if !defined(AUDIOHW_HAVE_CLIPPING)
|
2011-01-07 23:09:09 +00:00
|
|
|
#if defined(HAVE_WM8750) || defined(HAVE_WM8751) || defined(HAVE_CS42L55)
|
2010-05-11 04:13:04 +00:00
|
|
|
current_bass = value;
|
2008-05-16 20:06:50 +00:00
|
|
|
#else
|
|
|
|
current_bass = value * 10;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#if defined(HAVE_SW_TONE_CONTROLS)
|
2008-04-28 08:37:18 +00:00
|
|
|
dsp_callback(DSP_CALLBACK_SET_BASS, current_bass);
|
2010-05-15 13:09:45 +00:00
|
|
|
#else
|
|
|
|
audiohw_set_bass(value);
|
2008-04-28 08:37:18 +00:00
|
|
|
#endif
|
|
|
|
|
2008-05-13 06:19:16 +00:00
|
|
|
#if !defined(AUDIOHW_HAVE_CLIPPING)
|
2006-01-30 21:12:31 +00:00
|
|
|
set_prescaled_volume();
|
2008-04-28 08:37:18 +00:00
|
|
|
#endif
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif /* AUDIOHW_HAVE_BASS */
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_TREBLE
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_treble(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2008-04-28 08:37:18 +00:00
|
|
|
|
2008-05-16 20:06:50 +00:00
|
|
|
#if !defined(AUDIOHW_HAVE_CLIPPING)
|
2011-01-07 23:09:09 +00:00
|
|
|
#if defined(HAVE_WM8750) || defined(HAVE_WM8751) || defined(HAVE_CS42L55)
|
2010-05-11 04:13:04 +00:00
|
|
|
current_treble = value;
|
2008-05-16 20:06:50 +00:00
|
|
|
#else
|
2009-11-11 16:54:15 +00:00
|
|
|
current_treble = value * 10;
|
2008-05-16 20:06:50 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#if defined(HAVE_SW_TONE_CONTROLS)
|
2008-04-28 08:37:18 +00:00
|
|
|
dsp_callback(DSP_CALLBACK_SET_TREBLE, current_treble);
|
2010-05-15 13:09:45 +00:00
|
|
|
#else
|
|
|
|
audiohw_set_treble(value);
|
2008-04-28 08:37:18 +00:00
|
|
|
#endif
|
|
|
|
|
2008-05-13 06:19:16 +00:00
|
|
|
#if !defined(AUDIOHW_HAVE_CLIPPING)
|
2006-01-30 21:12:31 +00:00
|
|
|
set_prescaled_volume();
|
2008-04-15 14:44:32 +00:00
|
|
|
#endif
|
2005-11-06 23:12:11 +00:00
|
|
|
}
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif /* AUDIOHW_HAVE_TREBLE */
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_BASS_CUTOFF)
|
|
|
|
void sound_set_bass_cutoff(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_bass_cutoff(value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_TREBLE_CUTOFF)
|
|
|
|
void sound_set_treble_cutoff(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_treble_cutoff(value);
|
|
|
|
}
|
|
|
|
#endif
|
2005-11-06 23:12:11 +00:00
|
|
|
|
|
|
|
void sound_set_channels(int value)
|
|
|
|
{
|
2008-04-22 13:43:01 +00:00
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
2006-03-21 23:20:17 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-03-07 19:11:16 +00:00
|
|
|
dsp_callback(DSP_CALLBACK_SET_CHANNEL_CONFIG, value);
|
2006-03-21 23:20:17 +00:00
|
|
|
#else
|
2008-04-22 13:43:01 +00:00
|
|
|
audiohw_set_channel(value);
|
2006-03-21 23:20:17 +00:00
|
|
|
#endif
|
2005-11-06 23:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_stereo_width(int value)
|
|
|
|
{
|
2008-04-22 13:43:01 +00:00
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
2006-03-21 23:20:17 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-03-07 19:11:16 +00:00
|
|
|
dsp_callback(DSP_CALLBACK_SET_STEREO_WIDTH, value);
|
2006-03-21 23:20:17 +00:00
|
|
|
#else
|
2008-04-22 13:43:01 +00:00
|
|
|
audiohw_set_stereo_width(value);
|
2006-03-21 23:20:17 +00:00
|
|
|
#endif
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#if defined(AUDIOHW_HAVE_DEPTH_3D)
|
|
|
|
void sound_set_depth_3d(int value)
|
2007-11-24 07:51:00 +00:00
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
audiohw_set_depth_3d(value);
|
2007-11-24 07:51:00 +00:00
|
|
|
}
|
2008-05-16 19:28:45 +00:00
|
|
|
#endif
|
2007-11-24 07:51:00 +00:00
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#if defined(AUDIOHW_HAVE_EQ)
|
|
|
|
int sound_enum_hw_eq_band_setting(unsigned int band,
|
|
|
|
unsigned int band_setting)
|
|
|
|
{
|
|
|
|
static const int8_t
|
|
|
|
sound_hw_eq_band_setting[AUDIOHW_EQ_SETTING_NUM][AUDIOHW_EQ_BAND_NUM] =
|
|
|
|
{
|
|
|
|
[AUDIOHW_EQ_GAIN] =
|
|
|
|
{
|
|
|
|
[0 ... AUDIOHW_EQ_BAND_NUM-1] = -1,
|
|
|
|
[AUDIOHW_EQ_BAND1] = SOUND_EQ_BAND1_GAIN,
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND2
|
|
|
|
[AUDIOHW_EQ_BAND2] = SOUND_EQ_BAND2_GAIN,
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND3
|
|
|
|
[AUDIOHW_EQ_BAND3] = SOUND_EQ_BAND3_GAIN,
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND4
|
|
|
|
[AUDIOHW_EQ_BAND4] = SOUND_EQ_BAND4_GAIN,
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND5
|
|
|
|
[AUDIOHW_EQ_BAND5] = SOUND_EQ_BAND5_GAIN,
|
|
|
|
#endif
|
|
|
|
},
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_FREQUENCY
|
|
|
|
[AUDIOHW_EQ_FREQUENCY] =
|
|
|
|
{
|
|
|
|
[0 ... AUDIOHW_EQ_BAND_NUM-1] = -1,
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND1_FREQUENCY
|
|
|
|
[AUDIOHW_EQ_BAND1] = SOUND_EQ_BAND1_FREQUENCY,
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND2_FREQUENCY
|
|
|
|
[AUDIOHW_EQ_BAND2] = SOUND_EQ_BAND2_FREQUENCY,
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND3_FREQUENCY
|
|
|
|
[AUDIOHW_EQ_BAND3] = SOUND_EQ_BAND3_FREQUENCY,
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND4_FREQUENCY
|
|
|
|
[AUDIOHW_EQ_BAND4] = SOUND_EQ_BAND4_FREQUENCY,
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND5_FREQUENCY
|
|
|
|
[AUDIOHW_EQ_BAND5] = SOUND_EQ_BAND5_FREQUENCY,
|
|
|
|
#endif
|
|
|
|
},
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ_FREQUENCY */
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_WIDTH
|
|
|
|
[AUDIOHW_EQ_WIDTH] =
|
|
|
|
{
|
|
|
|
[0 ... AUDIOHW_EQ_BAND_NUM-1] = -1,
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND2_WIDTH
|
|
|
|
[AUDIOHW_EQ_BAND2] = SOUND_EQ_BAND2_WIDTH,
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND3_WIDTH
|
|
|
|
[AUDIOHW_EQ_BAND3] = SOUND_EQ_BAND3_WIDTH,
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_BAND4_WIDTH
|
|
|
|
[AUDIOHW_EQ_BAND4] = SOUND_EQ_BAND4_WIDTH,
|
|
|
|
#endif
|
|
|
|
},
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ_WIDTH */
|
|
|
|
};
|
|
|
|
|
|
|
|
if (band < AUDIOHW_EQ_BAND_NUM && band_setting < AUDIOHW_EQ_SETTING_NUM)
|
|
|
|
return sound_hw_eq_band_setting[band_setting][band];
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sound_set_hw_eq_band_gain(unsigned int band, int value)
|
2007-11-24 07:51:00 +00:00
|
|
|
{
|
2011-01-21 08:31:40 +00:00
|
|
|
int setting;
|
|
|
|
|
2007-11-24 07:51:00 +00:00
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
2011-01-21 08:31:40 +00:00
|
|
|
setting = sound_enum_hw_eq_band_setting(band, AUDIOHW_EQ_GAIN);
|
|
|
|
current_eq_band_gain[band] = sound_val2phys(setting + 0x10000, value);
|
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
audiohw_set_eq_band_gain(band, value);
|
|
|
|
set_prescaled_volume();
|
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_hw_eq_band1_gain(int value)
|
|
|
|
{
|
|
|
|
sound_set_hw_eq_band_gain(AUDIOHW_EQ_BAND1, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND2)
|
|
|
|
void sound_set_hw_eq_band2_gain(int value)
|
|
|
|
{
|
|
|
|
sound_set_hw_eq_band_gain(AUDIOHW_EQ_BAND2, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND3)
|
|
|
|
void sound_set_hw_eq_band3_gain(int value)
|
|
|
|
{
|
|
|
|
sound_set_hw_eq_band_gain(AUDIOHW_EQ_BAND3, value);
|
2007-11-24 07:51:00 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND4)
|
|
|
|
void sound_set_hw_eq_band4_gain(int value)
|
|
|
|
{
|
|
|
|
sound_set_hw_eq_band_gain(AUDIOHW_EQ_BAND4, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND5)
|
|
|
|
void sound_set_hw_eq_band5_gain(int value)
|
|
|
|
{
|
|
|
|
sound_set_hw_eq_band_gain(AUDIOHW_EQ_BAND5, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND1_FREQUENCY)
|
|
|
|
void sound_set_hw_eq_band1_frequency(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_eq_band_frequency(AUDIOHW_EQ_BAND1, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND2_FREQUENCY)
|
|
|
|
void sound_set_hw_eq_band2_frequency(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_eq_band_frequency(AUDIOHW_EQ_BAND2, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND3_FREQUENCY)
|
|
|
|
void sound_set_hw_eq_band3_frequency(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_eq_band_frequency(AUDIOHW_EQ_BAND3, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND4_FREQUENCY)
|
|
|
|
void sound_set_hw_eq_band4_frequency(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_eq_band_frequency(AUDIOHW_EQ_BAND4, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND5_FREQUENCY)
|
|
|
|
void sound_set_hw_eq_band5_frequency(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_eq_band_frequency(AUDIOHW_EQ_BAND5, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND2_WIDTH)
|
|
|
|
void sound_set_hw_eq_band2_width(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_eq_band_width(AUDIOHW_EQ_BAND2, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND3_WIDTH)
|
|
|
|
void sound_set_hw_eq_band3_width(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_eq_band_width(AUDIOHW_EQ_BAND3, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIOHW_HAVE_EQ_BAND4_WIDTH)
|
|
|
|
void sound_set_hw_eq_band4_width(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiohw_set_eq_band_width(AUDIOHW_EQ_BAND4, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ */
|
|
|
|
|
2010-04-25 22:54:58 +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;
|
2010-10-31 21:09:34 +00:00
|
|
|
|
|
|
|
audiohw_set_loudness(value);
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_avc(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2009-01-02 11:21:58 +00:00
|
|
|
|
2010-10-31 21:09:34 +00:00
|
|
|
audiohw_set_avc(value);
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_strength(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2010-10-31 21:09:34 +00:00
|
|
|
|
|
|
|
audiohw_set_mdb_strength(value);
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_harmonics(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2010-10-31 21:09:34 +00:00
|
|
|
|
|
|
|
audiohw_set_mdb_harmonics(value);
|
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_mdb_center(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2010-10-31 21:09:34 +00:00
|
|
|
|
|
|
|
audiohw_set_mdb_center(value);
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_shape(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2010-10-31 21:09:34 +00:00
|
|
|
|
|
|
|
audiohw_set_mdb_shape(value);
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_mdb_enable(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2010-10-31 21:09:34 +00:00
|
|
|
|
|
|
|
audiohw_set_mdb_enable(value);
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sound_set_superbass(int value)
|
|
|
|
{
|
|
|
|
if(!audio_is_initialized)
|
|
|
|
return;
|
2010-10-31 21:09:34 +00:00
|
|
|
|
|
|
|
audiohw_set_superbass(value);
|
2005-11-06 03:18:34 +00:00
|
|
|
}
|
|
|
|
#endif /* (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) */
|
|
|
|
|
2005-11-06 23:12:11 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2008-12-08 21:09:56 +00:00
|
|
|
#if (!defined(HAVE_AS3514) && !defined(HAVE_WM8975) \
|
|
|
|
&& !defined(HAVE_WM8758) && !defined(HAVE_TSC2100) \
|
|
|
|
&& !defined (HAVE_WM8711) && !defined (HAVE_WM8721) \
|
2009-05-25 21:10:45 +00:00
|
|
|
&& !defined (HAVE_WM8731) && !defined (HAVE_WM8978) \
|
2011-03-14 23:06:33 +00:00
|
|
|
&& !defined (HAVE_WM8750) && !defined (HAVE_WM8751) \
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
&& !defined(HAVE_AK4537)) || defined(SIMULATOR)
|
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)
|
|
|
|
{
|
2009-06-28 17:43:04 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
2005-11-12 04:00:56 +00:00
|
|
|
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;
|
2009-06-28 17:43:04 +00:00
|
|
|
#endif
|
2006-05-14 23:34:24 +00:00
|
|
|
default:
|
2005-11-12 04:00:56 +00:00
|
|
|
result = value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return result;
|
2008-12-08 21:09:56 +00:00
|
|
|
#elif defined(HAVE_TLV320) || defined(HAVE_WM8711) \
|
|
|
|
|| defined(HAVE_WM8721) || defined(HAVE_WM8731)
|
2006-07-21 08:42:28 +00:00
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
switch(setting)
|
|
|
|
{
|
2008-05-16 20:51:56 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
2006-07-21 08:42:28 +00:00
|
|
|
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;
|
2008-05-16 20:51:56 +00:00
|
|
|
#endif
|
2006-07-21 08:42:28 +00:00
|
|
|
default:
|
|
|
|
result = value;
|
|
|
|
break;
|
|
|
|
}
|
2007-06-05 07:22:26 +00:00
|
|
|
return result;
|
|
|
|
#elif defined(HAVE_AS3514)
|
|
|
|
/* This is here for the sim only and the audio driver has its own */
|
|
|
|
int result;
|
|
|
|
|
|
|
|
switch(setting)
|
|
|
|
{
|
2008-11-24 19:04:29 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
2007-06-05 07:22:26 +00:00
|
|
|
case SOUND_LEFT_GAIN:
|
|
|
|
case SOUND_RIGHT_GAIN:
|
|
|
|
case SOUND_MIC_GAIN:
|
|
|
|
result = (value - 23) * 15;
|
|
|
|
break;
|
2008-11-24 19:04:29 +00:00
|
|
|
#endif
|
2007-06-05 07:22:26 +00:00
|
|
|
default:
|
|
|
|
result = value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-12-31 01:38:44 +00:00
|
|
|
return result;
|
2011-03-14 23:06:33 +00:00
|
|
|
#elif defined(HAVE_WM8978) || defined(HAVE_WM8750) || defined(HAVE_WM8751)
|
2008-12-31 01:38:44 +00:00
|
|
|
int result;
|
|
|
|
|
|
|
|
switch (setting)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
case SOUND_LEFT_GAIN:
|
|
|
|
case SOUND_RIGHT_GAIN:
|
|
|
|
case SOUND_MIC_GAIN:
|
|
|
|
result = value * 5;
|
|
|
|
break;
|
|
|
|
#endif
|
2011-03-14 23:14:07 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_DEPTH_3D
|
2010-05-15 13:09:45 +00:00
|
|
|
case SOUND_DEPTH_3D:
|
|
|
|
result = (100 * value + 8) / 15;
|
|
|
|
break;
|
2011-03-14 23:14:07 +00:00
|
|
|
#endif
|
2008-12-31 01:38:44 +00:00
|
|
|
default:
|
|
|
|
result = value;
|
|
|
|
}
|
|
|
|
|
2006-07-21 08:42:28 +00:00
|
|
|
return result;
|
2005-04-01 13:41:03 +00:00
|
|
|
#else
|
|
|
|
(void)setting;
|
|
|
|
return value;
|
|
|
|
#endif
|
|
|
|
}
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* CONFIG_CODECs || PLATFORM_HOSTED */
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
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.
|
|
|
|
*/
|
2010-04-25 22:54:58 +00:00
|
|
|
|
2009-07-11 16:46:19 +00:00
|
|
|
static int last_pitch = PITCH_SPEED_100;
|
2005-05-22 12:45:35 +00:00
|
|
|
|
2009-07-11 16:46:19 +00:00
|
|
|
void sound_set_pitch(int32_t pitch)
|
2005-04-01 13:41:03 +00:00
|
|
|
{
|
|
|
|
unsigned long val;
|
|
|
|
|
2005-05-22 12:45:35 +00:00
|
|
|
if (pitch != last_pitch)
|
|
|
|
{
|
|
|
|
/* Calculate the new (bogus) frequency */
|
2009-07-11 16:46:19 +00:00
|
|
|
val = 18432 * PITCH_SPEED_100 / pitch;
|
2005-11-06 03:18:34 +00:00
|
|
|
|
2010-10-31 21:09:34 +00:00
|
|
|
audiohw_set_pitch(val);
|
2005-11-06 03:18:34 +00:00
|
|
|
|
2005-05-22 12:45:35 +00:00
|
|
|
last_pitch = pitch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-11 16:46:19 +00:00
|
|
|
int32_t sound_get_pitch(void)
|
2005-05-22 12:45:35 +00:00
|
|
|
{
|
|
|
|
return last_pitch;
|
2005-04-01 13:41:03 +00:00
|
|
|
}
|
2005-11-06 23:12:11 +00:00
|
|
|
#endif /* (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) */
|