[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <SJ0PR03MB67794358405FA661992A206D990B9@SJ0PR03MB6779.namprd03.prod.outlook.com>
Date: Thu, 10 Mar 2022 08:48:09 +0000
From: "Sa, Nuno" <Nuno.Sa@...log.com>
To: Steve Lee <steve.lee.analog@...il.com>,
"lgirdwood@...il.com" <lgirdwood@...il.com>,
"broonie@...nel.org" <broonie@...nel.org>,
"perex@...ex.cz" <perex@...ex.cz>,
"tiwai@...e.com" <tiwai@...e.com>,
"ckeepax@...nsource.cirrus.com" <ckeepax@...nsource.cirrus.com>,
"geert@...ux-m68k.org" <geert@...ux-m68k.org>,
"rf@...nsource.wolfsonmicro.com" <rf@...nsource.wolfsonmicro.com>,
"shumingf@...ltek.com" <shumingf@...ltek.com>,
"srinivas.kandagatla@...aro.org" <srinivas.kandagatla@...aro.org>,
"krzk@...nel.org" <krzk@...nel.org>,
"dmurphy@...com" <dmurphy@...com>,
"jack.yu@...ltek.com" <jack.yu@...ltek.com>,
"steves.lee@...imintegrated.com" <steves.lee@...imintegrated.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"alsa-devel@...a-project.org" <alsa-devel@...a-project.org>
Subject: RE: [PATCH] ASoC: max98390: Add reset gpio control
Hi Steve,
> From: Steve Lee <steve.lee.analog@...il.com>
> Sent: Thursday, March 10, 2022 9:16 AM
> To: lgirdwood@...il.com; broonie@...nel.org; perex@...ex.cz;
> tiwai@...e.com; ckeepax@...nsource.cirrus.com; geert@...ux-
> m68k.org; rf@...nsource.wolfsonmicro.com; shumingf@...ltek.com;
> srinivas.kandagatla@...aro.org; krzk@...nel.org; dmurphy@...com;
> jack.yu@...ltek.com; Sa, Nuno <Nuno.Sa@...log.com>;
> steves.lee@...imintegrated.com; linux-kernel@...r.kernel.org;
> alsa-devel@...a-project.org
> Cc: Steve Lee <steve.lee.analog@...il.com>
> Subject: [PATCH] ASoC: max98390: Add reset gpio control
>
> [External]
>
> Add reset gpio control to support RESET PIN connected to gpio.
>
> Signed-off-by: Steve Lee <steve.lee.analog@...il.com>
> ---
> sound/soc/codecs/max98390.c | 18 ++++++++++++++++++
> sound/soc/codecs/max98390.h | 1 +
> 2 files changed, 19 insertions(+)
>
> diff --git a/sound/soc/codecs/max98390.c
> b/sound/soc/codecs/max98390.c
> index b392567c2b3e..574d8d5f1119 100644
> --- a/sound/soc/codecs/max98390.c
> +++ b/sound/soc/codecs/max98390.c
> @@ -1073,6 +1073,24 @@ static int max98390_i2c_probe(struct
> i2c_client *i2c,
> return ret;
> }
>
> + max98390->reset_gpio = of_get_named_gpio(i2c-
> >dev.of_node,
> + "maxim,reset-gpios", 0);
Why not using devm_gpiod_get_optional()? We could request the pin
already in the asserted state and make the code slightly better...
/* I guess there's no need to save it in our struct as we only use it here? */
struct gpio_desc *reset_gpio;
reset_gpio = devm_gpiod_get_optional(&i2c->dev, "reset", GPIOD_OUT_HIGH);
if (reset_gpio) {
usleep_range(1000, 2000);
/* bring out of reset */
gpio_direction_output(max98390->reset_gpio, 0);
usleep_range(1000, 2000);
}
Also, do we have this on the bindings doc? If not, it should be done on a second
patch on this series...
- Nuno Sá
Powered by blists - more mailing lists