Message ID | 29a846da33c02df64eca62b5fa0f3884652f788f.1580950046.git.robin.murphy@arm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Clean up RK3328 audio codec GPIO control | expand |
On Thu, Feb 06, 2020 at 01:07:12AM +0000, Robin Murphy wrote: > The RK3328 reference design uses an external line driver IC as a buffer > on the analog codec output, enabled by the GPIO_MUTE pin, and such a > configuration is currently assumed in the codec driver's direct poking > of GRF_SOC_CON10 to control the GPIO_MUTE output value. However, some This makes sense but it is an ABI break so is going to need quirking for existing boards that unfortunately rely on the existing behaviour.
On 2020-02-06 11:46 am, Mark Brown wrote: > On Thu, Feb 06, 2020 at 01:07:12AM +0000, Robin Murphy wrote: >> The RK3328 reference design uses an external line driver IC as a buffer >> on the analog codec output, enabled by the GPIO_MUTE pin, and such a >> configuration is currently assumed in the codec driver's direct poking >> of GRF_SOC_CON10 to control the GPIO_MUTE output value. However, some > > This makes sense but it is an ABI break so is going to need > quirking for existing boards that unfortunately rely on the > existing behaviour. Yeah, that's where it gets tricky - there doesn't seem to be a nice way to differentiate between "no GPIO because old DT" and "no GPIO because the enable is hard-wired/irrelevant and GPIO_MUTE doesn't do what you think it does", and it seems really improper to introduce a DT property for the sole purpose of telling a Linux driver not to assume something it shouldn't really have in the first place. My opinion fell on the side of a minor ABI break being the lesser of two evils, given that the worst case once people start enabling this codec on Renegade/ROC-CC boards (which I was only anticipating, but have just discovered is happening already[1]) results in unexpectedly stuffing 3.3V into the SD card and SoC I/O domain while both are in 1.8V mode, and that the change would only really affect one other current board (Rock64), where most mainline users are likely to be upgrading their DTB in lock-step with the kernel anyway. I guess the existing (mis)behaviour could be predicated on an of_machine_is_compatible() check for Rock64 boards - it's ugly, but should do the job if you feel it's more important to be 100% strict about not regressing supported systems for any possible kernel/DTB combination. Thanks, Robin. [1] https://github.com/armbian/build/commit/18b24717be9639b65b86db3dbcf2b42fe73ca12c
On Thu, Feb 06, 2020 at 12:36:04PM +0000, Robin Murphy wrote: > On 2020-02-06 11:46 am, Mark Brown wrote: > > This makes sense but it is an ABI break so is going to need > > quirking for existing boards that unfortunately rely on the > > existing behaviour. > I guess the existing (mis)behaviour could be predicated on an > of_machine_is_compatible() check for Rock64 boards - it's ugly, but should > do the job if you feel it's more important to be 100% strict about not > regressing supported systems for any possible kernel/DTB combination. Yes, that's what I'm suggesting - we don't need to be exhaustive but having an obvious place for people to put the quirk in if they are affected is much better practice than just silently letting things break.
On Thu, Feb 6, 2020 at 8:57 AM Mark Brown <broonie@kernel.org> wrote: > > On Thu, Feb 06, 2020 at 12:36:04PM +0000, Robin Murphy wrote: > > On 2020-02-06 11:46 am, Mark Brown wrote: > > > > This makes sense but it is an ABI break so is going to need > > > quirking for existing boards that unfortunately rely on the > > > existing behaviour. > > > I guess the existing (mis)behaviour could be predicated on an > > of_machine_is_compatible() check for Rock64 boards - it's ugly, but should > > do the job if you feel it's more important to be 100% strict about not > > regressing supported systems for any possible kernel/DTB combination. > > Yes, that's what I'm suggesting - we don't need to be exhaustive > but having an obvious place for people to put the quirk in if > they are affected is much better practice than just silently > letting things break. Might want to put a warning in there too, so that if someone is paying attention they will see that they are using an out of date device tree.
diff --git a/sound/soc/codecs/rk3328_codec.c b/sound/soc/codecs/rk3328_codec.c index 287c962ba00d..f0e9ef21c5f8 100644 --- a/sound/soc/codecs/rk3328_codec.c +++ b/sound/soc/codecs/rk3328_codec.c @@ -7,6 +7,7 @@ #include <linux/clk.h> #include <linux/delay.h> #include <linux/device.h> +#include <linux/gpio/consumer.h> #include <linux/module.h> #include <linux/of.h> #include <linux/platform_device.h> @@ -31,7 +32,7 @@ struct rk3328_codec_priv { struct regmap *regmap; - struct regmap *grf; + struct gpio_desc *mute; struct clk *mclk; struct clk *pclk; unsigned int sclk; @@ -106,16 +107,6 @@ static int rk3328_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt) return 0; } -static void rk3328_analog_output(struct rk3328_codec_priv *rk3328, int mute) -{ - unsigned int val = BIT(17); - - if (mute) - val |= BIT(1); - - regmap_write(rk3328->grf, RK3328_GRF_SOC_CON10, val); -} - static int rk3328_digital_mute(struct snd_soc_dai *dai, int mute) { struct rk3328_codec_priv *rk3328 = @@ -205,7 +196,7 @@ static int rk3328_codec_open_playback(struct rk3328_codec_priv *rk3328) } msleep(rk3328->spk_depop_time); - rk3328_analog_output(rk3328, 1); + gpiod_set_value(rk3328->mute, 0); regmap_update_bits(rk3328->regmap, HPOUTL_GAIN_CTRL, HPOUTL_GAIN_MASK, OUT_VOLUME); @@ -246,7 +237,7 @@ static int rk3328_codec_close_playback(struct rk3328_codec_priv *rk3328) { size_t i; - rk3328_analog_output(rk3328, 0); + gpiod_set_value(rk3328->mute, 1); regmap_update_bits(rk3328->regmap, HPOUTL_GAIN_CTRL, HPOUTL_GAIN_MASK, 0); @@ -446,7 +437,6 @@ static int rk3328_platform_probe(struct platform_device *pdev) dev_err(&pdev->dev, "missing 'rockchip,grf'\n"); return PTR_ERR(grf); } - rk3328->grf = grf; /* enable i2s_acodec_en */ regmap_write(grf, RK3328_GRF_SOC_CON2, (BIT(14) << 16 | BIT(14))); @@ -458,7 +448,7 @@ static int rk3328_platform_probe(struct platform_device *pdev) rk3328->spk_depop_time = 200; } - rk3328_analog_output(rk3328, 0); + rk3328->mute = gpiod_get_optional(&pdev->dev, "mute", GPIOD_OUT_HIGH); rk3328->mclk = devm_clk_get(&pdev->dev, "mclk"); if (IS_ERR(rk3328->mclk))
The RK3328 reference design uses an external line driver IC as a buffer on the analog codec output, enabled by the GPIO_MUTE pin, and such a configuration is currently assumed in the codec driver's direct poking of GRF_SOC_CON10 to control the GPIO_MUTE output value. However, some boards wire up analog audio yet use that pin for some other purpose, so that assumption doesn't always hold. Update this functionality to rely on an explicit GPIO descriptor, such that it can be managed at the board level. Signed-off-by: Robin Murphy <robin.murphy@arm.com> --- sound/soc/codecs/rk3328_codec.c | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-)