From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: Thierry Reding <thierry.reding@gmail.com>,
linux-pwm@vger.kernel.org, linux-sh@vger.kernel.org,
Tony Lindgren <tony@atomide.com>,
Magnus Damm <magnus.damm@gmail.com>,
linux-kernel@vger.kernel.org, Simon Horman <horms@verge.net.au>,
Philipp Zabel <philipp.zabel@gmail.com>,
Paul Parsons <lost.distance@yahoo.com>,
linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] pwm: add period and polarity to struct pwm_lookup
Date: Wed, 9 Apr 2014 22:52:46 +0200 [thread overview]
Message-ID: <20140409205246.GA2879@piout.net> (raw)
In-Reply-To: <20140409193705.GJ27282@n2100.arm.linux.org.uk>
On 09/04/2014 at 20:37:06 +0100, Russell King - ARM Linux wrote :
> On Wed, Apr 09, 2014 at 08:04:08PM +0200, Alexandre Belloni wrote:
> > Adds a period and a polarity member to struct pwm_lookup so that when performing
> > a lookup using the lookup table instead of device tree, we are able to set the
> > period and the polarity accordingly like what is done in
> > of_pwm_xlate_with_flags.
> >
> > Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> > ---
> > drivers/pwm/core.c | 5 +++++
> > include/linux/pwm.h | 2 ++
> > 2 files changed, 7 insertions(+)
> >
> > diff --git a/drivers/pwm/core.c b/drivers/pwm/core.c
> > index a80471399c20..206e5996359c 100644
> > --- a/drivers/pwm/core.c
> > +++ b/drivers/pwm/core.c
> > @@ -663,6 +663,11 @@ struct pwm_device *pwm_get(struct device *dev, const char *con_id)
> >
> > if (chip)
> > pwm = pwm_request_from_chip(chip, index, con_id ?: dev_id);
> > + if (IS_ERR(pwm))
> > + return pwm;
> > +
> > + pwm_set_period(pwm, p->period);
> > + pwm_set_polarity(pwm, p->polarity);
> >
> > mutex_unlock(&pwm_lookup_lock);
>
> Clearly, this is not right. Returning while leaving the mutex locked?
> No.
>
Sure, I will fix that crap, sorry about that and thanks for pointing it
out.
> The second issue is... with _just_ this patch applied, we end up with
> "period" and "polarity" presumably initialised to zero, which means we
> now end up with the above explicitly setting the period and polarity as
> such. Isn't that going to change the behaviour of this?
>
I actually checked that.
For the polarity, for now, it is assumed that it is normal unless
specified otherwise.
The only driver that was supporting inverting it using platform_data is
pwm-renesas-tpu. It is used by board-armadillo800eva.c that I am
modifying now (and I just now realise that I forgot to invert it).
The only PWM controller that I know of that by default has its polarity
inversed is the allwinner one and in the driver I submitted, I actually
switch it to normal polarity in the probe instead of e.g. doing
pwm->polarity = PWM_POLARITY_INVERSED;
For the period, all the driver are assuming 0 after initialization.
I think this is not specified. If you think that may be a concern then I
suggest creating another macro and using a bitfield to know which value
is set.
I would also argue that when using device tree,
of_pwm_xlate_with_flags() will set the period and the polarity
unconditionally, this is replicating that behaviour.
However, I could agree that we may need to test for
pwm->chip->ops->set_polarity before calling pwm_set_polarity as we will
get an error if it is NULL (but we actually discard that return value).
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
WARNING: multiple messages have this Message-ID (diff)
From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] pwm: add period and polarity to struct pwm_lookup
Date: Wed, 09 Apr 2014 20:52:46 +0000 [thread overview]
Message-ID: <20140409205246.GA2879@piout.net> (raw)
In-Reply-To: <20140409193705.GJ27282@n2100.arm.linux.org.uk>
On 09/04/2014 at 20:37:06 +0100, Russell King - ARM Linux wrote :
> On Wed, Apr 09, 2014 at 08:04:08PM +0200, Alexandre Belloni wrote:
> > Adds a period and a polarity member to struct pwm_lookup so that when performing
> > a lookup using the lookup table instead of device tree, we are able to set the
> > period and the polarity accordingly like what is done in
> > of_pwm_xlate_with_flags.
> >
> > Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> > ---
> > drivers/pwm/core.c | 5 +++++
> > include/linux/pwm.h | 2 ++
> > 2 files changed, 7 insertions(+)
> >
> > diff --git a/drivers/pwm/core.c b/drivers/pwm/core.c
> > index a80471399c20..206e5996359c 100644
> > --- a/drivers/pwm/core.c
> > +++ b/drivers/pwm/core.c
> > @@ -663,6 +663,11 @@ struct pwm_device *pwm_get(struct device *dev, const char *con_id)
> >
> > if (chip)
> > pwm = pwm_request_from_chip(chip, index, con_id ?: dev_id);
> > + if (IS_ERR(pwm))
> > + return pwm;
> > +
> > + pwm_set_period(pwm, p->period);
> > + pwm_set_polarity(pwm, p->polarity);
> >
> > mutex_unlock(&pwm_lookup_lock);
>
> Clearly, this is not right. Returning while leaving the mutex locked?
> No.
>
Sure, I will fix that crap, sorry about that and thanks for pointing it
out.
> The second issue is... with _just_ this patch applied, we end up with
> "period" and "polarity" presumably initialised to zero, which means we
> now end up with the above explicitly setting the period and polarity as
> such. Isn't that going to change the behaviour of this?
>
I actually checked that.
For the polarity, for now, it is assumed that it is normal unless
specified otherwise.
The only driver that was supporting inverting it using platform_data is
pwm-renesas-tpu. It is used by board-armadillo800eva.c that I am
modifying now (and I just now realise that I forgot to invert it).
The only PWM controller that I know of that by default has its polarity
inversed is the allwinner one and in the driver I submitted, I actually
switch it to normal polarity in the probe instead of e.g. doing
pwm->polarity = PWM_POLARITY_INVERSED;
For the period, all the driver are assuming 0 after initialization.
I think this is not specified. If you think that may be a concern then I
suggest creating another macro and using a bitfield to know which value
is set.
I would also argue that when using device tree,
of_pwm_xlate_with_flags() will set the period and the polarity
unconditionally, this is replicating that behaviour.
However, I could agree that we may need to test for
pwm->chip->ops->set_polarity before calling pwm_set_polarity as we will
get an error if it is NULL (but we actually discard that return value).
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
WARNING: multiple messages have this Message-ID (diff)
From: alexandre.belloni@free-electrons.com (Alexandre Belloni)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/2] pwm: add period and polarity to struct pwm_lookup
Date: Wed, 9 Apr 2014 22:52:46 +0200 [thread overview]
Message-ID: <20140409205246.GA2879@piout.net> (raw)
In-Reply-To: <20140409193705.GJ27282@n2100.arm.linux.org.uk>
On 09/04/2014 at 20:37:06 +0100, Russell King - ARM Linux wrote :
> On Wed, Apr 09, 2014 at 08:04:08PM +0200, Alexandre Belloni wrote:
> > Adds a period and a polarity member to struct pwm_lookup so that when performing
> > a lookup using the lookup table instead of device tree, we are able to set the
> > period and the polarity accordingly like what is done in
> > of_pwm_xlate_with_flags.
> >
> > Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> > ---
> > drivers/pwm/core.c | 5 +++++
> > include/linux/pwm.h | 2 ++
> > 2 files changed, 7 insertions(+)
> >
> > diff --git a/drivers/pwm/core.c b/drivers/pwm/core.c
> > index a80471399c20..206e5996359c 100644
> > --- a/drivers/pwm/core.c
> > +++ b/drivers/pwm/core.c
> > @@ -663,6 +663,11 @@ struct pwm_device *pwm_get(struct device *dev, const char *con_id)
> >
> > if (chip)
> > pwm = pwm_request_from_chip(chip, index, con_id ?: dev_id);
> > + if (IS_ERR(pwm))
> > + return pwm;
> > +
> > + pwm_set_period(pwm, p->period);
> > + pwm_set_polarity(pwm, p->polarity);
> >
> > mutex_unlock(&pwm_lookup_lock);
>
> Clearly, this is not right. Returning while leaving the mutex locked?
> No.
>
Sure, I will fix that crap, sorry about that and thanks for pointing it
out.
> The second issue is... with _just_ this patch applied, we end up with
> "period" and "polarity" presumably initialised to zero, which means we
> now end up with the above explicitly setting the period and polarity as
> such. Isn't that going to change the behaviour of this?
>
I actually checked that.
For the polarity, for now, it is assumed that it is normal unless
specified otherwise.
The only driver that was supporting inverting it using platform_data is
pwm-renesas-tpu. It is used by board-armadillo800eva.c that I am
modifying now (and I just now realise that I forgot to invert it).
The only PWM controller that I know of that by default has its polarity
inversed is the allwinner one and in the driver I submitted, I actually
switch it to normal polarity in the probe instead of e.g. doing
pwm->polarity = PWM_POLARITY_INVERSED;
For the period, all the driver are assuming 0 after initialization.
I think this is not specified. If you think that may be a concern then I
suggest creating another macro and using a bitfield to know which value
is set.
I would also argue that when using device tree,
of_pwm_xlate_with_flags() will set the period and the polarity
unconditionally, this is replicating that behaviour.
However, I could agree that we may need to test for
pwm->chip->ops->set_polarity before calling pwm_set_polarity as we will
get an error if it is NULL (but we actually discard that return value).
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
next prev parent reply other threads:[~2014-04-09 20:52 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-09 18:04 [PATCH 0/2] improve pwm lookup support without device tree Alexandre Belloni
2014-04-09 18:04 ` Alexandre Belloni
2014-04-09 18:04 ` Alexandre Belloni
2014-04-09 18:04 ` [PATCH 1/2] pwm: add period and polarity to struct pwm_lookup Alexandre Belloni
2014-04-09 18:04 ` Alexandre Belloni
2014-04-09 18:04 ` Alexandre Belloni
2014-04-09 19:37 ` Russell King - ARM Linux
2014-04-09 19:37 ` Russell King - ARM Linux
2014-04-09 19:37 ` Russell King - ARM Linux
2014-04-09 20:52 ` Alexandre Belloni [this message]
2014-04-09 20:52 ` Alexandre Belloni
2014-04-09 20:52 ` Alexandre Belloni
2014-04-09 18:04 ` [PATCH 2/2] pwm: use PWM_LOOKUP to set the period and polarity Alexandre Belloni
2014-04-09 18:04 ` Alexandre Belloni
2014-04-09 18:04 ` Alexandre Belloni
2014-04-09 23:15 ` Simon Horman
2014-04-09 23:15 ` Simon Horman
2014-04-09 23:15 ` Simon Horman
2014-04-10 7:37 ` Alexandre Belloni
2014-04-10 7:37 ` Alexandre Belloni
2014-04-10 7:37 ` Alexandre Belloni
2014-04-14 2:03 ` Simon Horman
2014-04-14 2:03 ` Simon Horman
2014-04-14 2:03 ` Simon Horman
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=20140409205246.GA2879@piout.net \
--to=alexandre.belloni@free-electrons.com \
--cc=horms@verge.net.au \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=lost.distance@yahoo.com \
--cc=magnus.damm@gmail.com \
--cc=philipp.zabel@gmail.com \
--cc=thierry.reding@gmail.com \
--cc=tony@atomide.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.