Thank you for your contribution! Sashiko AI review found 5 potential issue(s) to consider: - [High] Device-managed allocations (devm_*) are incorrectly placed in the ASoC component probe, causing memory leaks and -EBUSY errors on card unbind/rebind. - [High] The driver silently ignores errors from devm_regulator_get(), breaking deferred probing. - [High] The codec driver defines a DAC widget but lacks physical output endpoints (SND_SOC_DAPM_OUTPUT). - [Medium] The driver uses mdelay() inside a sleepable DAPM event handler, needlessly wasting CPU cycles. - [Low] SND_SOC_PCM1773 uses `select GPIOLIB` instead of `depends on GPIOLIB`, violating cross-config consistency. --
--- Patch [8]: [PATCH 08/16] ASoC: pcm1773-codec: write a driver for the PCM1773 chip from TI --- commit 834434a73863a6e3a112c74fe0cc88b2cf342a3d Author: Grond <[email protected]> ASoC: pcm1773-codec: write a driver for the PCM1773 chip from TI This commit adds a new ASoC codec driver for the Texas Instruments PCM1773 chip, which is used in the OpenPandora. > diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig > index 252f683be3c18..3e186652fa06d 100644 > --- a/sound/soc/codecs/Kconfig > +++ b/sound/soc/codecs/Kconfig [ ... ] > @@ -1541,6 +1542,10 @@ config SND_SOC_PCM1754 > tristate "Texas Instruments PCM1754 CODEC" > depends on GPIOLIB > > +config SND_SOC_PCM1773 > + tristate "Texas Instruments PCM1773 CODEC" > + select GPIOLIB [Severity: Low] Does this config violate cross-config consistency? The adjacent SND_SOC_PCM1754 config uses depends on GPIOLIB, while this one uses select GPIOLIB. > diff --git a/sound/soc/codecs/pcm1773.c b/sound/soc/codecs/pcm1773.c > new file mode 100644 > index 0000000000000..75f9fe40a89d5 > --- /dev/null > +++ b/sound/soc/codecs/pcm1773.c [ ... ] > +static int pcm1773_dac_event(struct snd_soc_dapm_widget *w, > + struct snd_kcontrol *k, int event) > +{ [ ... ] > + if (SND_SOC_DAPM_EVENT_ON(event)) { > + if (ctx->regulator) { > + ret = regulator_enable(ctx->regulator); > + if (ret) { > + dev_err(dev, "Failed to power DAC: %d\n", ret); > + return ret; > + } > + mdelay(1); [Severity: Medium] Since this DAPM event handler is called in process context where sleeping is allowed (as seen by the use of gpiod_set_value_cansleep below), should this use a sleeping delay instead of a busy-wait loop to avoid wasting CPU cycles? > + } > + > + if (ctx->enable_gpio) > + gpiod_set_value_cansleep(ctx->enable_gpio, 1); > + } else { > + if (ctx->enable_gpio) > + gpiod_set_value_cansleep(ctx->enable_gpio, 0); > + > + if (ctx->regulator) { > + mdelay(1); [Severity: Medium] Could this also be a sleeping delay instead of wasting CPU cycles? > + regulator_disable(ctx->regulator); > + } > + } > + > + return 0; > +} > + > +static const struct snd_soc_dapm_widget pcm1773_dapm_widgets[] = { > + SND_SOC_DAPM_DAC_E("PCM1773 DAC", "HiFi Playback", SND_SOC_NOPM, > + 0, 0, pcm1773_dac_event, > + SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), > +}; [Severity: High] Are physical output endpoints missing here? The DAPM widgets define the DAC, but there are no corresponding physical sink endpoints (like SND_SOC_DAPM_OUTPUT) provided to terminate the playback path. Without a path to a sink endpoint, the DAPM graph remains incomplete and the DAC will not be powered on during playback. [ ... ] > +static int pcm1773_probe(struct snd_soc_component *component) > +{ > + struct pcm1773 *ctx = NULL; > + struct device *dev = component->dev; > + int ret; > + > + ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL); [Severity: High] Will placing device-managed allocations inside the ASoC component probe cause memory leaks and failures on rebind? When a sound card unbinds and rebinds (such as during deferred probing of a machine driver), pcm1773_probe() is called multiple times. Because these allocations are tied to the underlying platform device dev rather than the component lifetime, the memory won't be freed until the platform device itself is removed. > + if (!ctx) > + return -ENOMEM; > + snd_soc_component_set_drvdata(component, ctx); > + > + ctx->enable_gpio = devm_gpiod_get_optional(dev, "enable", > GPIOD_OUT_LOW); [Severity: High] Does requesting the GPIO here also fail on card rebind? Since devm_gpiod_get_optional is tied to the platform device, an unbind and rebind of the sound card will attempt to request the same GPIO again before the platform device is removed, resulting in a permanent -EBUSY error. > + if (IS_ERR(ctx->enable_gpio)) { > + return dev_err_probe(dev, PTR_ERR(ctx->enable_gpio), > + "invalid GPIO specification for enable"); > + } > + if (ctx->enable_gpio) > + dev_dbg(dev, "got enable-gpio\n"); > + else > + dev_warn(dev, "enable-gpio not specified\n"); > + > + ctx->regulator = devm_regulator_get(dev, "vcc"); > + if (IS_ERR(ctx->regulator)) { > + dev_warn(dev, "cannot get regulator 'vcc'"); > + ctx->regulator = NULL; > + } [Severity: High] Does this silently break deferred probing? If devm_regulator_get returns -EPROBE_DEFER (because the regulator driver probes after this codec), the error is swallowed, ctx->regulator is set to NULL, and the function returns 0. The driver will successfully probe without its regulator, resulting in silent audio failures since the DAC won't be powered. -- Sashiko AI review ยท https://sashiko.dev/#/patchset/[email protected]?part=8
