Linux Sound subsystem development
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Mohammad Rafi Shaik <quic_mohs@quicinc.com>,
	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
	Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>,
	Mark Brown <broonie@kernel.org>, Sasha Levin <sashal@kernel.org>,
	srini@kernel.org, p.zabel@pengutronix.de,
	linus.walleij@linaro.org, brgl@bgdev.pl,
	linux-sound@vger.kernel.org, linux-arm-msm@vger.kernel.org,
	linux-gpio@vger.kernel.org
Subject: [PATCH AUTOSEL 6.17] ASoC: codecs: wsa883x: Handle shared reset GPIO for WSA883x speakers
Date: Sat, 25 Oct 2025 11:57:16 -0400	[thread overview]
Message-ID: <20251025160905.3857885-205-sashal@kernel.org> (raw)
In-Reply-To: <20251025160905.3857885-1-sashal@kernel.org>

From: Mohammad Rafi Shaik <quic_mohs@quicinc.com>

[ Upstream commit cf65182247761f7993737b710afe8c781699356b ]

On some Qualcomm platforms such as QCS6490-RB3Gen2, the multiple
WSA8830/WSA8835 speaker amplifiers share a common reset (shutdown) GPIO.

To handle such scenario, use the reset controller framework and its
"reset-gpio" driver to handle such case. This allows proper handling
of all WSA883x speaker amplifiers on QCS6490-RB3Gen2 board.

Signed-off-by: Mohammad Rafi Shaik <quic_mohs@quicinc.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>
Link: https://patch.msgid.link/20250815172353.2430981-3-mohammad.rafi.shaik@oss.qualcomm.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---

LLM Generated explanations, may be completely bogus:

YES

- What it fixes
  - Addresses real functional issues on platforms where multiple WSA883x
    amplifiers share a single shutdown/reset line (e.g.,
    QCS6490-RB3Gen2). Using a plain GPIO per-device does not coordinate
    shared users; one instance toggling the line can inadvertently reset
    others. The patch switches to the reset controller framework with
    the reset‑gpio backend to handle shared lines correctly.

- Scope and minimality
  - Single-file, localized change in `sound/soc/codecs/wsa883x.c`.
  - No ABI or architectural changes; strictly startup/shutdown control
    path in probe.
  - Optional feature: falls back to existing `powerdown-gpios` behavior
    if no reset controller is provided, keeping backward compatibility.

- Specific code changes and rationale
  - Adds reset framework usage
    - Include added: `#include <linux/reset.h>` in
      `sound/soc/codecs/wsa883x.c`.
    - Private data gains an optional reset handle: `struct reset_control
      *sd_reset;` alongside the existing `sd_n` GPIO
      (sound/soc/codecs/wsa883x.c:462).
  - Centralized assert/deassert helpers
    - New helpers `wsa883x_reset_assert()` and
      `wsa883x_reset_deassert()` switch between
      `reset_control_assert/deassert()` and
      `gpiod_direction_output(sd_n, 1/0)` depending on whether a reset
      control is present.
  - Robust resource acquisition with graceful fallback
    - New `wsa883x_get_reset()` first tries
      `devm_reset_control_get_optional_shared(dev, NULL)` and, if none,
      falls back to the existing `devm_gpiod_get_optional(dev,
      "powerdown", ...)` path. This keeps old DTs working while enabling
      shared-reset handling when “resets”/“reset-gpios” is used.
  - Safer cleanup on errors/unbind
    - In `wsa883x_probe()`, instead of manually asserting the GPIO only
      on regmap-init failure (previous code:
      `gpiod_direction_output(wsa883x->sd_n, 1)` in the error path at
      sound/soc/codecs/wsa883x.c:1579–1585), the patch calls
      `wsa883x_reset_deassert(wsa883x)` to bring the device out of
      reset, then registers `devm_add_action_or_reset(dev,
      wsa883x_reset_assert, wsa883x)`. This guarantees the reset is
      asserted on any probe failure or device removal, mirroring the
      established pattern used in other codecs.
  - Probe flow changes (localized, low risk)
    - Replaces the hardwired GPIO bring-up:
      - Old: acquire `powerdown-gpios` then
        `gpiod_direction_output(sd_n, 0)` to deassert
        (sound/soc/codecs/wsa883x.c:1572–1575, 1561–1568).
      - New: `wsa883x_get_reset()` and `wsa883x_reset_deassert()` with
        `devm_add_action_or_reset` to ensure deterministic cleanup.
        Functionally equivalent for non-shared setups, but robust for
        shared lines.

- Precedent and consistency
  - The WSA884x codec already uses the same reset-controller-with-
    fallback pattern (e.g., `sound/soc/codecs/wsa884x.c:1999–2060`),
    demonstrating the approach is accepted upstream and low risk. This
    change brings WSA883x in line with WSA884x.

- Backport risk assessment
  - Small, contained, and backwards compatible: if no reset controller,
    code behaves as before with the `powerdown-gpios` line.
  - No behavioral change to runtime PM/audio paths; only reset/powerdown
    handling in probe/cleanup is touched.
  - No dependencies beyond standard reset framework and `reset-gpio`,
    both present in stable series; the driver already builds with reset
    APIs (used elsewhere in tree).
  - Documentation note: current 6.17 binding for WSA883x
    (`Documentation/devicetree/bindings/sound/qcom,wsa883x.yaml`) lists
    `powerdown-gpios`, not `reset-gpios`/`resets`. Functionally this is
    fine (fallback keeps working), but if boards want to use shared
    reset via reset-gpio, a binding backport (to allow `reset-gpios` or
    `resets`) may be desirable to avoid dtbs_check warnings. This is
    documentation-only and does not affect runtime.

- Stable criteria
  - Fixes a real platform issue (shared reset handling) affecting users.
  - No new features to the audio path; no architectural refactor.
  - Very low regression risk, self-contained, and aligns with existing
    patterns in sibling drivers.
  - While there is no explicit “Fixes:” or “Cc: stable”, the change
    clearly improves correctness on affected hardware with minimal
    impact elsewhere, making it a good stable candidate.

 sound/soc/codecs/wsa883x.c | 57 ++++++++++++++++++++++++++++++++------
 1 file changed, 49 insertions(+), 8 deletions(-)

diff --git a/sound/soc/codecs/wsa883x.c b/sound/soc/codecs/wsa883x.c
index 188363b03b937..ca4520ade79aa 100644
--- a/sound/soc/codecs/wsa883x.c
+++ b/sound/soc/codecs/wsa883x.c
@@ -14,6 +14,7 @@
 #include <linux/printk.h>
 #include <linux/regmap.h>
 #include <linux/regulator/consumer.h>
+#include <linux/reset.h>
 #include <linux/slab.h>
 #include <linux/soundwire/sdw.h>
 #include <linux/soundwire/sdw_registers.h>
@@ -468,6 +469,7 @@ struct wsa883x_priv {
 	struct sdw_stream_runtime *sruntime;
 	struct sdw_port_config port_config[WSA883X_MAX_SWR_PORTS];
 	struct gpio_desc *sd_n;
+	struct reset_control *sd_reset;
 	bool port_prepared[WSA883X_MAX_SWR_PORTS];
 	bool port_enable[WSA883X_MAX_SWR_PORTS];
 	int active_ports;
@@ -1546,6 +1548,46 @@ static const struct hwmon_chip_info wsa883x_hwmon_chip_info = {
 	.info	= wsa883x_hwmon_info,
 };
 
+static void wsa883x_reset_assert(void *data)
+{
+	struct wsa883x_priv *wsa883x = data;
+
+	if (wsa883x->sd_reset)
+		reset_control_assert(wsa883x->sd_reset);
+	else
+		gpiod_direction_output(wsa883x->sd_n, 1);
+}
+
+static void wsa883x_reset_deassert(struct wsa883x_priv *wsa883x)
+{
+	if (wsa883x->sd_reset)
+		reset_control_deassert(wsa883x->sd_reset);
+	else
+		gpiod_direction_output(wsa883x->sd_n, 0);
+}
+
+static int wsa883x_get_reset(struct device *dev, struct wsa883x_priv *wsa883x)
+{
+	wsa883x->sd_reset = devm_reset_control_get_optional_shared(dev, NULL);
+	if (IS_ERR(wsa883x->sd_reset))
+		return dev_err_probe(dev, PTR_ERR(wsa883x->sd_reset),
+				     "Failed to get reset\n");
+	/*
+	 * if sd_reset: NULL, so use the backwards compatible way for powerdown-gpios,
+	 * which does not handle sharing GPIO properly.
+	 */
+	if (!wsa883x->sd_reset) {
+		wsa883x->sd_n = devm_gpiod_get_optional(dev, "powerdown",
+							GPIOD_FLAGS_BIT_NONEXCLUSIVE |
+							GPIOD_OUT_HIGH);
+		if (IS_ERR(wsa883x->sd_n))
+			return dev_err_probe(dev, PTR_ERR(wsa883x->sd_n),
+					     "Shutdown Control GPIO not found\n");
+	}
+
+	return 0;
+}
+
 static int wsa883x_probe(struct sdw_slave *pdev,
 			 const struct sdw_device_id *id)
 {
@@ -1566,13 +1608,9 @@ static int wsa883x_probe(struct sdw_slave *pdev,
 	if (ret)
 		return dev_err_probe(dev, ret, "Failed to enable vdd regulator\n");
 
-	wsa883x->sd_n = devm_gpiod_get_optional(dev, "powerdown",
-						GPIOD_FLAGS_BIT_NONEXCLUSIVE | GPIOD_OUT_HIGH);
-	if (IS_ERR(wsa883x->sd_n)) {
-		ret = dev_err_probe(dev, PTR_ERR(wsa883x->sd_n),
-				    "Shutdown Control GPIO not found\n");
+	ret = wsa883x_get_reset(dev, wsa883x);
+	if (ret)
 		goto err;
-	}
 
 	dev_set_drvdata(dev, wsa883x);
 	wsa883x->slave = pdev;
@@ -1595,11 +1633,14 @@ static int wsa883x_probe(struct sdw_slave *pdev,
 	pdev->prop.simple_clk_stop_capable = true;
 	pdev->prop.sink_dpn_prop = wsa_sink_dpn_prop;
 	pdev->prop.scp_int1_mask = SDW_SCP_INT1_BUS_CLASH | SDW_SCP_INT1_PARITY;
-	gpiod_direction_output(wsa883x->sd_n, 0);
+
+	wsa883x_reset_deassert(wsa883x);
+	ret = devm_add_action_or_reset(dev, wsa883x_reset_assert, wsa883x);
+	if (ret)
+		return ret;
 
 	wsa883x->regmap = devm_regmap_init_sdw(pdev, &wsa883x_regmap_config);
 	if (IS_ERR(wsa883x->regmap)) {
-		gpiod_direction_output(wsa883x->sd_n, 1);
 		ret = dev_err_probe(dev, PTR_ERR(wsa883x->regmap),
 				    "regmap_init failed\n");
 		goto err;
-- 
2.51.0


  parent reply	other threads:[~2025-10-25 16:18 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20251025160905.3857885-1-sashal@kernel.org>
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] ASoC: ops: improve snd_soc_get_volsw Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] ASoC: tas2781: Add keyword "init" in profile section Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] ASoC: tlv320aic3x: Fix class-D initialization for tlv320aic3007 Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: set SIFCTR register Sasha Levin
2025-10-25 15:57 ` Sasha Levin [this message]
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: use reset controller Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] ASoC: qcom: sc8280xp: explicitly set S16LE format in sc8280xp_be_hw_params_fixup() Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: add .symmetric_xxx on snd_soc_dai_driver Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: tidyup DMAC stop timing Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.6] ASoC: stm32: sai: manage context in set_sysclk callback Sasha Levin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20251025160905.3857885-205-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=brgl@bgdev.pl \
    --cc=broonie@kernel.org \
    --cc=krzysztof.kozlowski@linaro.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=p.zabel@pengutronix.de \
    --cc=patches@lists.linux.dev \
    --cc=quic_mohs@quicinc.com \
    --cc=srini@kernel.org \
    --cc=srinivas.kandagatla@oss.qualcomm.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox