LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: Fabrice Gasnier <fabrice.gasnier@st.com>
Cc: thierry.reding@gmail.com, alexandre.torgue@st.com,
benjamin.gaignard@linaro.org, robh+dt@kernel.org,
mark.rutland@arm.com, linux@armlinux.org.uk,
mcoquelin.stm32@gmail.com, benjamin.gaignard@st.com,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-pwm@vger.kernel.org
Subject: Re: [RESEND PATCH v2 4/8] mfd: stm32-timers: add support for dmas
Date: Thu, 29 Mar 2018 15:31:29 +0100 [thread overview]
Message-ID: <20180329143129.xdvw6gujghkwbjtm@dell> (raw)
In-Reply-To: <12d53b2e-eec4-a498-1e1f-c217161c5086@st.com>
On Thu, 29 Mar 2018, Fabrice Gasnier wrote:
> On 03/29/2018 02:59 PM, Lee Jones wrote:
> > On Wed, 28 Mar 2018, Fabrice Gasnier wrote:
> >
> >> On 03/28/2018 05:22 PM, Lee Jones wrote:
> >>> On Wed, 14 Feb 2018, Fabrice Gasnier wrote:
> >>>
> >>>> STM32 Timers can support up to 7 DMA requests:
> >>>> - 4 channels, update, compare and trigger.
> >>>> Optionally request part, or all DMAs from stm32-timers MFD core.
> >>>>
> >>>> Also add routine to implement burst reads using DMA from timer registers.
> >>>> This is exported. So, it can be used by child drivers, PWM capture
> >>>> for instance (but not limited to).
> >>>>
> >>>> Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com>
> >>>> Reviewed-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
> >>>> ---
> >>>> Changes in v2:
> >>>> - Abstract DMA handling from child driver: move it to MFD core
> >>>> - Add comments on optional dma support
> >>>> ---
> >>>> drivers/mfd/stm32-timers.c | 215 ++++++++++++++++++++++++++++++++++++++-
> >>>> include/linux/mfd/stm32-timers.h | 27 +++++
> >>>> 2 files changed, 238 insertions(+), 4 deletions(-)
> >>>>
> >>>> diff --git a/drivers/mfd/stm32-timers.c b/drivers/mfd/stm32-timers.c
> >>>> index a6675a4..2cdad2c 100644
> >>>> --- a/drivers/mfd/stm32-timers.c
> >>>> +++ b/drivers/mfd/stm32-timers.c
> >
> > [...]
> >
> >>>> + struct dma_chan *dmas[STM32_TIMERS_MAX_DMAS];
> >>>> + struct stm32_timers ddata;
> >>>
> >>> This looks odd to me. Why can't you expand the current ddata
> >>> structure? Wouldn't it be better to create a stm32_timers_dma
> >>> structure to place all this information in (except *dev, that should
> >>> live in the ddata struct), then place a reference in the existing
> >>> stm32_timers struct?
> >>
> >> Maybe I miss-understand you here, from what we discussed in V1:
> >> https://lkml.org/lkml/2018/1/23/574
> >>> ... "passing in the physical address of the parent MFD into
> >>> a child device doesn't quite sit right with me"
> >> I introduced this private struct in MFD parent, and completely hide it
> >> from the child.
> >>
> >> So, do you suggest to add struct definition here ? But make it part of
> >> struct stm32_timers *ddata?
> >>
> >> And only put declaration in include/linux/mfd/stm32-timers.h:
> >> + struct stm32_timers_dma;
> >>
> >> struct stm32_timers {
> >> struct clk *clk;
> >> struct regmap *regmap;
> >> u32 max_arr;
> >> + struct stm32_timers_dma;
> >> };
> >
> > Yes, that's the basic idea.
> >
> >> I can probably spare the *dev then... use dev->parent in child driver.
> >
> > What would you use dev->parent for?
>
> Hi Lee,
>
> This is to follow your sugestion to use *dev instead of *ddata when
> calling stm32_timers_dma_burst_read(), the idea is to use it on child side:
> stm32_timers_dma_burst_read(dev->parent,...) from pwm driver.
> Then there is no need to keep *dev inside ddata struct.
I'm wondering if it would be neater to us the child's *dev, then do
the ->parent deference in the parent MFD (with a comment to say what
you're doing of course).
> > [...]
> >
> >>>> +static int stm32_timers_remove(struct platform_device *pdev)
> >>>> +{
> >>>> + struct stm32_timers *ddata = platform_get_drvdata(pdev);
> >>>> + struct stm32_timers_priv *priv = to_stm32_timers_priv(ddata);
> >>>> +
> >>>> + of_platform_depopulate(&pdev->dev);
> >>>
> >>> Why can't you continue using devm_*?
> >>
> >> I can use devm_of_platform_depopulate() here if you prefer, and keep
> >> devm_of_platform_populate() in probe.
> >
> > The point of devm_* is that you don't have to call depopulate.
> >
> > It happens automatically once this driver is unbound.
>
> Ok, so to clarify, keeping devm_ here may be a bit racy:
> of_platform_depopulate will happen after dma has been released (there is
> no devm_ variant to release dma).
> Only way to prevent race condition here, is to enforce
> of_platform_depopulate() is called before dma release (e.g. in reverse
> order compared to probe).
>
> Do you wish I add a comment about it ?
Best thing to do then is keep the non-devm variant and provide a
comment as to why is it not possible to use devm_*.
--
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
next prev parent reply other threads:[~2018-03-29 14:31 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-14 10:04 [RESEND PATCH v2 0/8] Add support for PWM input capture on STM32 Fabrice Gasnier
2018-02-14 10:04 ` [RESEND PATCH v2 1/8] pwm: stm32: fix, remove unused struct device Fabrice Gasnier
2018-02-14 10:04 ` [RESEND PATCH v2 2/8] pwm: stm32: protect common prescaler for all channels Fabrice Gasnier
2018-02-14 10:04 ` [RESEND PATCH v2 3/8] dt-bindings: mfd: stm32-timers: add support for dmas Fabrice Gasnier
2018-03-28 11:16 ` Lee Jones
2018-02-14 10:04 ` [RESEND PATCH v2 4/8] " Fabrice Gasnier
2018-03-28 15:22 ` Lee Jones
2018-03-28 16:41 ` Fabrice Gasnier
2018-03-29 12:59 ` Lee Jones
2018-03-29 13:41 ` Fabrice Gasnier
2018-03-29 14:31 ` Lee Jones [this message]
2018-03-29 15:29 ` Fabrice Gasnier
2018-02-14 10:04 ` [RESEND PATCH v2 5/8] pwm: stm32: add capture support Fabrice Gasnier
2018-02-14 10:04 ` [RESEND PATCH v2 6/8] pwm: stm32: improve capture by tuning counter prescaler Fabrice Gasnier
2018-02-14 10:04 ` [RESEND PATCH v2 7/8] pwm: stm32: use input prescaler to improve period capture Fabrice Gasnier
2018-02-14 10:04 ` [RESEND PATCH v2 8/8] ARM: dts: stm32: Enable pwm3 input capture on stm32f429i-eval Fabrice Gasnier
2018-03-23 15:26 ` [RESEND PATCH v2 0/8] Add support for PWM input capture on STM32 Fabrice Gasnier
2018-03-27 22:51 ` Thierry Reding
2018-03-27 22:58 ` Thierry Reding
2018-03-28 10:03 ` Lee Jones
2018-03-29 8:58 ` Thierry Reding
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=20180329143129.xdvw6gujghkwbjtm@dell \
--to=lee.jones@linaro.org \
--cc=alexandre.torgue@st.com \
--cc=benjamin.gaignard@linaro.org \
--cc=benjamin.gaignard@st.com \
--cc=devicetree@vger.kernel.org \
--cc=fabrice.gasnier@st.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=mark.rutland@arm.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=robh+dt@kernel.org \
--cc=thierry.reding@gmail.com \
--subject='Re: [RESEND PATCH v2 4/8] mfd: stm32-timers: add support for dmas' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).