2019-05-27 09:55:01 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2006-10-06 20:38:03 +04:00
|
|
|
/*
|
|
|
|
* ac97.c -- ALSA Soc AC97 codec support
|
|
|
|
*
|
|
|
|
* Copyright 2005 Wolfson Microelectronics PLC.
|
2008-10-12 16:17:36 +04:00
|
|
|
* Author: Liam Girdwood <lrg@slimlogic.co.uk>
|
2006-10-06 20:38:03 +04:00
|
|
|
*
|
|
|
|
* Generic AC97 support.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 11:04:11 +03:00
|
|
|
#include <linux/slab.h>
|
2006-10-06 20:38:03 +04:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/device.h>
|
2011-07-15 20:38:28 +04:00
|
|
|
#include <linux/module.h>
|
2006-10-06 20:38:03 +04:00
|
|
|
#include <sound/core.h>
|
|
|
|
#include <sound/pcm.h>
|
|
|
|
#include <sound/ac97_codec.h>
|
|
|
|
#include <sound/initval.h>
|
|
|
|
#include <sound/soc.h>
|
|
|
|
|
2013-08-19 15:18:07 +04:00
|
|
|
static const struct snd_soc_dapm_widget ac97_widgets[] = {
|
|
|
|
SND_SOC_DAPM_INPUT("RX"),
|
|
|
|
SND_SOC_DAPM_OUTPUT("TX"),
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct snd_soc_dapm_route ac97_routes[] = {
|
|
|
|
{ "AC97 Capture", NULL, "RX" },
|
|
|
|
{ "TX", NULL, "AC97 Playback" },
|
|
|
|
};
|
|
|
|
|
2008-11-19 01:11:38 +03:00
|
|
|
static int ac97_prepare(struct snd_pcm_substream *substream,
|
|
|
|
struct snd_soc_dai *dai)
|
2006-10-06 20:38:03 +04:00
|
|
|
{
|
2018-01-29 05:58:25 +03:00
|
|
|
struct snd_soc_component *component = dai->component;
|
|
|
|
struct snd_ac97 *ac97 = snd_soc_component_get_drvdata(component);
|
2006-10-06 20:38:03 +04:00
|
|
|
|
|
|
|
int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
|
|
|
|
AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE;
|
2014-11-11 00:41:53 +03:00
|
|
|
return snd_ac97_set_rate(ac97, reg, substream->runtime->rate);
|
2006-10-06 20:38:03 +04:00
|
|
|
}
|
|
|
|
|
2011-11-23 14:40:40 +04:00
|
|
|
static const struct snd_soc_dai_ops ac97_dai_ops = {
|
2009-03-03 04:41:00 +03:00
|
|
|
.prepare = ac97_prepare,
|
|
|
|
};
|
|
|
|
|
2010-03-17 23:15:21 +03:00
|
|
|
static struct snd_soc_dai_driver ac97_dai = {
|
|
|
|
.name = "ac97-hifi",
|
2006-10-06 20:38:03 +04:00
|
|
|
.playback = {
|
|
|
|
.stream_name = "AC97 Playback",
|
|
|
|
.channels_min = 1,
|
2007-02-02 19:16:41 +03:00
|
|
|
.channels_max = 2,
|
2015-05-10 01:09:57 +03:00
|
|
|
.rates = SNDRV_PCM_RATE_KNOT,
|
2009-05-02 15:24:55 +04:00
|
|
|
.formats = SND_SOC_STD_AC97_FMTS,},
|
2006-10-06 20:38:03 +04:00
|
|
|
.capture = {
|
|
|
|
.stream_name = "AC97 Capture",
|
|
|
|
.channels_min = 1,
|
2007-02-02 19:16:41 +03:00
|
|
|
.channels_max = 2,
|
2015-05-10 01:09:57 +03:00
|
|
|
.rates = SNDRV_PCM_RATE_KNOT,
|
2009-05-02 15:24:55 +04:00
|
|
|
.formats = SND_SOC_STD_AC97_FMTS,},
|
2009-03-03 04:41:00 +03:00
|
|
|
.ops = &ac97_dai_ops,
|
2006-10-06 20:38:03 +04:00
|
|
|
};
|
|
|
|
|
2018-01-29 05:58:25 +03:00
|
|
|
static int ac97_soc_probe(struct snd_soc_component *component)
|
2006-10-06 20:38:03 +04:00
|
|
|
{
|
2014-11-11 00:41:53 +03:00
|
|
|
struct snd_ac97 *ac97;
|
2006-10-06 20:38:03 +04:00
|
|
|
struct snd_ac97_bus *ac97_bus;
|
|
|
|
struct snd_ac97_template ac97_template;
|
2010-03-17 23:15:21 +03:00
|
|
|
int ret;
|
2006-10-06 20:38:03 +04:00
|
|
|
|
|
|
|
/* add codec as bus device for standard ac97 */
|
2018-01-29 05:58:25 +03:00
|
|
|
ret = snd_ac97_bus(component->card->snd_card, 0, soc_ac97_ops,
|
2014-07-18 00:01:07 +04:00
|
|
|
NULL, &ac97_bus);
|
2008-04-23 17:26:45 +04:00
|
|
|
if (ret < 0)
|
2010-03-17 23:15:21 +03:00
|
|
|
return ret;
|
2006-10-06 20:38:03 +04:00
|
|
|
|
|
|
|
memset(&ac97_template, 0, sizeof(struct snd_ac97_template));
|
2014-11-11 00:41:53 +03:00
|
|
|
ret = snd_ac97_mixer(ac97_bus, &ac97_template, &ac97);
|
2008-04-23 17:26:45 +04:00
|
|
|
if (ret < 0)
|
2010-03-17 23:15:21 +03:00
|
|
|
return ret;
|
2010-03-25 03:22:12 +03:00
|
|
|
|
2018-01-29 05:58:25 +03:00
|
|
|
snd_soc_component_set_drvdata(component, ac97);
|
2014-11-11 00:41:53 +03:00
|
|
|
|
2006-10-06 20:38:03 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-03 11:33:10 +04:00
|
|
|
#ifdef CONFIG_PM
|
2018-01-29 05:58:25 +03:00
|
|
|
static int ac97_soc_suspend(struct snd_soc_component *component)
|
2008-07-03 11:33:10 +04:00
|
|
|
{
|
2018-01-29 05:58:25 +03:00
|
|
|
struct snd_ac97 *ac97 = snd_soc_component_get_drvdata(component);
|
2014-11-11 00:41:53 +03:00
|
|
|
|
|
|
|
snd_ac97_suspend(ac97);
|
2008-07-03 11:33:10 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-29 05:58:25 +03:00
|
|
|
static int ac97_soc_resume(struct snd_soc_component *component)
|
2008-07-03 11:33:10 +04:00
|
|
|
{
|
2014-11-11 00:41:53 +03:00
|
|
|
|
2018-01-29 05:58:25 +03:00
|
|
|
struct snd_ac97 *ac97 = snd_soc_component_get_drvdata(component);
|
2014-11-11 00:41:53 +03:00
|
|
|
|
|
|
|
snd_ac97_resume(ac97);
|
2008-07-03 11:33:10 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define ac97_soc_suspend NULL
|
|
|
|
#define ac97_soc_resume NULL
|
|
|
|
#endif
|
|
|
|
|
2018-01-29 05:58:25 +03:00
|
|
|
static const struct snd_soc_component_driver soc_component_dev_ac97 = {
|
|
|
|
.probe = ac97_soc_probe,
|
|
|
|
.suspend = ac97_soc_suspend,
|
|
|
|
.resume = ac97_soc_resume,
|
|
|
|
.dapm_widgets = ac97_widgets,
|
|
|
|
.num_dapm_widgets = ARRAY_SIZE(ac97_widgets),
|
|
|
|
.dapm_routes = ac97_routes,
|
|
|
|
.num_dapm_routes = ARRAY_SIZE(ac97_routes),
|
|
|
|
.idle_bias_on = 1,
|
|
|
|
.use_pmdown_time = 1,
|
|
|
|
.endianness = 1,
|
|
|
|
.non_legacy_dai_naming = 1,
|
2006-10-06 20:38:03 +04:00
|
|
|
};
|
2010-03-17 23:15:21 +03:00
|
|
|
|
2012-12-07 18:26:37 +04:00
|
|
|
static int ac97_probe(struct platform_device *pdev)
|
2010-03-17 23:15:21 +03:00
|
|
|
{
|
2018-01-29 05:58:25 +03:00
|
|
|
return devm_snd_soc_register_component(&pdev->dev,
|
|
|
|
&soc_component_dev_ac97, &ac97_dai, 1);
|
2010-03-17 23:15:21 +03:00
|
|
|
}
|
|
|
|
|
2012-12-07 18:26:37 +04:00
|
|
|
static int ac97_remove(struct platform_device *pdev)
|
2010-03-17 23:15:21 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct platform_driver ac97_codec_driver = {
|
|
|
|
.driver = {
|
2010-09-23 22:43:07 +04:00
|
|
|
.name = "ac97-codec",
|
2010-03-17 23:15:21 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
.probe = ac97_probe,
|
2012-12-07 18:26:37 +04:00
|
|
|
.remove = ac97_remove,
|
2010-03-17 23:15:21 +03:00
|
|
|
};
|
|
|
|
|
2011-11-24 02:52:08 +04:00
|
|
|
module_platform_driver(ac97_codec_driver);
|
2006-10-06 20:38:03 +04:00
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Soc Generic AC97 driver");
|
|
|
|
MODULE_AUTHOR("Liam Girdwood");
|
|
|
|
MODULE_LICENSE("GPL");
|
2010-10-13 12:30:33 +04:00
|
|
|
MODULE_ALIAS("platform:ac97-codec");
|