From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Thierry Reding <thierry.reding@gmail.com>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>,
jonsmirl@gmail.com, Simon <longsleep@gmail.com>,
linux-pwm@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCHv7 1/2] pwm: Add Allwinner SoC support
Date: Mon, 6 Oct 2014 16:30:08 +0200 [thread overview]
Message-ID: <20141006143008.GC15599@piout.net> (raw)
In-Reply-To: <20141006132404.GC26921@ulmo>
On 06/10/2014 at 15:24:05 +0200, Thierry Reding wrote :
> On Wed, Sep 17, 2014 at 09:53:57PM +0200, Alexandre Belloni wrote:
> [...]
> > diff --git a/drivers/pwm/pwm-sunxi.c b/drivers/pwm/pwm-sunxi.c
> > new file mode 100644
> > index 000000000000..643f84ea013e
> > --- /dev/null
> > +++ b/drivers/pwm/pwm-sunxi.c
> > @@ -0,0 +1,371 @@
> > +/*
> > + * Driver for Allwinner Pulse Width Modulation Controller
> > + *
> > + * Copyright (C) 2014 Alexandre Belloni <alexandre.belloni@free-electrons.com>
>
> This is somewhat weird. So you are the copyright holder, not your
> employer? The email address is somewhat misleading.
>
It has been done on my free, unpaid time so yes...
Anyway, even my employer could not actually claim to hold copyright on
what I'm writing as this right is not transferable in France.
> > +#define BIT_CH(bit, chan) (bit << (chan * PWMCH_OFFSET))
>
> bit and chan could use additional parentheses here for extra safety.
>
OK
> > +static const u32 prescaler_table[] = {
> > + 120,
> > + 180,
> > + 240,
> > + 360,
> > + 480,
> > + 0,
> > + 0,
> > + 0,
> > + 12000,
> > + 24000,
> > + 36000,
> > + 48000,
> > + 72000,
> > + 0,
> > + 0,
> > + 0, /* Actually 1 but tested separately */
> > +};
>
> Did I already mention that this was really weird?
>
I'm not sure what you want to do here then. This is simply coming from
the datasheet. The last one (0xF) being a bypass is actually only existing on
> > +static inline u32 sunxi_pwm_readl(struct sunxi_pwm_chip *chip,
> > + unsigned long offset)
> > +{
> > + return readl(chip->base + offset);
> > +}
> > +
> > +
>
> There's a gratuitous blank line here.
>
> > +static int sunxi_pwm_probe(struct platform_device *pdev)
> > +{
> [...]
> > +
> > + ret = pwmchip_add(&pwm->chip);
> > + if (ret < 0) {
> > + dev_err(&pdev->dev, "failed to add PWM chip %d\n", ret);
>
> "chip: %d" to make it clear that it's not some kind of chip ID.
>
> > + goto error;
> > + }
> > +
> > + ret = clk_prepare_enable(pwm->clk);
> > + if (ret) {
> > + dev_err(&pdev->dev, "failed to enable PWM clock\n");
> > + goto error;
>
> Don't you want to remove the stale PWM chip here? Why not do this at the
> very end, after everything's been set up properly?
Yeah, as this is not critical, I will simply exit without an error in
that case and I'll move that block after platform_set_drvdata().
>
> > +MODULE_ALIAS("platform:sunxi-pwm");
> > +MODULE_AUTHOR("Alexandre Belloni <alexandre.belloni@free-electrons.com>");
> > +MODULE_DESCRIPTION("Allwinner PWM driver");
>
> Perhaps "Allwinner sunxi PWM driver"? Presumably Allwinner could at some
> point release a different family of SoCs.
>
Ok
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
next prev parent reply other threads:[~2014-10-06 14:30 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-17 19:53 [PATCHv7 0/2] Add Allwinner SoCs PWM support Alexandre Belloni
2014-09-17 19:53 ` [PATCHv7 1/2] pwm: Add Allwinner SoC support Alexandre Belloni
2014-10-06 13:24 ` Thierry Reding
2014-10-06 14:30 ` Alexandre Belloni [this message]
2014-10-06 14:43 ` Alexandre Belloni
2014-10-06 14:48 ` Thierry Reding
2014-09-17 19:53 ` [PATCHv7 2/2] pwm: sunxi: document OF bindings Alexandre Belloni
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=20141006143008.GC15599@piout.net \
--to=alexandre.belloni@free-electrons.com \
--cc=jonsmirl@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=longsleep@gmail.com \
--cc=maxime.ripard@free-electrons.com \
--cc=thierry.reding@gmail.com \
/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