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-08-23 09:34:17 +08:00
|
|
|
struct asoc_simple_card_priv {
|
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;
|
2015-03-26 12:01:46 +08:00
|
|
|
u32 convert_rate;
|
2016-02-25 13:51:44 +08:00
|
|
|
u32 convert_channels;
|
2015-03-26 12:01:27 +08:00
|
|
|
};
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
#define simple_priv_to_dev(priv) ((priv)->snd_card.dev)
|
|
|
|
#define simple_priv_to_link(priv, i) ((priv)->snd_card.dai_link + (i))
|
|
|
|
#define simple_priv_to_props(priv, i) ((priv)->dai_props + (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-08-23 09:34:17 +08:00
|
|
|
struct asoc_simple_card_priv *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
|
|
|
|
2015-06-15 14:24:15 +08:00
|
|
|
return clk_prepare_enable(dai_props->clk);
|
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-08-23 09:34:17 +08:00
|
|
|
struct asoc_simple_card_priv *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
|
|
|
|
2015-06-15 14:24:15 +08:00
|
|
|
clk_disable_unprepare(dai_props->clk);
|
2015-03-26 12:01:27 +08:00
|
|
|
}
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static struct snd_soc_ops asoc_simple_card_ops = {
|
|
|
|
.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-08-23 09:34:17 +08:00
|
|
|
struct asoc_simple_card_priv *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-08-23 09:34:17 +08:00
|
|
|
struct asoc_simple_card_priv *priv = snd_soc_card_get_drvdata(rtd->card);
|
2015-03-26 12:01:46 +08:00
|
|
|
struct snd_interval *rate = hw_param_interval(params,
|
|
|
|
SNDRV_PCM_HW_PARAM_RATE);
|
2016-02-25 13:51:44 +08:00
|
|
|
struct snd_interval *channels = hw_param_interval(params,
|
|
|
|
SNDRV_PCM_HW_PARAM_CHANNELS);
|
2015-03-26 12:01:46 +08:00
|
|
|
|
2016-02-25 13:51:44 +08:00
|
|
|
if (priv->convert_rate)
|
|
|
|
rate->min =
|
|
|
|
rate->max = priv->convert_rate;
|
2015-03-26 12:01:46 +08:00
|
|
|
|
2016-02-25 13:51:44 +08:00
|
|
|
if (priv->convert_channels)
|
|
|
|
channels->min =
|
|
|
|
channels->max = priv->convert_channels;
|
2015-03-26 12:01:46 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static int asoc_simple_card_parse_links(struct device_node *np,
|
|
|
|
struct asoc_simple_card_priv *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);
|
2015-03-26 12:01:27 +08:00
|
|
|
int ret;
|
|
|
|
|
2015-12-17 10:48:23 +08:00
|
|
|
/* Parse TDM slot */
|
|
|
|
ret = snd_soc_of_parse_tdm_slot(np,
|
|
|
|
&dai_props->tx_slot_mask,
|
|
|
|
&dai_props->rx_slot_mask,
|
|
|
|
&dai_props->slots,
|
|
|
|
&dai_props->slot_width);
|
|
|
|
if (ret)
|
|
|
|
return 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
|
|
|
|
2016-07-19 10:53:32 +08:00
|
|
|
ret = asoc_simple_card_parse_clk_cpu(np, dai_link, dai_props);
|
|
|
|
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
|
|
|
|
2016-07-19 10:53:32 +08:00
|
|
|
ret = asoc_simple_card_parse_clk_codec(np, dai_link, dai_props);
|
|
|
|
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;
|
|
|
|
|
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
|
|
|
snd_soc_of_parse_audio_prefix(&priv->snd_card,
|
|
|
|
&priv->codec_conf,
|
|
|
|
dai_link->codec_of_node,
|
|
|
|
PREFIX "prefix");
|
2015-03-26 12:01:27 +08:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
dev_dbg(dev, "\t%s / %04x / %d\n",
|
2016-07-12 07:58:25 +08:00
|
|
|
dai_link->name,
|
2015-12-17 10:48:58 +08:00
|
|
|
dai_link->dai_fmt,
|
2015-06-15 14:24:15 +08:00
|
|
|
dai_props->sysclk);
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2016-07-19 10:53:32 +08:00
|
|
|
return 0;
|
2015-03-26 12:01:27 +08:00
|
|
|
}
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static int asoc_simple_card_dai_link_of(struct device_node *node,
|
|
|
|
struct asoc_simple_card_priv *priv)
|
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;
|
|
|
|
unsigned int daifmt = 0;
|
|
|
|
int ret, i;
|
|
|
|
bool is_fe;
|
|
|
|
|
|
|
|
/* find 1st codec */
|
2016-08-25 09:57:04 +08:00
|
|
|
np = of_get_child_by_name(node, PREFIX "codec");
|
|
|
|
if (!np)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_daifmt(dev, node, np,
|
|
|
|
PREFIX, &daifmt);
|
|
|
|
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-08-25 09:57:30 +08:00
|
|
|
ret = asoc_simple_card_parse_links(np, priv, daifmt, i, is_fe);
|
2015-12-17 10:49:43 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
static int asoc_simple_card_parse_of(struct device_node *node,
|
|
|
|
struct asoc_simple_card_priv *priv,
|
2015-06-15 14:22:05 +08:00
|
|
|
struct device *dev)
|
2015-03-26 12:01:27 +08:00
|
|
|
{
|
2016-07-12 07:58:50 +08:00
|
|
|
struct asoc_simple_dai *props;
|
2015-06-15 14:22:30 +08:00
|
|
|
struct snd_soc_dai_link *links;
|
2015-03-26 12:01:27 +08:00
|
|
|
int ret;
|
2015-12-17 10:49:43 +08:00
|
|
|
int num;
|
2015-03-26 12:01:27 +08:00
|
|
|
|
|
|
|
if (!node)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2015-06-15 14:22:30 +08:00
|
|
|
num = of_get_child_count(node);
|
|
|
|
props = devm_kzalloc(dev, sizeof(*props) * num, GFP_KERNEL);
|
|
|
|
links = devm_kzalloc(dev, sizeof(*links) * num, GFP_KERNEL);
|
|
|
|
if (!props || !links)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
priv->dai_props = props;
|
|
|
|
priv->dai_link = links;
|
|
|
|
|
2015-06-15 14:22:05 +08:00
|
|
|
/* Init snd_soc_card */
|
|
|
|
priv->snd_card.owner = THIS_MODULE;
|
|
|
|
priv->snd_card.dev = dev;
|
|
|
|
priv->snd_card.dai_link = priv->dai_link;
|
2015-06-15 14:22:30 +08:00
|
|
|
priv->snd_card.num_links = num;
|
2015-06-15 14:22:05 +08:00
|
|
|
priv->snd_card.codec_conf = &priv->codec_conf;
|
|
|
|
priv->snd_card.num_configs = 1;
|
2015-07-15 15:08:05 +08:00
|
|
|
|
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
|
|
|
ret = snd_soc_of_parse_audio_routing(&priv->snd_card, PREFIX "routing");
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2015-03-26 12:01:46 +08:00
|
|
|
/* sampling rate convert */
|
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
|
|
|
of_property_read_u32(node, PREFIX "convert-rate", &priv->convert_rate);
|
2015-03-26 12:01:46 +08:00
|
|
|
|
2016-02-25 13:51:44 +08:00
|
|
|
/* channels transfer */
|
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
|
|
|
of_property_read_u32(node, PREFIX "convert-channels", &priv->convert_channels);
|
2015-03-26 12:01:27 +08:00
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
ret = asoc_simple_card_dai_link_of(node, priv);
|
2015-12-17 10:49:43 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2015-03-26 12:01:27 +08:00
|
|
|
|
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
|
|
|
ret = asoc_simple_card_parse_card_name(&priv->snd_card, PREFIX);
|
2016-07-12 08:00:00 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2015-03-26 12:01:27 +08:00
|
|
|
|
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
|
|
|
dev_dbg(dev, "New card: %s\n",
|
|
|
|
priv->snd_card.name ? priv->snd_card.name : "");
|
|
|
|
dev_dbg(dev, "convert_rate %d\n", priv->convert_rate);
|
|
|
|
dev_dbg(dev, "convert_channels %d\n", priv->convert_channels);
|
|
|
|
|
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-08-23 09:34:17 +08:00
|
|
|
struct asoc_simple_card_priv *priv;
|
2015-03-26 12:01:27 +08:00
|
|
|
struct device_node *np = pdev->dev.of_node;
|
|
|
|
struct device *dev = &pdev->dev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Allocate the private data */
|
|
|
|
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
|
|
|
if (!priv)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-08-23 09:34:17 +08:00
|
|
|
ret = asoc_simple_card_parse_of(np, priv, dev);
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
snd_soc_card_set_drvdata(&priv->snd_card, priv);
|
|
|
|
|
|
|
|
ret = devm_snd_soc_register_card(&pdev->dev, &priv->snd_card);
|
|
|
|
if (ret >= 0)
|
|
|
|
return ret;
|
|
|
|
err:
|
2016-08-10 10:22:01 +08:00
|
|
|
asoc_simple_card_clean_reference(&priv->snd_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",
|
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>");
|