* [PATCH 1/3 v2] ASoC: soc-core: add component lookup functions
2017-10-02 5:09 [PATCH 0/2 v2] ASoC: soc-core: add missing component functions Kuninori Morimoto
@ 2017-10-02 5:09 ` Kuninori Morimoto
2017-10-02 5:10 ` [PATCH 2/3 v2] ASoC: soc-core: add snd_soc_add_component() Kuninori Morimoto
2017-10-02 5:10 ` [PATCH 3/3 v2] ASoC: soc-core: remove unnecessary message from snd_soc_register_component() Kuninori Morimoto
2 siblings, 0 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2017-10-02 5:09 UTC (permalink / raw)
To: Mark Brown; +Cc: Linux-ALSA, Simon, Daniel Baluta
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
ALSA SoC platform/codec will be replaced to component soon.
This means 1 device might have multiple components. But current
unregister component function only checks "dev" to find it.
This means, unexpected component might be unregistered by current
function.
But, it is no problem if driver registered only 1 component.
To prepare avoid this issue, this patch adds new component
lookup function. it finds component by "dev" and "driver name".
Here, the reason why it uses "driver name" is that "component name"
was created by fmt_single_name() and difficult to use it from driver.
Driver of course knows its "driver name", thus, using it is more easy.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
v1 -> v2
- no change
include/sound/soc.h | 2 ++
sound/soc/soc-core.c | 26 ++++++++++++++++++++++++++
2 files changed, 28 insertions(+)
diff --git a/include/sound/soc.h b/include/sound/soc.h
index d776cde..11ca867 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -475,6 +475,8 @@ int devm_snd_soc_register_component(struct device *dev,
const struct snd_soc_component_driver *component_driver,
struct snd_soc_dai_driver *dai_drv, int num_dai);
void snd_soc_unregister_component(struct device *dev);
+struct snd_soc_component *snd_soc_lookup_component(struct device *dev,
+ const char *driver_name);
int snd_soc_cache_init(struct snd_soc_codec *codec);
int snd_soc_cache_exit(struct snd_soc_codec *codec);
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index fb34351..6ec1273 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -3481,6 +3481,32 @@ void snd_soc_unregister_component(struct device *dev)
}
EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
+struct snd_soc_component *snd_soc_lookup_component(struct device *dev,
+ const char *driver_name)
+{
+ struct snd_soc_component *component;
+ struct snd_soc_component *ret;
+
+ ret = NULL;
+ mutex_lock(&client_mutex);
+ list_for_each_entry(component, &component_list, list) {
+ if (dev != component->dev)
+ continue;
+
+ if (driver_name &&
+ (driver_name != component->driver->name) &&
+ (strcmp(component->driver->name, driver_name) != 0))
+ continue;
+
+ ret = component;
+ break;
+ }
+ mutex_unlock(&client_mutex);
+
+ return ret;
+}
+EXPORT_SYMBOL_GPL(snd_soc_lookup_component);
+
static int snd_soc_platform_drv_probe(struct snd_soc_component *component)
{
struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/3 v2] ASoC: soc-core: add snd_soc_add_component()
2017-10-02 5:09 [PATCH 0/2 v2] ASoC: soc-core: add missing component functions Kuninori Morimoto
2017-10-02 5:09 ` [PATCH 1/3 v2] ASoC: soc-core: add component lookup functions Kuninori Morimoto
@ 2017-10-02 5:10 ` Kuninori Morimoto
2017-10-02 5:10 ` [PATCH 3/3 v2] ASoC: soc-core: remove unnecessary message from snd_soc_register_component() Kuninori Morimoto
2 siblings, 0 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2017-10-02 5:10 UTC (permalink / raw)
To: Mark Brown; +Cc: Linux-ALSA, Simon, Daniel Baluta
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
ALSA SoC platform/codec will be replaced to component soon.
But, some function exist in "platform" doesn't exist in "component".
Current soc-core has snd_soc_register_component(), but
doesn't have snd_soc_add_component() like snd_soc_add_platform().
This patch adds it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
v1 -> v2
- no change
include/sound/soc.h | 5 +++++
sound/soc/soc-core.c | 34 +++++++++++++++++++++++-----------
2 files changed, 28 insertions(+), 11 deletions(-)
diff --git a/include/sound/soc.h b/include/sound/soc.h
index 11ca867..eea3007 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -468,6 +468,11 @@ int snd_soc_register_codec(struct device *dev,
const struct snd_soc_codec_driver *codec_drv,
struct snd_soc_dai_driver *dai_drv, int num_dai);
void snd_soc_unregister_codec(struct device *dev);
+int snd_soc_add_component(struct device *dev,
+ struct snd_soc_component *component,
+ const struct snd_soc_component_driver *component_driver,
+ struct snd_soc_dai_driver *dai_drv,
+ int num_dai);
int snd_soc_register_component(struct device *dev,
const struct snd_soc_component_driver *component_driver,
struct snd_soc_dai_driver *dai_drv, int num_dai);
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 6ec1273..166b6d2 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -3404,20 +3404,14 @@ static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
list_del(&component->list);
}
-int snd_soc_register_component(struct device *dev,
- const struct snd_soc_component_driver *component_driver,
- struct snd_soc_dai_driver *dai_drv,
- int num_dai)
+int snd_soc_add_component(struct device *dev,
+ struct snd_soc_component *component,
+ const struct snd_soc_component_driver *component_driver,
+ struct snd_soc_dai_driver *dai_drv,
+ int num_dai)
{
- struct snd_soc_component *component;
int ret;
- component = kzalloc(sizeof(*component), GFP_KERNEL);
- if (!component) {
- dev_err(dev, "ASoC: Failed to allocate memory\n");
- return -ENOMEM;
- }
-
ret = snd_soc_component_initialize(component, component_driver, dev);
if (ret)
goto err_free;
@@ -3441,6 +3435,24 @@ int snd_soc_register_component(struct device *dev,
kfree(component);
return ret;
}
+EXPORT_SYMBOL_GPL(snd_soc_add_component);
+
+int snd_soc_register_component(struct device *dev,
+ const struct snd_soc_component_driver *component_driver,
+ struct snd_soc_dai_driver *dai_drv,
+ int num_dai)
+{
+ struct snd_soc_component *component;
+
+ component = kzalloc(sizeof(*component), GFP_KERNEL);
+ if (!component) {
+ dev_err(dev, "ASoC: Failed to allocate memory\n");
+ return -ENOMEM;
+ }
+
+ return snd_soc_add_component(dev, component, component_driver,
+ dai_drv, num_dai);
+}
EXPORT_SYMBOL_GPL(snd_soc_register_component);
/**
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 3/3 v2] ASoC: soc-core: remove unnecessary message from snd_soc_register_component()
2017-10-02 5:09 [PATCH 0/2 v2] ASoC: soc-core: add missing component functions Kuninori Morimoto
2017-10-02 5:09 ` [PATCH 1/3 v2] ASoC: soc-core: add component lookup functions Kuninori Morimoto
2017-10-02 5:10 ` [PATCH 2/3 v2] ASoC: soc-core: add snd_soc_add_component() Kuninori Morimoto
@ 2017-10-02 5:10 ` Kuninori Morimoto
2017-10-10 9:23 ` Applied "ASoC: soc-core: remove unnecessary message from snd_soc_register_component()" to the asoc tree Mark Brown
2 siblings, 1 reply; 5+ messages in thread
From: Kuninori Morimoto @ 2017-10-02 5:10 UTC (permalink / raw)
To: Mark Brown; +Cc: Linux-ALSA, Simon, Daniel Baluta
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
No need to print an error message if kzalloc fails.
The core will print it.
Reported-by: Daniel Baluta <daniel.baluta@gmail.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
v1 -> v2
- new patch which was reported by Daniel
sound/soc/soc-core.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 166b6d2..a3dcf14 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -3445,10 +3445,8 @@ int snd_soc_register_component(struct device *dev,
struct snd_soc_component *component;
component = kzalloc(sizeof(*component), GFP_KERNEL);
- if (!component) {
- dev_err(dev, "ASoC: Failed to allocate memory\n");
+ if (!component)
return -ENOMEM;
- }
return snd_soc_add_component(dev, component, component_driver,
dai_drv, num_dai);
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread