All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Danilo Krummrich" <dakr@kernel.org>
To: "Maxime Ripard" <mripard@kernel.org>
Cc: "Daniel Almeida" <daniel.almeida@collabora.com>,
	"Alice Ryhl" <aliceryhl@google.com>,
	"Rafael J. Wysocki" <rafael@kernel.org>,
	"Viresh Kumar" <viresh.kumar@linaro.org>,
	"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
	"Thomas Zimmermann" <tzimmermann@suse.de>,
	"David Airlie" <airlied@gmail.com>,
	"Simona Vetter" <simona@ffwll.ch>,
	"Drew Fustini" <fustini@kernel.org>,
	"Guo Ren" <guoren@kernel.org>, "Fu Wei" <wefu@redhat.com>,
	"Uwe Kleine-König" <ukleinek@kernel.org>,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Stephen Boyd" <sboyd@kernel.org>,
	"Miguel Ojeda" <ojeda@kernel.org>,
	"Boqun Feng" <boqun.feng@gmail.com>,
	"Gary Guo" <gary@garyguo.net>,
	"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
	"Benno Lossin" <lossin@kernel.org>,
	"Andreas Hindborg" <a.hindborg@kernel.org>,
	"Trevor Gross" <tmgross@umich.edu>,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org, linux-riscv@lists.infradead.org,
	linux-pwm@vger.kernel.org, linux-clk@vger.kernel.org,
	rust-for-linux@vger.kernel.org
Subject: Re: [PATCH v3 1/3] rust: clk: use the type-state pattern
Date: Mon, 19 Jan 2026 15:37:17 +0100	[thread overview]
Message-ID: <DFSN4FDCYHMW.3J3237PEBV2ZP@kernel.org> (raw)
In-Reply-To: <20260119-weightless-pelican-of-anger-190db0@houat>

On Mon Jan 19, 2026 at 3:18 PM CET, Maxime Ripard wrote:
> On Mon, Jan 19, 2026 at 02:13:48PM +0100, Danilo Krummrich wrote:
>> On Mon Jan 19, 2026 at 1:54 PM CET, Daniel Almeida wrote:
>> >> On 19 Jan 2026, at 09:35, Alice Ryhl <aliceryhl@google.com> wrote:
>> >> I think that if you still want an API where you just call enable/disable
>> >> directly on it with no protection against unbalanced calls, then that
>> >> should be the special API. Probably called RawClk and functions marked
>> >> unsafe. Unbalanced calls seem really dangerous and use should not be
>> >> encouraged.
>> 
>> +1; and unless there is a use-case that requires otherwise, it should not even
>> be possible to do this at all -- at least for driver code.
>
> I mean, it's great, it's safe, etc. but it's also suboptimal from a PM
> perspective on many platforms. It's totally fine to provide nice, safe,
> ergonomic wrappers for the drivers that don't care (or can't, really),
> but treating a legitimate optimisation as something we should consider
> impossible to do is just weird to me.

I said that an unsafe API with potentially unbalanced calls is something we
should clearly avoid for drivers. This is *not* equivalent to "treating a
legitimate optimisation as something we should consider impossible".

If we discover use-cases where the current API doesn't work well, we can
invenstigate further.

>> > I think we should discourage RawClk if at all possible. But if the consensus
>> > is that we *really* need this easily-abused thing, I can provide a follow-up.
>> 
>> I think we should only do this if there are use-case with no alternative, so far
>> there haven't been any AFAIK.
>
> I don't really care about which alternative we come up with, but look at
> devm_regmap_init_mmio_clk for example. It is a valid use-case that
> already exists today, and has had for more than a decade at this point.

I don't see the issue with devm_regmap_init_mmio_clk()? It takes a reference
count of the clock and prepares it when called and unprepares the clk in drops
its reference in regmap_mmio_free_context() called from the devres callback.

That something we can easily do with the current API, no?

WARNING: multiple messages have this Message-ID (diff)
From: "Danilo Krummrich" <dakr@kernel.org>
To: "Maxime Ripard" <mripard@kernel.org>
Cc: "Daniel Almeida" <daniel.almeida@collabora.com>,
	"Alice Ryhl" <aliceryhl@google.com>,
	"Rafael J. Wysocki" <rafael@kernel.org>,
	"Viresh Kumar" <viresh.kumar@linaro.org>,
	"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
	"Thomas Zimmermann" <tzimmermann@suse.de>,
	"David Airlie" <airlied@gmail.com>,
	"Simona Vetter" <simona@ffwll.ch>,
	"Drew Fustini" <fustini@kernel.org>,
	"Guo Ren" <guoren@kernel.org>, "Fu Wei" <wefu@redhat.com>,
	"Uwe Kleine-König" <ukleinek@kernel.org>,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Stephen Boyd" <sboyd@kernel.org>,
	"Miguel Ojeda" <ojeda@kernel.org>,
	"Boqun Feng" <boqun.feng@gmail.com>,
	"Gary Guo" <gary@garyguo.net>,
	"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
	"Benno Lossin" <lossin@kernel.org>,
	"Andreas Hindborg" <a.hindborg@kernel.org>,
	"Trevor Gross" <tmgross@umich.edu>,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org, linux-riscv@lists.infradead.org,
	linux-pwm@vger.kernel.org, linux-clk@vger.kernel.org,
	rust-for-linux@vger.kernel.org
Subject: Re: [PATCH v3 1/3] rust: clk: use the type-state pattern
Date: Mon, 19 Jan 2026 15:37:17 +0100	[thread overview]
Message-ID: <DFSN4FDCYHMW.3J3237PEBV2ZP@kernel.org> (raw)
In-Reply-To: <20260119-weightless-pelican-of-anger-190db0@houat>

On Mon Jan 19, 2026 at 3:18 PM CET, Maxime Ripard wrote:
> On Mon, Jan 19, 2026 at 02:13:48PM +0100, Danilo Krummrich wrote:
>> On Mon Jan 19, 2026 at 1:54 PM CET, Daniel Almeida wrote:
>> >> On 19 Jan 2026, at 09:35, Alice Ryhl <aliceryhl@google.com> wrote:
>> >> I think that if you still want an API where you just call enable/disable
>> >> directly on it with no protection against unbalanced calls, then that
>> >> should be the special API. Probably called RawClk and functions marked
>> >> unsafe. Unbalanced calls seem really dangerous and use should not be
>> >> encouraged.
>> 
>> +1; and unless there is a use-case that requires otherwise, it should not even
>> be possible to do this at all -- at least for driver code.
>
> I mean, it's great, it's safe, etc. but it's also suboptimal from a PM
> perspective on many platforms. It's totally fine to provide nice, safe,
> ergonomic wrappers for the drivers that don't care (or can't, really),
> but treating a legitimate optimisation as something we should consider
> impossible to do is just weird to me.

I said that an unsafe API with potentially unbalanced calls is something we
should clearly avoid for drivers. This is *not* equivalent to "treating a
legitimate optimisation as something we should consider impossible".

If we discover use-cases where the current API doesn't work well, we can
invenstigate further.

>> > I think we should discourage RawClk if at all possible. But if the consensus
>> > is that we *really* need this easily-abused thing, I can provide a follow-up.
>> 
>> I think we should only do this if there are use-case with no alternative, so far
>> there haven't been any AFAIK.
>
> I don't really care about which alternative we come up with, but look at
> devm_regmap_init_mmio_clk for example. It is a valid use-case that
> already exists today, and has had for more than a decade at this point.

I don't see the issue with devm_regmap_init_mmio_clk()? It takes a reference
count of the clock and prepares it when called and unprepares the clk in drops
its reference in regmap_mmio_free_context() called from the devres callback.

That something we can easily do with the current API, no?

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

  reply	other threads:[~2026-01-19 14:37 UTC|newest]

Thread overview: 136+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-07 15:09 [PATCH v3 0/3] Clk improvements Daniel Almeida
2026-01-07 15:09 ` Daniel Almeida
2026-01-07 15:09 ` [PATCH v3 1/3] rust: clk: use the type-state pattern Daniel Almeida
2026-01-07 15:09   ` Daniel Almeida
2026-01-08  8:07   ` Maxime Ripard
2026-01-08  8:07     ` Maxime Ripard
2026-01-08 13:57     ` Miguel Ojeda
2026-01-08 13:57       ` Miguel Ojeda
2026-01-08 14:18       ` Daniel Almeida
2026-01-08 14:18         ` Daniel Almeida
2026-01-08 14:14     ` Daniel Almeida
2026-01-08 14:14       ` Daniel Almeida
2026-01-19 10:45       ` Maxime Ripard
2026-01-19 10:45         ` Maxime Ripard
2026-01-19 12:13         ` Daniel Almeida
2026-01-19 12:13           ` Daniel Almeida
2026-01-19 12:35         ` Alice Ryhl
2026-01-19 12:35           ` Alice Ryhl
2026-01-19 12:54           ` Daniel Almeida
2026-01-19 12:54             ` Daniel Almeida
2026-01-19 13:13             ` Danilo Krummrich
2026-01-19 13:13               ` Danilo Krummrich
2026-01-19 14:18               ` Maxime Ripard
2026-01-19 14:18                 ` Maxime Ripard
2026-01-19 14:37                 ` Danilo Krummrich [this message]
2026-01-19 14:37                   ` Danilo Krummrich
2026-01-22 13:44                   ` Maxime Ripard
2026-01-22 13:44                     ` Maxime Ripard
2026-01-23  0:29                     ` Daniel Almeida
2026-01-23  0:29                       ` Daniel Almeida
2026-02-04  9:15                       ` Maxime Ripard
2026-02-04  9:15                         ` Maxime Ripard
2026-02-04 12:43                         ` Daniel Almeida
2026-02-04 12:43                           ` Daniel Almeida
2026-02-04 14:34                           ` Maxime Ripard
2026-02-04 14:34                             ` Maxime Ripard
2026-02-09  9:50                             ` Boris Brezillon
2026-02-09  9:50                               ` Boris Brezillon
2026-02-11 16:37                               ` Maxime Ripard
2026-02-11 16:37                                 ` Maxime Ripard
2026-02-11 16:47                                 ` Danilo Krummrich
2026-02-11 16:47                                   ` Danilo Krummrich
2026-02-12  7:59                                   ` Maxime Ripard
2026-02-12  7:59                                     ` Maxime Ripard
2026-02-12  8:52                                     ` Alice Ryhl
2026-02-12  8:52                                       ` Alice Ryhl
2026-02-12  9:23                                     ` Danilo Krummrich
2026-02-12  9:23                                       ` Danilo Krummrich
2026-02-12 14:01                                       ` Danilo Krummrich
2026-02-12 14:01                                         ` Danilo Krummrich
2026-02-12 16:50                                         ` Maxime Ripard
2026-02-12 16:50                                           ` Maxime Ripard
2026-02-12 11:45                                     ` Miguel Ojeda
2026-02-12 11:45                                       ` Miguel Ojeda
2026-02-12  8:16                                 ` Alice Ryhl
2026-02-12  8:16                                   ` Alice Ryhl
2026-02-12 13:38                                   ` Maxime Ripard
2026-02-12 13:38                                     ` Maxime Ripard
2026-02-12 14:02                                     ` Alice Ryhl
2026-02-12 14:02                                       ` Alice Ryhl
2026-02-12 16:48                                       ` Maxime Ripard
2026-02-12 16:48                                         ` Maxime Ripard
2026-01-23 10:25                     ` Danilo Krummrich
2026-01-23 10:25                       ` Danilo Krummrich
2026-01-19 12:57           ` Gary Guo
2026-01-19 12:57             ` Gary Guo
2026-01-19 14:27           ` Maxime Ripard
2026-01-19 14:27             ` Maxime Ripard
2026-02-03 10:39           ` Boris Brezillon
2026-02-03 10:39             ` Boris Brezillon
2026-02-03 11:26             ` Boris Brezillon
2026-02-03 11:26               ` Boris Brezillon
2026-02-03 14:53               ` Boris Brezillon
2026-02-03 14:53                 ` Boris Brezillon
2026-02-03 13:33             ` Daniel Almeida
2026-02-03 13:33               ` Daniel Almeida
2026-02-03 13:42               ` Gary Guo
2026-02-03 13:42                 ` Gary Guo
2026-02-03 13:55                 ` Daniel Almeida
2026-02-03 13:55                   ` Daniel Almeida
2026-02-03 14:33                   ` Boris Brezillon
2026-02-03 14:33                     ` Boris Brezillon
2026-02-03 14:08               ` Boris Brezillon
2026-02-03 14:08                 ` Boris Brezillon
2026-02-03 16:28                 ` Daniel Almeida
2026-02-03 16:28                   ` Daniel Almeida
2026-02-03 16:55                   ` Boris Brezillon
2026-02-03 16:55                     ` Boris Brezillon
2026-02-03 16:59                   ` Gary Guo
2026-02-03 16:59                     ` Gary Guo
2026-02-03 19:26                     ` Daniel Almeida
2026-02-03 19:26                       ` Daniel Almeida
2026-02-03 19:43                       ` Boris Brezillon
2026-02-03 19:43                         ` Boris Brezillon
2026-02-03 20:36                       ` Gary Guo
2026-02-03 20:36                         ` Gary Guo
2026-02-04  8:11                         ` Boris Brezillon
2026-02-04  8:11                           ` Boris Brezillon
2026-02-04  9:18                           ` Maxime Ripard
2026-02-04  9:18                             ` Maxime Ripard
2026-01-19 14:26         ` Gary Guo
2026-01-19 14:26           ` Gary Guo
2026-01-19 15:44           ` Daniel Almeida
2026-01-19 15:44             ` Daniel Almeida
2026-01-19 14:20   ` Gary Guo
2026-01-19 14:20     ` Gary Guo
2026-01-19 15:22     ` Miguel Ojeda
2026-01-19 15:22       ` Miguel Ojeda
2026-01-19 15:36       ` Gary Guo
2026-01-19 15:36         ` Gary Guo
2026-01-19 15:46         ` Miguel Ojeda
2026-01-19 15:46           ` Miguel Ojeda
2026-01-19 16:10           ` Gary Guo
2026-01-19 16:10             ` Gary Guo
2026-02-02 16:10     ` Boris Brezillon
2026-02-02 16:10       ` Boris Brezillon
2026-02-03  9:09       ` Boris Brezillon
2026-02-03  9:09         ` Boris Brezillon
2026-02-03  9:47         ` Boris Brezillon
2026-02-03  9:47           ` Boris Brezillon
2026-02-03 13:37         ` Daniel Almeida
2026-02-03 13:37           ` Daniel Almeida
2026-02-03 14:18           ` Boris Brezillon
2026-02-03 14:18             ` Boris Brezillon
2026-02-03  9:17   ` Boris Brezillon
2026-02-03  9:17     ` Boris Brezillon
2026-02-03 13:35     ` Daniel Almeida
2026-02-03 13:35       ` Daniel Almeida
2026-01-07 15:09 ` [PATCH v3 2/3] rust: clk: add devres-managed clks Daniel Almeida
2026-01-07 15:09   ` Daniel Almeida
2026-01-19 14:33   ` Gary Guo
2026-01-19 14:33     ` Gary Guo
2026-01-07 15:09 ` [PATCH v3 3/3] rust: clk: use 'kernel vertical style' for imports Daniel Almeida
2026-01-07 15:09   ` Daniel Almeida
2026-01-08  7:53   ` Maxime Ripard
2026-01-08  7:53     ` Maxime Ripard

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=DFSN4FDCYHMW.3J3237PEBV2ZP@kernel.org \
    --to=dakr@kernel.org \
    --cc=a.hindborg@kernel.org \
    --cc=airlied@gmail.com \
    --cc=aliceryhl@google.com \
    --cc=bjorn3_gh@protonmail.com \
    --cc=boqun.feng@gmail.com \
    --cc=daniel.almeida@collabora.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=fustini@kernel.org \
    --cc=gary@garyguo.net \
    --cc=guoren@kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=lossin@kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=ojeda@kernel.org \
    --cc=rafael@kernel.org \
    --cc=rust-for-linux@vger.kernel.org \
    --cc=sboyd@kernel.org \
    --cc=simona@ffwll.ch \
    --cc=tmgross@umich.edu \
    --cc=tzimmermann@suse.de \
    --cc=ukleinek@kernel.org \
    --cc=viresh.kumar@linaro.org \
    --cc=wefu@redhat.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.