linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: David Jander <david@protonic.nl>
Cc: "Uwe Kleine-König" <u.kleine-koenig@baylibre.com>,
	linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org,
	"Jonathan Corbet" <corbet@lwn.net>,
	"Rob Herring" <robh@kernel.org>,
	"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
	"Conor Dooley" <conor+dt@kernel.org>,
	devicetree@vger.kernel.org, linux-doc@vger.kernel.org,
	"Nuno Sa" <nuno.sa@analog.com>,
	"Jonathan Cameron" <jic23@kernel.org>,
	"Oleksij Rempel" <o.rempel@pengutronix.de>
Subject: Re: [RFC PATCH 1/7] drivers: Add motion control subsystem
Date: Thu, 6 Mar 2025 14:39:16 +0100	[thread overview]
Message-ID: <2025030633-covenant-bootlace-7163@gregkh> (raw)
In-Reply-To: <20250306103402.2b9e51d7@erd003.prtnl>

On Thu, Mar 06, 2025 at 10:34:02AM +0100, David Jander wrote:
> On Thu, 6 Mar 2025 10:03:26 +0100
> Greg Kroah-Hartman <gregkh@linuxfoundation.org> wrote:
> 
> > On Thu, Mar 06, 2025 at 09:20:13AM +0100, David Jander wrote:
> > > On Thu, 6 Mar 2025 08:18:46 +0100
> > > Greg Kroah-Hartman <gregkh@linuxfoundation.org> wrote:
> > >   
> > > > On Thu, Mar 06, 2025 at 12:21:22AM +0100, Uwe Kleine-König wrote:  
> > > > > Hello David,
> > > > > 
> > > > > On Wed, Mar 05, 2025 at 04:40:45PM +0100, David Jander wrote:    
> > > > > > On Fri, 28 Feb 2025 17:44:27 +0100
> > > > > > Uwe Kleine-König <u.kleine-koenig@baylibre.com> wrote:    
> > > > > > > On Thu, Feb 27, 2025 at 05:28:17PM +0100, David Jander wrote:
> > > > > > > [...]    
> > > > > > > > +static int motion_open(struct inode *inode, struct file *file)
> > > > > > > > +{
> > > > > > > > +	int minor = iminor(inode);
> > > > > > > > +	struct motion_device *mdev = NULL, *iter;
> > > > > > > > +	int err;
> > > > > > > > +
> > > > > > > > +	mutex_lock(&motion_mtx);      
> > > > > > > 
> > > > > > > If you use guard(), error handling gets a bit easier.    
> > > > > > 
> > > > > > This looks interesting. I didn't know about guard(). Thanks. I see the
> > > > > > benefits, but in some cases it also makes the locked region less clearly
> > > > > > visible. While I agree that guard() in this particular place is nice,
> > > > > > I'm hesitant to try and replace all mutex_lock()/_unlock() calls with guard().
> > > > > > Let me know if my assessment of the intended use of guard() is incorrect.    
> > > > > 
> > > > > I agree that guard() makes it harder for non-trivial functions to spot
> > > > > the critical section. In my eyes this is outweight by not having to
> > > > > unlock in all exit paths, but that might be subjective. Annother
> > > > > downside of guard is that sparse doesn't understand it and reports
> > > > > unbalanced locking.
> > > > >      
> > > > > > > > +	list_for_each_entry(iter, &motion_list, list) {
> > > > > > > > +		if (iter->minor != minor)
> > > > > > > > +			continue;
> > > > > > > > +		mdev = iter;
> > > > > > > > +		break;
> > > > > > > > +	}      
> > > > > > > 
> > > > > > > This should be easier. If you use a cdev you can just do
> > > > > > > container_of(inode->i_cdev, ...);    
> > > > > > 
> > > > > > Hmm... I don't yet really understand what you mean. I will have to study the
> > > > > > involved code a bit more.    
> > > > > 
> > > > > The code that I'm convinced is correct is
> > > > > https://lore.kernel.org/linux-pwm/00c9f1181dc351e1e6041ba6e41e4c30b12b6a27.1725635013.git.u.kleine-koenig@baylibre.com/
> > > > > 
> > > > > This isn't in mainline because there is some feedback I still have to
> > > > > address, but I think it might serve as an example anyhow.
> > > > >     
> > > > > > > > [...]
> > > > > > > > +
> > > > > > > > +static const struct class motion_class = {
> > > > > > > > +	.name		= "motion",
> > > > > > > > +	.devnode	= motion_devnode,      
> > > > > > > 
> > > > > > > IIRC it's recommended to not create new classes, but a bus.    
> > > > > > 
> > > > > > Interesting. I did some searching, and all I could find was that the chapter
> > > > > > in driver-api/driver-model about classes magically vanished between versions
> > > > > > 5.12 and 5.13. Does anyone know where I can find some information about this?
> > > > > > Sorry if I'm being blind...    
> > > > > 
> > > > > Half knowledge on my end at best. I would hope that Greg knows some
> > > > > details (which might even be "no, classes are fine"). I added him to Cc:    
> > > > 
> > > > A class is there for when you have a common api that devices of
> > > > different types can talk to userspace (i.e. the UAPI is common, not the
> > > > hardware type).  Things like input devices, tty, disks, etc.  A bus is
> > > > there to be able to write different drivers to bind to for that hardware
> > > > bus type (pci, usb, i2c, platform, etc.)
> > > > 
> > > > So you need both, a bus to talk to the hardware, and a class to talk to
> > > > userspace in a common way (ignore the fact that we can also talk to
> > > > hardware directly from userspace like raw USB or i2c or PCI config
> > > > space, that's all bus-specific stuff).  
> > > 
> > > Thanks for chiming in. Let me see if I understand this correctly: In this
> > > case, I have a UAPI that is common to different types of motion control
> > > devices. So I need a class. check.  
> > 
> > Correct.
> > 
> > > Do I need a bus? If one can conceive other drivers or kernel parts that talk to
> > > motion drivers, I would need a bus. If that doesn't make sense, I don't. Right?  
> > 
> > Correct.
> > 
> > > I actually can think of a new motion device that acts as an aggregator of
> > > several single-channel motion devices into a single "virtual" multi-channel
> > > device... so do I need also a bus? I suppose...?  
> > 
> > Nope, that should just be another class driver.  Think about how input
> > does this, some input /dev/ nodes are the sum of ALL input /dev/ nodes
> > together, while others are just for individual input devices.
> 
> Understood. Thanks!
> 
> > > Then the question remains: why did the chapter about classes vanish?  
> > 
> > What are you specifically referring to?  I don't remember deleting any
> > documentation, did files move around somehow and the links not get
> > updated?
> 
> This:
> https://www.kernel.org/doc/html/v5.12/driver-api/driver-model/index.html
> 
> vs this:
> https://www.kernel.org/doc/html/v5.13/driver-api/driver-model/index.html
> 
> Maybe it moved somewhere else, but I can't find it... I'd have to git bisect
> or git blame between the two releases maybe.

Ah, this was removed in:
	1364c6787525 ("docs: driver-model: Remove obsolete device class documentation")
as the information there was totally incorrect, since the 2.5.69 kernel
release.  "device classes" aren't a thing, "classes" are a thing :)

thanks,

greg k-h

  reply	other threads:[~2025-03-06 13:39 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-27 16:28 [RFC PATCH 0/7] Add Linux Motion Control subsystem David Jander
2025-02-27 16:28 ` [RFC PATCH 1/7] drivers: Add motion control subsystem David Jander
2025-02-28 16:44   ` Uwe Kleine-König
2025-03-05 15:40     ` David Jander
2025-03-05 23:21       ` Uwe Kleine-König
2025-03-06  7:18         ` Greg Kroah-Hartman
2025-03-06  8:20           ` David Jander
2025-03-06  9:03             ` Greg Kroah-Hartman
2025-03-06  9:34               ` David Jander
2025-03-06 13:39                 ` Greg Kroah-Hartman [this message]
2025-03-06 14:25                   ` David Jander
2025-03-06 14:54                     ` Greg Kroah-Hartman
2025-03-06  9:25         ` David Jander
2025-03-09 17:32           ` Jonathan Cameron
2025-03-10  8:45             ` David Jander
2025-02-28 22:36   ` David Lechner
2025-03-03  8:36     ` David Jander
2025-03-03 11:01       ` Pavel Pisa
2025-03-03 16:04         ` David Jander
2025-02-27 16:28 ` [RFC PATCH 2/7] motion: Add ADI/Trinamic TMC5240 stepper motor controller David Jander
2025-02-27 16:28 ` [RFC PATCH 3/7] motion: Add simple-pwm.c PWM based DC motor controller driver David Jander
2025-02-27 16:28 ` [RFC PATCH 4/7] Documentation: Add Linux Motion Control documentation David Jander
2025-02-27 16:37   ` Jonathan Corbet
2025-02-28 13:02     ` David Jander
2025-02-28 14:42       ` Jonathan Corbet
2025-02-28 15:06         ` David Jander
2025-02-27 16:28 ` [RFC PATCH 5/7] dt-bindings: motion: Add common motion device properties David Jander
2025-02-28  7:06   ` Krzysztof Kozlowski
2025-02-28  7:13   ` Krzysztof Kozlowski
2025-02-27 16:28 ` [RFC PATCH 6/7] dt-bindings: motion: Add adi,tmc5240 bindings David Jander
2025-02-28  7:11   ` Krzysztof Kozlowski
2025-02-28  8:48     ` David Jander
2025-02-28  9:35       ` Krzysztof Kozlowski
2025-02-28  9:51         ` David Jander
2025-02-28 14:01           ` Krzysztof Kozlowski
2025-02-28 22:38   ` David Lechner
2025-03-03 11:22     ` David Jander
2025-03-03 12:28       ` David Lechner
2025-03-03 13:18         ` David Jander
2025-02-27 16:28 ` [RFC PATCH 7/7] dt-bindings: motion: Add motion-simple-pwm bindings David Jander
2025-02-27 17:38   ` Rob Herring (Arm)
2025-02-28  7:12   ` Krzysztof Kozlowski
2025-02-28  9:22     ` David Jander
2025-02-28  9:37       ` Krzysztof Kozlowski
2025-02-28 10:09         ` David Jander
2025-02-28 15:18           ` Uwe Kleine-König
2025-03-03 10:53             ` Maud Spierings
2025-03-03 11:40             ` David Jander
2025-03-03 14:18               ` Krzysztof Kozlowski
2025-03-03 16:09                 ` David Jander
2025-02-28 22:41   ` David Lechner
2025-03-03 12:54     ` David Jander
2025-02-28  9:34 ` [RFC PATCH 0/7] Add Linux Motion Control subsystem Pavel Pisa
2025-02-28  9:35 ` Pavel Pisa
2025-02-28 11:57   ` David Jander
2025-02-28 15:23     ` Pavel Pisa
2025-03-03 10:45       ` David Jander
2025-02-28 22:36 ` David Lechner
2025-03-03  8:28   ` David Jander

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=2025030633-covenant-bootlace-7163@gregkh \
    --to=gregkh@linuxfoundation.org \
    --cc=conor+dt@kernel.org \
    --cc=corbet@lwn.net \
    --cc=david@protonic.nl \
    --cc=devicetree@vger.kernel.org \
    --cc=jic23@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nuno.sa@analog.com \
    --cc=o.rempel@pengutronix.de \
    --cc=robh@kernel.org \
    --cc=u.kleine-koenig@baylibre.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;
as well as URLs for NNTP newsgroup(s).