All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Cercueil <paul@crapouillou.net>
To: Alexandre Belloni <alexandre.belloni@bootlin.com>
Cc: Thomas Gleixner <tglx@linutronix.de>,
	Guenter Roeck <linux@roeck-us.net>,
	linux-doc@vger.kernel.org, linux-watchdog@vger.kernel.org,
	Daniel Lezcano <daniel.lezcano@linaro.org>,
	Jonathan Corbet <corbet@lwn.net>,
	robh@kernel.org, linux-mips@linux-mips.org,
	Stephen Boyd <sboyd@kernel.org>,
	Wim Van Sebroeck <wim@linux-watchdog.org>,
	Michael Turquette <mturquette@baylibre.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Paul Burton <paul.burton@mips.com>,
	linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
	devicetree@vger.kernel.org, Ralf Baechle <ralf@linux-mips.org>,
	Lee Jones <lee.jones@linaro.org>,
	Thierry Reding <thierry.reding@gmail.com>,
	linux-pwm@vger.kernel.org
Subject: Re: [PATCH v5 04/21] dt-bindings: Add doc for the Ingenic TCU drivers
Date: Sun, 07 Oct 2018 21:14:07 +0200	[thread overview]
Message-ID: <5bba5b1d.1c69fb81.4461a.4e75SMTPIN_ADDED_MISSING@mx.google.com> (raw)


Le 6 oct. 2018 11:20 AM, Alexandre Belloni <alexandre.belloni@bootlin.com> a écrit :
>
> On 03/10/2018 12:32:51+0200, Paul Cercueil wrote: 
> > 
> > Le 1 oct. 2018 10:48, Daniel Lezcano <daniel.lezcano@linaro.org> a écrit : 
> > > 
> > > On 31/07/2018 00:01, Paul Cercueil wrote: 
> > > 
> > > [ ... ] 
> > > 
> > > >>>  +- ingenic,timer-channel: Specifies the TCU channel that should be 
> > > >>> used as 
> > > >>>  +  system timer. If not provided, the TCU channel 0 is used for the 
> > > >>> system timer. 
> > > >>>  + 
> > > >>>  +- ingenic,clocksource-channel: Specifies the TCU channel that 
> > > >>> should be used 
> > > >>>  +  as clocksource and sched_clock. It must be a different channel 
> > > >>> than the one 
> > > >>>  +  used as system timer. If not provided, neither a clocksource nor a 
> > > >>>  +  sched_clock is instantiated. 
> > > >> 
> > > >> clocksource and sched_clock are Linux specific and don't belong in DT. 
> > > >> You should define properties of the hardware or use existing properties 
> > > >> like interrupts or clocks to figure out which channel to use. For 
> > > >> example, if some channels don't have an interrupt, then use them for 
> > > >> clocksource and not a clockevent. Or you could have timers that run in 
> > > >> low-power modes or not. If all the channels are identical, then it 
> > > >> shouldn't matter which ones the OS picks. 
> > > 
> > > It can't work in this case because the pmw and the timer driver are not 
> > > communicating and the first one can stole a channel to the last one. 
> > 
> > In that particular case the timer driver will always request its channels first; with no timer set the system hangs before subsys_initcall, and the PWM driver is a subnode of the timer node, so is probed only after the timer probed. 
> > 
> > > > We already talked about that. All the TCU channels can be used for PWM. 
> > > > The problem is I cannot know from the driver's scope which channels will 
> > > > be free and which channels will be requested for PWM. You suggested that I 
> > > > parse the devicetree for clients, and I did that in the V3/V4 patchset. But 
> > > > it only works for clients requesting through devicetree, not from platform 
> > > > code or even sysfs. 
> > > > 
> > > > One thing I can try is to dynamically change the channels the system timer 
> > > > and clocksource are using when the current ones are requested for PWM. But 
> > > > that sounds hardcore... 
> > > 
> > > Yes, it is :/ 
> > > 
> > > Sorry for letting you wasting time and effort to write an overkill code 
> > > not suitable for upstream. 
> > > 
> > > A very gross thought, wouldn't be possible to "register" a channel from 
> > > the timer driver code in a shared data area (but well self-encapsulated) 
> > > and the pwm code will check such channel isn't in use ? 
> > 
> > Probably, but it's the contrary I need to do. The timer driver code can use any channel, and probes first. The PWM driver code must use specific channels, and probes last. So either the timer driver knows what channels it can't use, thanks to a device property, or it adapts itself when a channel in use is requested for PWM, which is what I tried in v7. 
> > 
> > I think we could find a way to use a devicetree property that doesn't trigger Rob. That would still be the easiest and cleanest solution. 
> > 
> > Maybe "ingenic,reserved-channels-mask", which would contain a mask of channels that can only be used by the timer driver. And what the timer driver does with these channels, would be specific to the implementation and would not appear in the bindings. I hope Rob can work with that. 
> > 
>
> Rob did ack the following binding: 
>
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/devicetree/bindings/mfd/atmel-tcb.txt 
>
> another subdevice is a PWM (not documented here). 

I'm not sure that it would be the cleanest in my case, my PWM and watchdog sub-nodes already specify memory resources in their "reg" property. And if I add memory resources to the same "timers" sub-nodes as in your example, the ranges will overlap and Rob still won't be happy :)

-Paul

             reply	other threads:[~2018-10-07 19:14 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-07 19:14 Paul Cercueil [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-10-10 10:38 [PATCH v5 04/21] dt-bindings: Add doc for the Ingenic TCU drivers Paul Cercueil
2018-10-10 10:38 Paul Cercueil
2018-10-10 10:38 Paul Cercueil
     [not found] <5bb4c6ad.1c69fb81.42bb.93ecSMTPIN_ADDED_MISSING@mx.google.com>
2018-10-09  6:36 ` Lee Jones
2018-10-07 19:14 Paul Cercueil
2018-10-07 19:14 Paul Cercueil
2018-10-03 13:39 Paul Cercueil
2018-10-03 13:39 Paul Cercueil
2018-10-03 13:39 Paul Cercueil
     [not found] <5bb4bb5d.1c69fb81.ed9a6.adc6SMTPIN_ADDED_MISSING@mx.google.com>
2018-10-03 13:02 ` Daniel Lezcano
2018-10-03 12:51 Paul Cercueil
2018-10-03 12:51 Paul Cercueil
2018-10-03 12:51 Paul Cercueil
     [not found] <5bb49c78.1c69fb81.4b6a9.fb44SMTPIN_ADDED_MISSING@mx.google.com>
2018-10-03 12:47 ` Daniel Lezcano
2018-10-03 10:32 Paul Cercueil
2018-10-06  9:20 ` Alexandre Belloni
2018-10-03 10:32 Paul Cercueil
2018-10-03 10:32 Paul Cercueil
2018-07-24 23:19 [PATCH v5 00/21] Ingenic JZ47xx TCU patchset v5 Paul Cercueil
2018-07-24 23:19 ` [PATCH v5 04/21] dt-bindings: Add doc for the Ingenic TCU drivers Paul Cercueil
2018-07-24 23:19   ` Paul Cercueil
2018-07-25 15:21   ` Rob Herring
2018-07-25 15:21     ` Rob Herring
2018-07-30 22:01     ` Paul Cercueil
2018-07-30 22:01       ` Paul Cercueil
2018-07-30 22:01       ` Paul Cercueil
2018-10-01  8:48       ` Daniel Lezcano

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=5bba5b1d.1c69fb81.4461a.4e75SMTPIN_ADDED_MISSING@mx.google.com \
    --to=paul@crapouillou.net \
    --cc=alexandre.belloni@bootlin.com \
    --cc=corbet@lwn.net \
    --cc=daniel.lezcano@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=lee.jones@linaro.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@linux-mips.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=mark.rutland@arm.com \
    --cc=mturquette@baylibre.com \
    --cc=paul.burton@mips.com \
    --cc=ralf@linux-mips.org \
    --cc=robh@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=thierry.reding@gmail.com \
    --cc=wim@linux-watchdog.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 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.