2015-03-26 12:01:27 +08:00
|
|
|
/*
|
2016-08-23 09:34:17 +08:00
|
|
|
* ASoC simple SCU sound card support
|
2015-03-26 12:01:27 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Renesas Solutions Corp.
|
|
|
|
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
|
|
*
|
|
|
|
* based on ${LINUX}/sound/soc/generic/simple-card.c
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_device.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <sound/jack.h>
|
|
|
|
#include <sound/soc.h>
|
|
|
|
#include <sound/soc-dai.h>
|
2016-06-30 14:03:13 +08:00
|
|
|
#include <sound/simple_card_utils.h>
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2016-10-28 11:37:44 +08:00
|
|
|
struct simple_card_data {
|
2015-03-26 12:01:27 +08:00
|
|
|
struct snd_soc_card snd_card;
|
|
|
|
struct snd_soc_codec_conf codec_conf;
|
2016-07-12 07:58:50 +08:00
|
|
|
struct asoc_simple_dai *dai_props;
|
2015-06-15 14:22:30 +08:00
|
|
|
struct snd_soc_dai_link *dai_link;
|
2017-06-15 08:24:28 +08:00
|
|
|
struct asoc_simple_card_data adata;
|
2015-03-26 12:01:27 +08:00
|
|
|
};
|
|
|
|
|
2017-03-15 12:44:16 +08:00
|
|
|
#define simple_priv_to_card(priv) (&(priv)->snd_card)
|
2016-08-23 09:34:17 +08:00
|
|
|
#define simple_priv_to_props(priv, i) ((priv)->dai_props + (i))
|
2017-03-15 12:44:16 +08:00
|
|
|
#define simple_priv_to_dev(priv) (simple_priv_to_card(priv)->dev)
|
|
|
|
#define simple_priv_to_link(priv, i) (simple_priv_to_card(priv)->dai_link + (i))
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2016-08-08 14:02:31 +08:00
|
|
|
#define DAI "sound-dai"
|
|
|
|
#define CELL "#sound-dai-cells"
|
ASoC: rsrc-card: rename rsrc-card to simple-scu-card phase2
rsrc-card which is using DPCM feature was created for Renesas sound.
But not only Renesas, but many SoC can use this driver, because
it is based on simple-card driver.
To use it as more open driver, rsrc-card will be renamed to
simple-scu-card. In order to easy patch review, as 2nd step,
this patch adds new compatible "simple-scu-audio-card";
rcar-card used specific property, not "simple-audio-card",
but it should be now. Actually, rsrc-card is upstreamed driver,
but noone is using it on upstream. The user is only local,
and it is only me. Thus, there is no compatible break by this patch.
This patch uses "simple-audio-card" prefix.
And it removes rcar-card specifix compatible too.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2016-08-23 09:34:43 +08:00
|
|
|
#define PREFIX "simple-audio-card,"
|
2016-08-08 14:02:31 +08:00
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static int asoc_simple_card_startup(struct snd_pcm_substream *substream)
|
2015-03-26 12:01:27 +08:00
|
|
|
{
|
|
|
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
2016-10-28 11:37:44 +08:00
|
|
|
struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
|
2016-07-12 07:58:50 +08:00
|
|
|
struct asoc_simple_dai *dai_props =
|
2016-08-23 09:34:17 +08:00
|
|
|
simple_priv_to_props(priv, rtd->num);
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2017-06-09 08:44:40 +08:00
|
|
|
return asoc_simple_card_clk_enable(dai_props);
|
2015-03-26 12:01:27 +08:00
|
|
|
}
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static void asoc_simple_card_shutdown(struct snd_pcm_substream *substream)
|
2015-03-26 12:01:27 +08:00
|
|
|
{
|
|
|
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
2016-10-28 11:37:44 +08:00
|
|
|
struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
|
2016-07-12 07:58:50 +08:00
|
|
|
struct asoc_simple_dai *dai_props =
|
2016-08-23 09:34:17 +08:00
|
|
|
simple_priv_to_props(priv, rtd->num);
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2017-06-09 08:44:40 +08:00
|
|
|
asoc_simple_card_clk_disable(dai_props);
|
2015-03-26 12:01:27 +08:00
|
|
|
}
|
|
|
|
|
2016-10-15 22:55:49 +08:00
|
|
|
static const struct snd_soc_ops asoc_simple_card_ops = {
|
2016-08-23 09:34:17 +08:00
|
|
|
.startup = asoc_simple_card_startup,
|
|
|
|
.shutdown = asoc_simple_card_shutdown,
|
2015-03-26 12:01:27 +08:00
|
|
|
};
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
|
2015-03-26 12:01:27 +08:00
|
|
|
{
|
2016-10-28 11:37:44 +08:00
|
|
|
struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
|
2015-06-15 14:24:15 +08:00
|
|
|
struct snd_soc_dai *dai;
|
|
|
|
struct snd_soc_dai_link *dai_link;
|
2016-07-12 07:58:50 +08:00
|
|
|
struct asoc_simple_dai *dai_props;
|
2015-11-18 15:34:11 +08:00
|
|
|
int num = rtd->num;
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
dai_link = simple_priv_to_link(priv, num);
|
|
|
|
dai_props = simple_priv_to_props(priv, num);
|
2015-06-15 14:24:15 +08:00
|
|
|
dai = dai_link->dynamic ?
|
|
|
|
rtd->cpu_dai :
|
|
|
|
rtd->codec_dai;
|
|
|
|
|
2016-08-09 13:49:21 +08:00
|
|
|
return asoc_simple_card_init_dai(dai, dai_props);
|
2015-03-26 12:01:27 +08:00
|
|
|
}
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static int asoc_simple_card_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd,
|
2015-03-26 12:01:46 +08:00
|
|
|
struct snd_pcm_hw_params *params)
|
|
|
|
{
|
2016-10-28 11:37:44 +08:00
|
|
|
struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
|
2015-03-26 12:01:46 +08:00
|
|
|
|
2017-06-15 08:24:28 +08:00
|
|
|
asoc_simple_card_convert_fixup(&priv->adata, params);
|
2015-03-26 12:01:46 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-28 11:37:26 +08:00
|
|
|
static int asoc_simple_card_dai_link_of(struct device_node *np,
|
2016-10-28 11:37:44 +08:00
|
|
|
struct simple_card_data *priv,
|
2016-08-25 09:57:30 +08:00
|
|
|
unsigned int daifmt,
|
2016-08-23 09:34:17 +08:00
|
|
|
int idx, bool is_fe)
|
2015-03-26 12:01:27 +08:00
|
|
|
{
|
2016-08-23 09:34:17 +08:00
|
|
|
struct device *dev = simple_priv_to_dev(priv);
|
|
|
|
struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx);
|
|
|
|
struct asoc_simple_dai *dai_props = simple_priv_to_props(priv, idx);
|
2017-03-15 12:44:16 +08:00
|
|
|
struct snd_soc_card *card = simple_priv_to_card(priv);
|
2015-03-26 12:01:27 +08:00
|
|
|
int ret;
|
|
|
|
|
2015-06-15 14:24:15 +08:00
|
|
|
if (is_fe) {
|
2016-08-10 10:21:03 +08:00
|
|
|
int is_single_links = 0;
|
|
|
|
|
2015-06-15 14:24:15 +08:00
|
|
|
/* BE is dummy */
|
|
|
|
dai_link->codec_of_node = NULL;
|
|
|
|
dai_link->codec_dai_name = "snd-soc-dummy-dai";
|
|
|
|
dai_link->codec_name = "snd-soc-dummy";
|
|
|
|
|
|
|
|
/* FE settings */
|
|
|
|
dai_link->dynamic = 1;
|
|
|
|
dai_link->dpcm_merged_format = 1;
|
2016-08-08 14:02:31 +08:00
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_cpu(np, dai_link, DAI, CELL,
|
|
|
|
&is_single_links);
|
|
|
|
if (ret)
|
2015-12-01 16:33:23 +08:00
|
|
|
return ret;
|
2015-06-15 14:24:15 +08:00
|
|
|
|
2017-01-23 15:29:42 +08:00
|
|
|
ret = asoc_simple_card_parse_clk_cpu(dev, np, dai_link, dai_props);
|
2016-07-19 10:53:32 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2016-07-12 07:58:25 +08:00
|
|
|
ret = asoc_simple_card_set_dailink_name(dev, dai_link,
|
|
|
|
"fe.%s",
|
|
|
|
dai_link->cpu_dai_name);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2015-06-15 14:24:15 +08:00
|
|
|
|
2016-08-10 10:21:03 +08:00
|
|
|
asoc_simple_card_canonicalize_cpu(dai_link, is_single_links);
|
2015-06-15 14:24:15 +08:00
|
|
|
} else {
|
|
|
|
/* FE is dummy */
|
|
|
|
dai_link->cpu_of_node = NULL;
|
|
|
|
dai_link->cpu_dai_name = "snd-soc-dummy-dai";
|
|
|
|
dai_link->cpu_name = "snd-soc-dummy";
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2015-06-15 14:24:15 +08:00
|
|
|
/* BE settings */
|
|
|
|
dai_link->no_pcm = 1;
|
2016-08-23 09:34:17 +08:00
|
|
|
dai_link->be_hw_params_fixup = asoc_simple_card_be_hw_params_fixup;
|
2016-08-08 14:02:31 +08:00
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_codec(np, dai_link, DAI, CELL);
|
2015-12-01 16:33:23 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2015-06-15 14:24:15 +08:00
|
|
|
|
2017-01-23 15:29:42 +08:00
|
|
|
ret = asoc_simple_card_parse_clk_codec(dev, np, dai_link, dai_props);
|
2016-07-19 10:53:32 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2016-07-12 07:58:25 +08:00
|
|
|
ret = asoc_simple_card_set_dailink_name(dev, dai_link,
|
|
|
|
"be.%s",
|
|
|
|
dai_link->codec_dai_name);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2017-03-15 12:44:16 +08:00
|
|
|
snd_soc_of_parse_audio_prefix(card,
|
ASoC: rsrc-card: rename rsrc-card to simple-scu-card phase2
rsrc-card which is using DPCM feature was created for Renesas sound.
But not only Renesas, but many SoC can use this driver, because
it is based on simple-card driver.
To use it as more open driver, rsrc-card will be renamed to
simple-scu-card. In order to easy patch review, as 2nd step,
this patch adds new compatible "simple-scu-audio-card";
rcar-card used specific property, not "simple-audio-card",
but it should be now. Actually, rsrc-card is upstreamed driver,
but noone is using it on upstream. The user is only local,
and it is only me. Thus, there is no compatible break by this patch.
This patch uses "simple-audio-card" prefix.
And it removes rcar-card specifix compatible too.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2016-08-23 09:34:43 +08:00
|
|
|
&priv->codec_conf,
|
|
|
|
dai_link->codec_of_node,
|
|
|
|
PREFIX "prefix");
|
2015-03-26 12:01:27 +08:00
|
|
|
}
|
|
|
|
|
2017-06-14 08:35:13 +08:00
|
|
|
ret = asoc_simple_card_of_parse_tdm(np, dai_props);
|
2016-08-25 09:58:55 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2016-08-09 13:50:19 +08:00
|
|
|
ret = asoc_simple_card_canonicalize_dailink(dai_link);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2016-08-25 09:57:30 +08:00
|
|
|
dai_link->dai_fmt = daifmt;
|
2015-06-15 14:24:15 +08:00
|
|
|
dai_link->dpcm_playback = 1;
|
|
|
|
dai_link->dpcm_capture = 1;
|
2016-08-23 09:34:17 +08:00
|
|
|
dai_link->ops = &asoc_simple_card_ops;
|
|
|
|
dai_link->init = asoc_simple_card_dai_init;
|
2015-06-15 14:24:15 +08:00
|
|
|
|
2016-07-19 10:53:32 +08:00
|
|
|
return 0;
|
2015-03-26 12:01:27 +08:00
|
|
|
}
|
|
|
|
|
2017-06-07 08:37:30 +08:00
|
|
|
static int asoc_simple_card_parse_of(struct simple_card_data *priv)
|
2016-10-28 11:37:26 +08:00
|
|
|
|
2015-12-17 10:49:43 +08:00
|
|
|
{
|
2016-08-23 09:34:17 +08:00
|
|
|
struct device *dev = simple_priv_to_dev(priv);
|
2015-12-17 10:49:43 +08:00
|
|
|
struct device_node *np;
|
2017-03-15 12:44:16 +08:00
|
|
|
struct snd_soc_card *card = simple_priv_to_card(priv);
|
2017-06-07 08:37:30 +08:00
|
|
|
struct device_node *node = dev->of_node;
|
2015-12-17 10:49:43 +08:00
|
|
|
unsigned int daifmt = 0;
|
|
|
|
bool is_fe;
|
2016-10-28 11:37:26 +08:00
|
|
|
int ret, i;
|
|
|
|
|
|
|
|
if (!node)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2017-08-11 22:12:19 +08:00
|
|
|
ret = asoc_simple_card_of_parse_widgets(card, PREFIX);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2017-06-15 08:25:33 +08:00
|
|
|
ret = asoc_simple_card_of_parse_routing(card, PREFIX, 0);
|
2016-10-28 11:37:26 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2017-06-15 08:24:28 +08:00
|
|
|
asoc_simple_card_parse_convert(dev, PREFIX, &priv->adata);
|
2015-12-17 10:49:43 +08:00
|
|
|
|
|
|
|
/* find 1st codec */
|
2016-08-25 09:57:04 +08:00
|
|
|
np = of_get_child_by_name(node, PREFIX "codec");
|
|
|
|
if (!np)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2016-10-28 11:37:26 +08:00
|
|
|
ret = asoc_simple_card_parse_daifmt(dev, node, np, PREFIX, &daifmt);
|
2016-08-25 09:57:04 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2015-12-17 10:49:43 +08:00
|
|
|
|
|
|
|
i = 0;
|
|
|
|
for_each_child_of_node(node, np) {
|
|
|
|
is_fe = false;
|
ASoC: rsrc-card: rename rsrc-card to simple-scu-card phase2
rsrc-card which is using DPCM feature was created for Renesas sound.
But not only Renesas, but many SoC can use this driver, because
it is based on simple-card driver.
To use it as more open driver, rsrc-card will be renamed to
simple-scu-card. In order to easy patch review, as 2nd step,
this patch adds new compatible "simple-scu-audio-card";
rcar-card used specific property, not "simple-audio-card",
but it should be now. Actually, rsrc-card is upstreamed driver,
but noone is using it on upstream. The user is only local,
and it is only me. Thus, there is no compatible break by this patch.
This patch uses "simple-audio-card" prefix.
And it removes rcar-card specifix compatible too.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2016-08-23 09:34:43 +08:00
|
|
|
if (strcmp(np->name, PREFIX "cpu") == 0)
|
2015-12-17 10:49:43 +08:00
|
|
|
is_fe = true;
|
|
|
|
|
2016-10-28 11:37:26 +08:00
|
|
|
ret = asoc_simple_card_dai_link_of(np, priv, daifmt, i, is_fe);
|
2015-12-17 10:49:43 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2017-03-15 12:44:16 +08:00
|
|
|
ret = asoc_simple_card_parse_card_name(card, PREFIX);
|
2016-07-12 08:00:00 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2015-03-26 12:01:27 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static int asoc_simple_card_probe(struct platform_device *pdev)
|
2015-03-26 12:01:27 +08:00
|
|
|
{
|
2016-10-28 11:37:44 +08:00
|
|
|
struct simple_card_data *priv;
|
2016-10-28 11:38:00 +08:00
|
|
|
struct snd_soc_dai_link *dai_link;
|
|
|
|
struct asoc_simple_dai *dai_props;
|
2017-03-15 12:44:16 +08:00
|
|
|
struct snd_soc_card *card;
|
2015-03-26 12:01:27 +08:00
|
|
|
struct device *dev = &pdev->dev;
|
2017-03-15 12:43:40 +08:00
|
|
|
struct device_node *np = dev->of_node;
|
2016-10-28 11:37:26 +08:00
|
|
|
int num, ret;
|
2015-03-26 12:01:27 +08:00
|
|
|
|
|
|
|
/* Allocate the private data */
|
|
|
|
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
|
|
|
if (!priv)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-10-28 11:37:26 +08:00
|
|
|
num = of_get_child_count(np);
|
|
|
|
|
2016-10-28 11:38:00 +08:00
|
|
|
dai_props = devm_kzalloc(dev, sizeof(*dai_props) * num, GFP_KERNEL);
|
|
|
|
dai_link = devm_kzalloc(dev, sizeof(*dai_link) * num, GFP_KERNEL);
|
|
|
|
if (!dai_props || !dai_link)
|
2016-10-28 11:37:26 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-10-28 11:38:00 +08:00
|
|
|
priv->dai_props = dai_props;
|
|
|
|
priv->dai_link = dai_link;
|
2016-10-28 11:37:26 +08:00
|
|
|
|
|
|
|
/* Init snd_soc_card */
|
2017-03-15 12:44:16 +08:00
|
|
|
card = simple_priv_to_card(priv);
|
|
|
|
card->owner = THIS_MODULE;
|
|
|
|
card->dev = dev;
|
|
|
|
card->dai_link = priv->dai_link;
|
|
|
|
card->num_links = num;
|
|
|
|
card->codec_conf = &priv->codec_conf;
|
|
|
|
card->num_configs = 1;
|
2016-10-28 11:37:26 +08:00
|
|
|
|
2017-06-07 08:37:30 +08:00
|
|
|
ret = asoc_simple_card_parse_of(priv);
|
2015-03-26 12:01:27 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
if (ret != -EPROBE_DEFER)
|
|
|
|
dev_err(dev, "parse error %d\n", ret);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2017-03-15 12:44:16 +08:00
|
|
|
snd_soc_card_set_drvdata(card, priv);
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2017-03-15 12:44:16 +08:00
|
|
|
ret = devm_snd_soc_register_card(dev, card);
|
2017-05-19 08:57:44 +08:00
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return 0;
|
2015-03-26 12:01:27 +08:00
|
|
|
err:
|
2017-03-15 12:44:16 +08:00
|
|
|
asoc_simple_card_clean_reference(card);
|
2015-03-26 12:01:27 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static int asoc_simple_card_remove(struct platform_device *pdev)
|
2015-03-26 12:01:27 +08:00
|
|
|
{
|
|
|
|
struct snd_soc_card *card = platform_get_drvdata(pdev);
|
|
|
|
|
2016-08-10 10:22:01 +08:00
|
|
|
return asoc_simple_card_clean_reference(card);
|
2015-03-26 12:01:27 +08:00
|
|
|
}
|
|
|
|
|
2016-08-25 09:58:31 +08:00
|
|
|
static const struct of_device_id asoc_simple_of_match[] = {
|
|
|
|
{ .compatible = "renesas,rsrc-card", },
|
|
|
|
{ .compatible = "simple-scu-audio-card", },
|
|
|
|
{},
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, asoc_simple_of_match);
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static struct platform_driver asoc_simple_card = {
|
2015-03-26 12:01:27 +08:00
|
|
|
.driver = {
|
ASoC: rsrc-card: rename rsrc-card to simple-scu-card phase2
rsrc-card which is using DPCM feature was created for Renesas sound.
But not only Renesas, but many SoC can use this driver, because
it is based on simple-card driver.
To use it as more open driver, rsrc-card will be renamed to
simple-scu-card. In order to easy patch review, as 2nd step,
this patch adds new compatible "simple-scu-audio-card";
rcar-card used specific property, not "simple-audio-card",
but it should be now. Actually, rsrc-card is upstreamed driver,
but noone is using it on upstream. The user is only local,
and it is only me. Thus, there is no compatible break by this patch.
This patch uses "simple-audio-card" prefix.
And it removes rcar-card specifix compatible too.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2016-08-23 09:34:43 +08:00
|
|
|
.name = "simple-scu-audio-card",
|
2017-08-22 12:56:06 +08:00
|
|
|
.pm = &snd_soc_pm_ops,
|
2016-08-25 09:58:31 +08:00
|
|
|
.of_match_table = asoc_simple_of_match,
|
2015-03-26 12:01:27 +08:00
|
|
|
},
|
2016-08-23 09:34:17 +08:00
|
|
|
.probe = asoc_simple_card_probe,
|
|
|
|
.remove = asoc_simple_card_remove,
|
2015-03-26 12:01:27 +08:00
|
|
|
};
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
module_platform_driver(asoc_simple_card);
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
MODULE_ALIAS("platform:asoc-simple-scu-card");
|
2016-08-25 09:56:38 +08:00
|
|
|
MODULE_LICENSE("GPL v2");
|
2016-08-23 09:34:17 +08:00
|
|
|
MODULE_DESCRIPTION("ASoC Simple SCU Sound Card");
|
2015-03-26 12:01:27 +08:00
|
|
|
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
|