[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1fda026e-9ec5-46f6-84e8-4111263350ff@beagleboard.org>
Date: Tue, 29 Apr 2025 21:37:04 +0530
From: Ayush Singh <ayush@...gleboard.org>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Danilo Krummrich <dakr@...nel.org>
Cc: Jason Kridner <jkridner@...gleboard.org>,
Deepak Khatri <lorforlinux@...gleboard.org>,
Robert Nelson <robertcnelson@...gleboard.org>, Dhruva Gole <d-gole@...com>,
Miguel Ojeda <ojeda@...nel.org>, Alex Gaynor <alex.gaynor@...il.com>,
Boqun Feng <boqun.feng@...il.com>, Gary Guo <gary@...yguo.net>,
Björn Roy Baron <bjorn3_gh@...tonmail.com>,
Benno Lossin <benno.lossin@...ton.me>,
Andreas Hindborg <a.hindborg@...nel.org>, Alice Ryhl <aliceryhl@...gle.com>,
Trevor Gross <tmgross@...ch.edu>, "Rafael J. Wysocki" <rafael@...nel.org>,
rust-for-linux@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] rust: kernel: device: Add
devm_of_platform_populate/depopulate
On 4/29/25 20:27, Greg Kroah-Hartman wrote:
> On Tue, Apr 29, 2025 at 04:44:54PM +0200, Danilo Krummrich wrote:
>> On Tue, Apr 29, 2025 at 04:37:49PM +0200, Greg Kroah-Hartman wrote:
>>> On Tue, Apr 29, 2025 at 04:31:52PM +0200, Danilo Krummrich wrote:
>>>> On Tue, Apr 29, 2025 at 05:09:26PM +0530, Ayush Singh wrote:
>>>>> + /// Remove devices populated from device tree
>>>>> + pub fn devm_of_platform_depopulate(&self) {
>>>>> + // SAFETY: self is valid bound Device reference
>>>>> + unsafe { bindings::devm_of_platform_depopulate(self.as_raw()) }
>>>>> + }
>>>>> +}
>>>> One additional question regarding devm_of_platform_depopulate(). This function
>>>> is only used once throughout the whole kernel (in [1]), and at a first glance
>>>> the usage there seems unnecessary.
>>>>
>>>> In your upcoming driver you call devm_of_platform_depopulate() from a fallible
>>>> path [2].
>>>>
>>>> So, I think we should change devm_of_platform_depopulate() to return an error
>>>> instead of WARN(ret).
>>>>
>>>> If [1] needs it for some subtle reason I don't see, then I think we can still
>>>> call it from there as
>>>>
>>>> WARN(devm_of_platform_depopulate())
>>>>
>>>> [1] https://elixir.bootlin.com/linux/v6.15-rc4/source/drivers/soc/ti/pruss.c#L558
>>>> [2] https://github.com/Ayush1325/linux/commit/cdb1322b7166532445c54b601ad0a252866e574d#diff-7b9e3179e36732d5f3a681034d70c2fda4ff57745c79ad4a656f328c91e54b77R71
>>> Ugh, no, we should just delete this function entirely if only one driver
>>> is using it. That implies it's not really needed at all.
>> Ayush's driver calls {de}populate() from a sysfs store path [2]; not sure what
>> it's doing semantically or if this is a valid use-case though.
> That's going to be rough, and full of tricky corner-cases and probably
> shouldn't be doing that at all :)
>
> So let's hold off on this entirely until we see a real user that can
> actually pass review. Trying to do system configuration like this in
> sysfs is a much larger discussion than just adding rust bindings.
>
> (hint, configfs is for system configuration, not sysfs...)
>
> Anyway, worst case, you just "open code" the single function call that
> this one binding was trying to "wrap". which is what I think the
> in-kernel user should be doing now.
>
> thanks,
>
> greg k-h
Well, I don't really want to convert this discussion to addon board
connector setup discussions. So I will try to keep things as short as
possible here while linking to all the other discussions for the same.
For starters, what the driver does is as follows:
1. Provide 3 sysfs entries:
- New cape: Can write the name of the cape (I have not settled on
the naming convention yet). This name is then used to load appropriate
overlay from `/lib/firmware/` and populate all the devices. The overlay
is applied to the connector node. Only one cape overlay can be used at a
time.
- Current cape: Just a ro entry to get the name of any active cape.
- Delete cape: Remove cape overlay and registered devices.
It's a very basic driver, where I am trying to experiment with the
following patches ([2], [3], [4]) to be able to provide a better picture
of things, and get a read on what more needs to be added to devicetree
spec and/or other infra to make connector setups possible, and provide a
proof of concept that might move the needle a bit more than the past
year has.
I do not think this should use configfs, but maybe I am wrong.
`of_platform_populate` is used to discover the devices that are added by
the overlay. Without this function, I am not sure how a setup which is
supposed to only modify the devicetree in a particular node is supposed
to work.
The reason why local devicetree overlay is being used instead of
modifying the local tree is the discussion here regarding how global
tree modification is a security problem and any approach using it will
be difficult to upstream [0]. That is one of the reasons for not
pursuing the approach described here [1].
I am okay with maintaining the patches for Rust side out of tree,
because well, at this point, it's a much smaller list than the number of
out of tree patches I need to have for the C side to be able to show a
semi complete connector setup anyway. And nothing is going to be merged
until a so called perfect solution is found. But just want to list out
why I at least do not want the C side of
`of_platform_populate/depopulate` to not disappear.
Of course, feel free to list out any better alternatives than having to
use `of_platform_populate/depopulate`, which can be used for this purpose.
Best Regards,
Ayush Singh
[0]:
https://lore.kernel.org/all/9c326bb7-e09a-4c21-944f-006b3fad1870@beagleboard.org/
[1]: https://lore.kernel.org/lkml/20240702164403.29067-1-afd@ti.com/
[2]:
https://lore.kernel.org/devicetree-spec/20250415122453.68e4c50f@bootlin.com/T/#m591e737b48ebe96aafa39d87652e07eef99dff90
[3]:
https://lore.kernel.org/all/20241209151830.95723-1-herve.codina@bootlin.com/
[4]:
https://lore.kernel.org/devicetree-spec/20250401081041.114333-1-herve.codina@bootlin.com/T/#t
Powered by blists - more mailing lists