]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: SDCA: Add lock to serialise the Function initialisation
authorCharles Keepax <ckeepax@opensource.cirrus.com>
Fri, 9 Jan 2026 14:52:06 +0000 (14:52 +0000)
committerMark Brown <broonie@kernel.org>
Wed, 14 Jan 2026 13:35:54 +0000 (13:35 +0000)
To avoid issues on some devices serialise the boot of each SDCA Function
from the others.

Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.dev>
Link: https://patch.msgid.link/20260109145206.3456151-5-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sdca/sdca_class.c
sound/soc/sdca/sdca_class.h
sound/soc/sdca/sdca_class_function.c

index 6d19a183683e83e05009269f44031af7bf76026a..918b638acb5774d79aad7fdcdafb7c70bafc3f14 100644 (file)
@@ -205,6 +205,7 @@ static int class_sdw_probe(struct sdw_slave *sdw, const struct sdw_device_id *id
        drv->dev = dev;
        drv->sdw = sdw;
        mutex_init(&drv->regmap_lock);
+       mutex_init(&drv->init_lock);
 
        dev_set_drvdata(drv->dev, drv);
 
index bb4c9dd124296160f4a6d3fd9af0f13eb350ca67..6f24ea2bbd381723d16986c38895873e52e0fe0a 100644 (file)
@@ -28,6 +28,8 @@ struct sdca_class_drv {
        struct sdca_interrupt_info *irq_info;
 
        struct mutex regmap_lock;
+       /* Serialise function initialisations */
+       struct mutex init_lock;
        struct work_struct boot_work;
        struct completion device_attach;
 
index bbf486d9a3d07ba6937779b6448d8bf17fb01c1d..0afa41c1ee93c9e741492ff580ca8187fda80fbf 100644 (file)
@@ -8,6 +8,7 @@
  */
 
 #include <linux/auxiliary_bus.h>
+#include <linux/cleanup.h>
 #include <linux/minmax.h>
 #include <linux/module.h>
 #include <linux/pm.h>
@@ -244,6 +245,8 @@ static int class_function_boot(struct class_function_drv *drv)
        unsigned int val;
        int ret;
 
+       guard(mutex)(&drv->core->init_lock);
+
        ret = regmap_read(drv->regmap, reg, &val);
        if (ret < 0) {
                dev_err(drv->dev, "failed to read function status: %d\n", ret);
@@ -418,6 +421,8 @@ static int class_function_runtime_resume(struct device *dev)
        struct class_function_drv *drv = auxiliary_get_drvdata(auxdev);
        int ret;
 
+       guard(mutex)(&drv->core->init_lock);
+
        regcache_mark_dirty(drv->regmap);
        regcache_cache_only(drv->regmap, false);