From: Alex Riesen <alexander.riesen@cetitec.com>
To: Stephen Boyd <sboyd@kernel.org>
Cc: Kieran Bingham <kieran.bingham@ideasonboard.com>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
"Hans Verkuil" <hverkuil-cisco@xs4all.nl>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Rob Herring <robh+dt@kernel.org>,
"Mark Rutland" <mark.rutland@arm.com>,
Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
<devel@driverdev.osuosl.org>, <linux-media@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>,
<linux-renesas-soc@vger.kernel.org>,
linux-clk <linux-clk@vger.kernel.org>
Subject: Re: [PATCH v3 05/11] media: adv748x: add support for HDMI audio
Date: Mon, 23 Mar 2020 09:36:10 +0100 [thread overview]
Message-ID: <20200323083610.GB4298@pflmari> (raw)
In-Reply-To: <158475297119.125146.8177273856843293558@swboyd.mtv.corp.google.com>
Stephen Boyd, Sat, Mar 21, 2020 02:09:31 +0100:
> Quoting Alex Riesen (2020-03-20 09:12:00)
> > diff --git a/drivers/media/i2c/adv748x/adv748x-dai.c b/drivers/media/i2c/adv748x/adv748x-dai.c
> > new file mode 100644
> > index 000000000000..6fce7d000423
> > --- /dev/null
> > +++ b/drivers/media/i2c/adv748x/adv748x-dai.c
> > @@ -0,0 +1,265 @@
> > +// SPDX-License-Identifier: GPL-2.0+
> > +/*
> > + * Driver for Analog Devices ADV748X HDMI receiver with AFE
> > + * The implementation of DAI.
> > + */
> > +
> > +#include "adv748x.h"
> > +
> > +#include <linux/clk.h>
>
> Is this include used? Please try to make a clk provider or a clk
> consumer and not both unless necessary.
Yes, they're both used: I use clk_get_rate to get the frequency of the clock to validate
the master clock frequency configuration.
> > +int adv748x_dai_init(struct adv748x_dai *dai)
> > +{
> > + int ret;
> > + struct adv748x_state *state = adv748x_dai_to_state(dai);
> > +
> > + dai->mclk_name = kasprintf(GFP_KERNEL, "%s.%s-i2s-mclk",
> > + state->dev->driver->name,
> > + dev_name(state->dev));
> > + if (!dai->mclk_name) {
> > + ret = -ENOMEM;
> > + adv_err(state, "No memory for MCLK\n");
> > + goto fail;
> > + }
> > + dai->mclk = clk_register_fixed_rate(state->dev,
>
> Please register with clk_hw_register_fixed_rate() instead.
Ok, I see the clk_register_fixed_rate isn't even commented...
I shall change it to used clk_hw_register_fixed_rate.
But could you please point me at some documentation, example, or just add a
few words to explain the preference?
BTW, the clock which the driver attempts to provide can actually be switched
on and off (it output pad can be even tristated). As the device is connected
by I2C to the how, I seems to be unable to use the existing gated clock
implementation because of the mmio register it requires. Or am I wrong?
> > + dai->mclk_name,
> > + NULL /* parent_name */,
> > + 0 /* flags */,
> > + 12288000 /* rate */);
>
> Not sure these comments are useful.
You're right. Removed.
> > + dai->drv.name = ADV748X_DAI_NAME;
> > + dai->drv.ops = &adv748x_dai_ops;
> > + dai->drv.capture = (struct snd_soc_pcm_stream){
>
> Can this be const?
It can. Fixed.
> Please drop extra newline at end of file.
Done.
Thanks a lot for the review and commentary!
Regards,
Alex
prev parent reply other threads:[~2020-03-23 8:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1584720678.git.alexander.riesen@cetitec.com>
2020-03-20 16:12 ` [PATCH v3 05/11] media: adv748x: add support for HDMI audio Alex Riesen
2020-03-21 1:09 ` Stephen Boyd
2020-03-23 8:36 ` Alex Riesen [this message]
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=20200323083610.GB4298@pflmari \
--to=alexander.riesen@cetitec.com \
--cc=devel@driverdev.osuosl.org \
--cc=devicetree@vger.kernel.org \
--cc=geert@linux-m68k.org \
--cc=hverkuil-cisco@xs4all.nl \
--cc=kieran.bingham@ideasonboard.com \
--cc=kuninori.morimoto.gx@renesas.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mchehab@kernel.org \
--cc=robh+dt@kernel.org \
--cc=sboyd@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