All of lore.kernel.org
 help / color / mirror / Atom feed
From: Maxime Ripard <maxime@cerno.tech>
To: Paul Cercueil <paul@crapouillou.net>
Cc: "Aidan MacDonald" <aidanmacdonald.0x0@gmail.com>,
	"Stephen Boyd" <sboyd@kernel.org>,
	"Maxime Coquelin" <mcoquelin.stm32@gmail.com>,
	"Chen-Yu Tsai" <wens@csie.org>, "Daniel Vetter" <daniel@ffwll.ch>,
	"Nicolas Ferre" <nicolas.ferre@microchip.com>,
	"Thierry Reding" <thierry.reding@gmail.com>,
	"Jaroslav Kysela" <perex@perex.cz>,
	"Shawn Guo" <shawnguo@kernel.org>,
	"Fabio Estevam" <festevam@gmail.com>,
	"Ulf Hansson" <ulf.hansson@linaro.org>,
	"Claudiu Beznea" <claudiu.beznea@microchip.com>,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Dinh Nguyen" <dinguyen@kernel.org>,
	"Chunyan Zhang" <zhang.lyra@gmail.com>,
	"Manivannan Sadhasivam" <mani@kernel.org>,
	"Andreas Färber" <afaerber@suse.de>,
	"Jonathan Hunter" <jonathanh@nvidia.com>,
	"Abel Vesa" <abelvesa@kernel.org>,
	"Charles Keepax" <ckeepax@opensource.cirrus.com>,
	"Alessandro Zummo" <a.zummo@towertech.it>,
	"Peter De Schrijver" <pdeschrijver@nvidia.com>,
	"Orson Zhai" <orsonzhai@gmail.com>,
	"Alexandre Torgue" <alexandre.torgue@foss.st.com>,
	"Prashant Gaikwad" <pgaikwad@nvidia.com>,
	"Liam Girdwood" <lgirdwood@gmail.com>,
	"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
	"Samuel Holland" <samuel@sholland.org>,
	"Matthias Brugger" <matthias.bgg@gmail.com>,
	"Richard Fitzgerald" <rf@opensource.cirrus.com>,
	"Vinod Koul" <vkoul@kernel.org>,
	"NXP Linux Team" <linux-imx@nxp.com>,
	"Sekhar Nori" <nsekhar@ti.com>,
	"Kishon Vijay Abraham I" <kishon@kernel.org>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	"Takashi Iwai" <tiwai@suse.com>,
	"David Airlie" <airlied@gmail.com>,
	"Luca Ceresoli" <luca.ceresoli@bootlin.com>,
	"Jernej Skrabec" <jernej.skrabec@gmail.com>,
	"Pengutronix Kernel Team" <kernel@pengutronix.de>,
	"Baolin Wang" <baolin.wang@linux.alibaba.com>,
	"David Lechner" <david@lechnology.com>,
	"Sascha Hauer" <s.hauer@pengutronix.de>,
	"Mark Brown" <broonie@kernel.org>,
	"Max Filippov" <jcmvbkbc@gmail.com>,
	"Geert Uytterhoeven" <geert+renesas@glider.be>,
	linux-stm32@st-md-mailman.stormreply.com,
	alsa-devel@alsa-project.org, linux-mediatek@lists.infradead.org,
	linux-phy@lists.infradead.org, linux-mips@vger.kernel.org,
	linux-renesas-soc@vger.kernel.org,
	linux-actions@lists.infradead.org, linux-clk@vger.kernel.org,
	"AngeloGioacchino Del Regno"
	<angelogioacchino.delregno@collabora.com>,
	patches@opensource.cirrus.com, linux-tegra@vger.kernel.org,
	linux-rtc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v2 56/65] clk: ingenic: cgu: Switch to determine_rate
Date: Wed, 5 Apr 2023 16:50:56 +0200	[thread overview]
Message-ID: <g24dkwtsobslw6qdvs4vbcdmk2txrlrephm5zmlff2fusrxheo@mqxrprzctymk> (raw)
In-Reply-To: <1e0e8e9fe44c27e844e7e918a985704e58da2c27.camel@crapouillou.net>

[-- Attachment #1: Type: text/plain, Size: 3038 bytes --]

On Wed, Apr 05, 2023 at 02:57:26PM +0200, Paul Cercueil wrote:
> Le lundi 27 mars 2023 à 21:24 +0200, Maxime Ripard a écrit :
> > On Fri, Mar 24, 2023 at 08:58:48PM +0000, Aidan MacDonald wrote:
> > > > > My suggestion: add a per-clock bitmap to keep track of which
> > > > > parents
> > > > > are allowed. Any operation that would select a parent clock not
> > > > > on the
> > > > > whitelist should fail. Automatic reparenting should only select
> > > > > from
> > > > > clocks on the whitelist. And we need new DT bindings for
> > > > > controlling
> > > > > the whitelist, for example:
> > > > > 
> > > > >     clock-parents-0 = <&clk1>, <&pll_c>;
> > > > >     clock-parents-1 = <&clk2>, <&pll_a>, <&pll_b>;
> > > > > 
> > > > > This means that clk1 can only have pll_c as a parent, while
> > > > > clk2 can
> > > > > have pll_a or pll_b as parents. By default every clock will be
> > > > > able
> > > > > to use any parent, so a list is only needed if the machine
> > > > > needs a
> > > > > more restrictive policy.
> > > > > 
> > > > > assigned-clock-parents should disable automatic reparenting,
> > > > > but allow
> > > > > explicit clk_set_parent(). This will allow clock drivers to
> > > > > start doing
> > > > > reparenting without breaking old DTs.
> > > > 
> > > > I'm generally not a fan of putting all these policies in the
> > > > device
> > > > tree. Do you have an example where it wouldn't be possible to do
> > > > exactly
> > > > this from the driver itself?
> > > 
> > > I'm confused. What's implicit in the example is clk1 and clk2 might
> > > have *other* possible choices of parent clock and the device tree
> > > is
> > > limiting what the OS is allowed to choose.
> > > 
> > > Why would you put such arbitrary limitations into the driver?
> > 
> > Why would we put such arbitrary limitations in the firmware? As this
> > entire thread can attest, people are already using the device tree to
> > work around the limitations of the Linux driver, or reduce the
> > features of Linux because they can rely on the device tree. Either
> > way, it's linked to the state of the Linux driver, and any other OS
> > or
> > Linux version could very well implement something more dynamic.
> 
> Probably because if we have to choose between setting policy in the
> kernel or in the firmware, it is arguably better to set it in the
> firmware.

I have a very different view on this I guess. Firmware is (most of the
time) hard to update, and the policy depend on the state of support of a
given OS so it's likely to evolve. The kernel is the best place to me to
put that kind of policy. Why do you think differently?

> Especially when talking about clocks, as the firmware is already the
> one programming the boot clocks.

I'm not sure what your point is there. I don't think I ever saw a
firmware getting the clocks right for every possible scenario on a given
platform. And if it was indeed the case, then we wouldn't even a kernel
driver.

Maxime

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime@cerno.tech>
To: Paul Cercueil <paul@crapouillou.net>
Cc: "Ulf Hansson" <ulf.hansson@linaro.org>,
	"Prashant Gaikwad" <pgaikwad@nvidia.com>,
	"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
	"Liam Girdwood" <lgirdwood@gmail.com>,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Sekhar Nori" <nsekhar@ti.com>,
	"Alexandre Torgue" <alexandre.torgue@foss.st.com>,
	dri-devel@lists.freedesktop.org,
	"Jaroslav Kysela" <perex@perex.cz>,
	"Max Filippov" <jcmvbkbc@gmail.com>,
	"Thierry Reding" <thierry.reding@gmail.com>,
	linux-phy@lists.infradead.org,
	linux-stm32@st-md-mailman.stormreply.com,
	"Abel Vesa" <abelvesa@kernel.org>,
	"Kishon Vijay Abraham I" <kishon@kernel.org>,
	"Geert Uytterhoeven" <geert+renesas@glider.be>,
	"Samuel Holland" <samuel@sholland.org>,
	"Chunyan Zhang" <zhang.lyra@gmail.com>,
	"Takashi Iwai" <tiwai@suse.com>,
	linux-tegra@vger.kernel.org,
	"Jernej Skrabec" <jernej.skrabec@gmail.com>,
	"Jonathan Hunter" <jonathanh@nvidia.com>,
	"Chen-Yu Tsai" <wens@csie.org>,
	"NXP Linux Team" <linux-imx@nxp.com>,
	"Orson Zhai" <orsonzhai@gmail.com>,
	linux-mips@vger.kernel.org,
	"Luca Ceresoli" <luca.ceresoli@bootlin.com>,
	linux-rtc@vger.kernel.org, linux-clk@vger.kernel.org,
	"Charles Keepax" <ckeepax@opensource.cirrus.com>,
	"Aidan MacDonald" <aidanmacdonald.0x0@gmail.com>,
	alsa-devel@alsa-project.org,
	"Manivannan Sadhasivam" <mani@kernel.org>,
	linux-kernel@vger.kernel.org,
	"Sascha Hauer" <s.hauer@pengutronix.de>,
	linux-actions@lists.infradead.org,
	"Richard Fitzgerald" <rf@opensource.cirrus.com>,
	"Mark Brown" <broonie@kernel.org>,
	linux-mediatek@lists.infradead.org,
	"Baolin Wang" <baolin.wang@linux.alibaba.com>,
	"Matthias Brugger" <matthias.bgg@gmail.com>,
	"Pengutronix Kernel Team" <kernel@pengutronix.de>,
	linux-arm-kernel@lists.infradead.org,
	"AngeloGioacchino Del Regno"
	<angelogioacchino.delregno@collabora.com>,
	"Alessandro Zummo" <a.zummo@towertech.it>,
	linux-sunxi@lists.linux.dev, "Stephen Boyd" <sboyd@kernel.org>,
	patches@opensource.cirrus.com,
	"Peter De Schrijver" <pdeschrijver@nvidia.com>,
	"Nicolas Ferre" <nicolas.ferre@microchip.com>,
	"Andreas Färber" <afaerber@suse.de>,
	linux-renesas-soc@vger.kernel.org,
	"Dinh Nguyen" <dinguyen@kernel.org>,
	"Vinod Koul" <vkoul@kernel.org>,
	"Maxime Coquelin" <mcoquelin.stm32@gmail.com>,
	"David Lechner" <david@lechnology.com>,
	"Shawn Guo" <shawnguo@kernel.org>,
	"Claudiu Beznea" <claudiu.beznea@microchip.com>
Subject: Re: [PATCH v2 56/65] clk: ingenic: cgu: Switch to determine_rate
Date: Wed, 5 Apr 2023 16:50:56 +0200	[thread overview]
Message-ID: <g24dkwtsobslw6qdvs4vbcdmk2txrlrephm5zmlff2fusrxheo@mqxrprzctymk> (raw)
In-Reply-To: <1e0e8e9fe44c27e844e7e918a985704e58da2c27.camel@crapouillou.net>

[-- Attachment #1: Type: text/plain, Size: 3038 bytes --]

On Wed, Apr 05, 2023 at 02:57:26PM +0200, Paul Cercueil wrote:
> Le lundi 27 mars 2023 à 21:24 +0200, Maxime Ripard a écrit :
> > On Fri, Mar 24, 2023 at 08:58:48PM +0000, Aidan MacDonald wrote:
> > > > > My suggestion: add a per-clock bitmap to keep track of which
> > > > > parents
> > > > > are allowed. Any operation that would select a parent clock not
> > > > > on the
> > > > > whitelist should fail. Automatic reparenting should only select
> > > > > from
> > > > > clocks on the whitelist. And we need new DT bindings for
> > > > > controlling
> > > > > the whitelist, for example:
> > > > > 
> > > > >     clock-parents-0 = <&clk1>, <&pll_c>;
> > > > >     clock-parents-1 = <&clk2>, <&pll_a>, <&pll_b>;
> > > > > 
> > > > > This means that clk1 can only have pll_c as a parent, while
> > > > > clk2 can
> > > > > have pll_a or pll_b as parents. By default every clock will be
> > > > > able
> > > > > to use any parent, so a list is only needed if the machine
> > > > > needs a
> > > > > more restrictive policy.
> > > > > 
> > > > > assigned-clock-parents should disable automatic reparenting,
> > > > > but allow
> > > > > explicit clk_set_parent(). This will allow clock drivers to
> > > > > start doing
> > > > > reparenting without breaking old DTs.
> > > > 
> > > > I'm generally not a fan of putting all these policies in the
> > > > device
> > > > tree. Do you have an example where it wouldn't be possible to do
> > > > exactly
> > > > this from the driver itself?
> > > 
> > > I'm confused. What's implicit in the example is clk1 and clk2 might
> > > have *other* possible choices of parent clock and the device tree
> > > is
> > > limiting what the OS is allowed to choose.
> > > 
> > > Why would you put such arbitrary limitations into the driver?
> > 
> > Why would we put such arbitrary limitations in the firmware? As this
> > entire thread can attest, people are already using the device tree to
> > work around the limitations of the Linux driver, or reduce the
> > features of Linux because they can rely on the device tree. Either
> > way, it's linked to the state of the Linux driver, and any other OS
> > or
> > Linux version could very well implement something more dynamic.
> 
> Probably because if we have to choose between setting policy in the
> kernel or in the firmware, it is arguably better to set it in the
> firmware.

I have a very different view on this I guess. Firmware is (most of the
time) hard to update, and the policy depend on the state of support of a
given OS so it's likely to evolve. The kernel is the best place to me to
put that kind of policy. Why do you think differently?

> Especially when talking about clocks, as the firmware is already the
> one programming the boot clocks.

I'm not sure what your point is there. I don't think I ever saw a
firmware getting the clocks right for every possible scenario on a given
platform. And if it was indeed the case, then we wouldn't even a kernel
driver.

Maxime

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime@cerno.tech>
To: Paul Cercueil <paul@crapouillou.net>
Cc: "Aidan MacDonald" <aidanmacdonald.0x0@gmail.com>,
	"Stephen Boyd" <sboyd@kernel.org>,
	"Maxime Coquelin" <mcoquelin.stm32@gmail.com>,
	"Chen-Yu Tsai" <wens@csie.org>, "Daniel Vetter" <daniel@ffwll.ch>,
	"Nicolas Ferre" <nicolas.ferre@microchip.com>,
	"Thierry Reding" <thierry.reding@gmail.com>,
	"Jaroslav Kysela" <perex@perex.cz>,
	"Shawn Guo" <shawnguo@kernel.org>,
	"Fabio Estevam" <festevam@gmail.com>,
	"Ulf Hansson" <ulf.hansson@linaro.org>,
	"Claudiu Beznea" <claudiu.beznea@microchip.com>,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Dinh Nguyen" <dinguyen@kernel.org>,
	"Chunyan Zhang" <zhang.lyra@gmail.com>,
	"Manivannan Sadhasivam" <mani@kernel.org>,
	"Andreas Färber" <afaerber@suse.de>,
	"Jonathan Hunter" <jonathanh@nvidia.com>,
	"Abel Vesa" <abelvesa@kernel.org>,
	"Charles Keepax" <ckeepax@opensource.cirrus.com>,
	"Alessandro Zummo" <a.zummo@towertech.it>,
	"Peter De Schrijver" <pdeschrijver@nvidia.com>,
	"Orson Zhai" <orsonzhai@gmail.com>,
	"Alexandre Torgue" <alexandre.torgue@foss.st.com>,
	"Prashant Gaikwad" <pgaikwad@nvidia.com>,
	"Liam Girdwood" <lgirdwood@gmail.com>,
	"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
	"Samuel Holland" <samuel@sholland.org>,
	"Matthias Brugger" <matthias.bgg@gmail.com>,
	"Richard Fitzgerald" <rf@opensource.cirrus.com>,
	"Vinod Koul" <vkoul@kernel.org>,
	"NXP Linux Team" <linux-imx@nxp.com>,
	"Sekhar Nori" <nsekhar@ti.com>,
	"Kishon Vijay Abraham I" <kishon@kernel.org>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	"Takashi Iwai" <tiwai@suse.com>,
	"David Airlie" <airlied@gmail.com>,
	"Luca Ceresoli" <luca.ceresoli@bootlin.com>,
	"Jernej Skrabec" <jernej.skrabec@gmail.com>,
	"Pengutronix Kernel Team" <kernel@pengutronix.de>,
	"Baolin Wang" <baolin.wang@linux.alibaba.com>,
	"David Lechner" <david@lechnology.com>,
	"Sascha Hauer" <s.hauer@pengutronix.de>,
	"Mark Brown" <broonie@kernel.org>,
	"Max Filippov" <jcmvbkbc@gmail.com>,
	"Geert Uytterhoeven" <geert+renesas@glider.be>,
	linux-stm32@st-md-mailman.stormreply.com,
	alsa-devel@alsa-project.org, linux-mediatek@lists.infradead.org,
	linux-phy@lists.infradead.org, linux-mips@vger.kernel.org,
	linux-renesas-soc@vger.kernel.org,
	linux-actions@lists.infradead.org, linux-clk@vger.kernel.org,
	"AngeloGioacchino Del Regno"
	<angelogioacchino.delregno@collabora.com>,
	patches@opensource.cirrus.com, linux-tegra@vger.kernel.org,
	linux-rtc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v2 56/65] clk: ingenic: cgu: Switch to determine_rate
Date: Wed, 5 Apr 2023 16:50:56 +0200	[thread overview]
Message-ID: <g24dkwtsobslw6qdvs4vbcdmk2txrlrephm5zmlff2fusrxheo@mqxrprzctymk> (raw)
In-Reply-To: <1e0e8e9fe44c27e844e7e918a985704e58da2c27.camel@crapouillou.net>


[-- Attachment #1.1: Type: text/plain, Size: 3038 bytes --]

On Wed, Apr 05, 2023 at 02:57:26PM +0200, Paul Cercueil wrote:
> Le lundi 27 mars 2023 à 21:24 +0200, Maxime Ripard a écrit :
> > On Fri, Mar 24, 2023 at 08:58:48PM +0000, Aidan MacDonald wrote:
> > > > > My suggestion: add a per-clock bitmap to keep track of which
> > > > > parents
> > > > > are allowed. Any operation that would select a parent clock not
> > > > > on the
> > > > > whitelist should fail. Automatic reparenting should only select
> > > > > from
> > > > > clocks on the whitelist. And we need new DT bindings for
> > > > > controlling
> > > > > the whitelist, for example:
> > > > > 
> > > > >     clock-parents-0 = <&clk1>, <&pll_c>;
> > > > >     clock-parents-1 = <&clk2>, <&pll_a>, <&pll_b>;
> > > > > 
> > > > > This means that clk1 can only have pll_c as a parent, while
> > > > > clk2 can
> > > > > have pll_a or pll_b as parents. By default every clock will be
> > > > > able
> > > > > to use any parent, so a list is only needed if the machine
> > > > > needs a
> > > > > more restrictive policy.
> > > > > 
> > > > > assigned-clock-parents should disable automatic reparenting,
> > > > > but allow
> > > > > explicit clk_set_parent(). This will allow clock drivers to
> > > > > start doing
> > > > > reparenting without breaking old DTs.
> > > > 
> > > > I'm generally not a fan of putting all these policies in the
> > > > device
> > > > tree. Do you have an example where it wouldn't be possible to do
> > > > exactly
> > > > this from the driver itself?
> > > 
> > > I'm confused. What's implicit in the example is clk1 and clk2 might
> > > have *other* possible choices of parent clock and the device tree
> > > is
> > > limiting what the OS is allowed to choose.
> > > 
> > > Why would you put such arbitrary limitations into the driver?
> > 
> > Why would we put such arbitrary limitations in the firmware? As this
> > entire thread can attest, people are already using the device tree to
> > work around the limitations of the Linux driver, or reduce the
> > features of Linux because they can rely on the device tree. Either
> > way, it's linked to the state of the Linux driver, and any other OS
> > or
> > Linux version could very well implement something more dynamic.
> 
> Probably because if we have to choose between setting policy in the
> kernel or in the firmware, it is arguably better to set it in the
> firmware.

I have a very different view on this I guess. Firmware is (most of the
time) hard to update, and the policy depend on the state of support of a
given OS so it's likely to evolve. The kernel is the best place to me to
put that kind of policy. Why do you think differently?

> Especially when talking about clocks, as the firmware is already the
> one programming the boot clocks.

I'm not sure what your point is there. I don't think I ever saw a
firmware getting the clocks right for every possible scenario on a given
platform. And if it was indeed the case, then we wouldn't even a kernel
driver.

Maxime

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

[-- Attachment #2: Type: text/plain, Size: 112 bytes --]

-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime@cerno.tech>
To: Paul Cercueil <paul@crapouillou.net>
Cc: "Aidan MacDonald" <aidanmacdonald.0x0@gmail.com>,
	"Stephen Boyd" <sboyd@kernel.org>,
	"Maxime Coquelin" <mcoquelin.stm32@gmail.com>,
	"Chen-Yu Tsai" <wens@csie.org>, "Daniel Vetter" <daniel@ffwll.ch>,
	"Nicolas Ferre" <nicolas.ferre@microchip.com>,
	"Thierry Reding" <thierry.reding@gmail.com>,
	"Shawn Guo" <shawnguo@kernel.org>,
	"Fabio Estevam" <festevam@gmail.com>,
	"Ulf Hansson" <ulf.hansson@linaro.org>,
	"Claudiu Beznea" <claudiu.beznea@microchip.com>,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Dinh Nguyen" <dinguyen@kernel.org>,
	"Chunyan Zhang" <zhang.lyra@gmail.com>,
	"Manivannan Sadhasivam" <mani@kernel.org>,
	"Andreas Färber" <afaerber@suse.de>,
	"Jonathan Hunter" <jonathanh@nvidia.com>,
	"Abel Vesa" <abelvesa@kernel.org>,
	"Charles Keepax" <ckeepax@opensource.cirrus.com>,
	"Alessandro Zummo" <a.zummo@towertech.it>,
	"Peter De Schrijver" <pdeschrijver@nvidia.com>,
	"Orson Zhai" <orsonzhai@gmail.com>,
	"Alexandre Torgue" <alexandre.torgue@foss.st.com>,
	"Prashant Gaikwad" <pgaikwad@nvidia.com>,
	"Liam Girdwood" <lgirdwood@gmail.com>,
	"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
	"Samuel Holland" <samuel@sholland.org>,
	"Matthias Brugger" <matthias.bgg@gmail.com>,
	"Richard Fitzgerald" <rf@opensource.cirrus.com>,
	"Vinod Koul" <vkoul@kernel.org>,
	"NXP Linux Team" <linux-imx@nxp.com>,
	"Sekhar Nori" <nsekhar@ti.com>,
	"Kishon Vijay Abraham I" <kishon@kernel.org>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	"Takashi Iwai" <tiwai@suse.com>,
	"David Airlie" <airlied@gmail.com>,
	"Luca Ceresoli" <luca.ceresoli@bootlin.com>,
	"Jernej Skrabec" <jernej.skrabec@gmail.com>,
	"Pengutronix Kernel Team" <kernel@pengutronix.de>,
	"Baolin Wang" <baolin.wang@linux.alibaba.com>,
	"David Lechner" <david@lechnology.com>,
	"Sascha Hauer" <s.hauer@pengutronix.de>,
	"Mark Brown" <broonie@kernel.org>,
	"Max Filippov" <jcmvbkbc@gmail.com>,
	"Geert Uytterhoeven" <geert+renesas@glider.be>,
	linux-stm32@st-md-mailman.stormreply.com,
	alsa-devel@alsa-project.org, linux-mediatek@lists.infradead.org,
	linux-phy@lists.infradead.org, linux-mips@vger.kernel.org,
	linux-renesas-soc@vger.kernel.org,
	linux-actions@lists.infradead.org, linux-clk@vger.kernel.org,
	"AngeloGioacchino Del Regno"
	<angelogioacchino.delregno@collabora.com>,
	patches@opensource.cirrus.com, linux-tegra@vger.kernel.org,
	linux-rtc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v2 56/65] clk: ingenic: cgu: Switch to determine_rate
Date: Wed, 5 Apr 2023 16:50:56 +0200	[thread overview]
Message-ID: <g24dkwtsobslw6qdvs4vbcdmk2txrlrephm5zmlff2fusrxheo@mqxrprzctymk> (raw)
In-Reply-To: <1e0e8e9fe44c27e844e7e918a985704e58da2c27.camel@crapouillou.net>

[-- Attachment #1: Type: text/plain, Size: 3038 bytes --]

On Wed, Apr 05, 2023 at 02:57:26PM +0200, Paul Cercueil wrote:
> Le lundi 27 mars 2023 à 21:24 +0200, Maxime Ripard a écrit :
> > On Fri, Mar 24, 2023 at 08:58:48PM +0000, Aidan MacDonald wrote:
> > > > > My suggestion: add a per-clock bitmap to keep track of which
> > > > > parents
> > > > > are allowed. Any operation that would select a parent clock not
> > > > > on the
> > > > > whitelist should fail. Automatic reparenting should only select
> > > > > from
> > > > > clocks on the whitelist. And we need new DT bindings for
> > > > > controlling
> > > > > the whitelist, for example:
> > > > > 
> > > > >     clock-parents-0 = <&clk1>, <&pll_c>;
> > > > >     clock-parents-1 = <&clk2>, <&pll_a>, <&pll_b>;
> > > > > 
> > > > > This means that clk1 can only have pll_c as a parent, while
> > > > > clk2 can
> > > > > have pll_a or pll_b as parents. By default every clock will be
> > > > > able
> > > > > to use any parent, so a list is only needed if the machine
> > > > > needs a
> > > > > more restrictive policy.
> > > > > 
> > > > > assigned-clock-parents should disable automatic reparenting,
> > > > > but allow
> > > > > explicit clk_set_parent(). This will allow clock drivers to
> > > > > start doing
> > > > > reparenting without breaking old DTs.
> > > > 
> > > > I'm generally not a fan of putting all these policies in the
> > > > device
> > > > tree. Do you have an example where it wouldn't be possible to do
> > > > exactly
> > > > this from the driver itself?
> > > 
> > > I'm confused. What's implicit in the example is clk1 and clk2 might
> > > have *other* possible choices of parent clock and the device tree
> > > is
> > > limiting what the OS is allowed to choose.
> > > 
> > > Why would you put such arbitrary limitations into the driver?
> > 
> > Why would we put such arbitrary limitations in the firmware? As this
> > entire thread can attest, people are already using the device tree to
> > work around the limitations of the Linux driver, or reduce the
> > features of Linux because they can rely on the device tree. Either
> > way, it's linked to the state of the Linux driver, and any other OS
> > or
> > Linux version could very well implement something more dynamic.
> 
> Probably because if we have to choose between setting policy in the
> kernel or in the firmware, it is arguably better to set it in the
> firmware.

I have a very different view on this I guess. Firmware is (most of the
time) hard to update, and the policy depend on the state of support of a
given OS so it's likely to evolve. The kernel is the best place to me to
put that kind of policy. Why do you think differently?

> Especially when talking about clocks, as the firmware is already the
> one programming the boot clocks.

I'm not sure what your point is there. I don't think I ever saw a
firmware getting the clocks right for every possible scenario on a given
platform. And if it was indeed the case, then we wouldn't even a kernel
driver.

Maxime

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

  reply	other threads:[~2023-04-05 14:51 UTC|newest]

Thread overview: 388+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-04 13:17 [PATCH v2 00/65] clk: Make determine_rate mandatory for muxes Maxime Ripard
2022-11-04 13:17 ` Maxime Ripard
2022-11-04 13:17 ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 01/65] clk: Export clk_hw_forward_rate_request() Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 02/65] clk: lan966x: Remove unused round_rate hook Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 03/65] clk: nodrv: Add a determine_rate hook Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 04/65] clk: test: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 05/65] clk: actions: composite: Add a determine_rate hook for pass clk Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 06/65] clk: at91: main: Add a determine_rate hook Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 07/65] clk: at91: sckc: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 08/65] clk: berlin: div: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 09/65] clk: cdce706: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 10/65] clk: k210: pll: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 11/65] clk: k210: aclk: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 12/65] clk: k210: mux: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 13/65] clk: lmk04832: clkout: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-13 22:35   ` Liam Beguin
2022-11-13 22:35     ` Liam Beguin
2022-11-13 22:35     ` Liam Beguin
2022-11-13 22:35     ` Liam Beguin
2022-11-04 13:17 ` [PATCH v2 14/65] clk: lochnagar: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 15/65] clk: qoriq: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 16/65] clk: si5341: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 17/65] clk: stm32f4: mux: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 18/65] clk: vc5: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 19/65] clk: vc5: clkout: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 20/65] clk: wm831x: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-07 10:58   ` Charles Keepax
2022-11-07 10:58     ` Charles Keepax
2022-11-07 10:58     ` Charles Keepax
2022-11-07 10:58     ` Charles Keepax
2022-11-04 13:17 ` [PATCH v2 21/65] clk: davinci: da8xx-cfgchip: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 16:45   ` David Lechner
2022-11-04 16:45     ` David Lechner
2022-11-04 16:45     ` David Lechner
2022-11-07 12:06     ` Maxime Ripard
2022-11-07 12:06       ` Maxime Ripard
2022-11-07 12:06       ` Maxime Ripard
2022-11-07 12:06       ` Maxime Ripard
2022-11-07 14:52       ` David Lechner
2022-11-07 14:52         ` David Lechner
2022-11-07 14:52         ` David Lechner
2022-11-07 14:52         ` David Lechner
2022-11-04 13:17 ` [PATCH v2 22/65] " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 16:46   ` David Lechner
2022-11-04 16:46     ` David Lechner
2022-11-04 16:46     ` David Lechner
2022-11-04 13:17 ` [PATCH v2 23/65] clk: imx: busy: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 24/65] clk: imx: fixup-mux: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 25/65] clk: imx: scu: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 26/65] clk: mediatek: cpumux: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 27/65] clk: pxa: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 28/65] clk: renesas: r9a06g032: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-07  7:51   ` Geert Uytterhoeven
2022-11-07  7:51     ` Geert Uytterhoeven
2022-11-07  7:51     ` Geert Uytterhoeven
2022-11-07  7:51     ` Geert Uytterhoeven
2022-11-04 13:17 ` [PATCH v2 29/65] clk: socfpga: gate: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 30/65] clk: stm32: core: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 31/65] clk: tegra: bpmp: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 32/65] clk: tegra: super: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 33/65] clk: tegra: periph: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 34/65] clk: ux500: prcmu: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-08 13:25   ` Linus Walleij
2022-11-08 13:25     ` Linus Walleij
2022-11-08 13:25     ` Linus Walleij
2022-11-08 13:25     ` Linus Walleij
2022-11-09 11:05     ` Maxime Ripard
2022-11-09 11:05       ` Maxime Ripard
2022-11-09 11:05       ` Maxime Ripard
2022-11-09 11:05       ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 35/65] clk: ux500: sysctrl: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-08 13:27   ` Linus Walleij
2022-11-08 13:27     ` Linus Walleij
2022-11-08 13:27     ` Linus Walleij
2022-11-08 13:27     ` Linus Walleij
2022-11-10 11:28   ` Ulf Hansson
2022-11-10 11:28     ` Ulf Hansson
2022-11-10 11:28     ` Ulf Hansson
2022-11-10 11:28     ` Ulf Hansson
2022-11-10 11:39     ` Linus Walleij
2022-11-10 11:39       ` Linus Walleij
2022-11-10 11:39       ` Linus Walleij
2022-11-10 11:39       ` Linus Walleij
2022-11-10 13:05       ` Ulf Hansson
2022-11-10 13:05         ` Ulf Hansson
2022-11-10 13:05         ` Ulf Hansson
2022-11-10 13:05         ` Ulf Hansson
2022-11-11  9:20         ` Linus Walleij
2022-11-11  9:20           ` Linus Walleij
2022-11-11  9:20           ` Linus Walleij
2022-11-11  9:20           ` Linus Walleij
2022-11-14  9:05           ` Lee Jones
2022-11-14  9:05             ` Lee Jones
2022-11-14  9:05             ` Lee Jones
2022-11-14  9:05             ` Lee Jones
2022-11-04 13:17 ` [PATCH v2 36/65] clk: versatile: sp810: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 37/65] drm/tegra: sor: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 38/65] phy: cadence: sierra: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 39/65] phy: cadence: torrent: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 40/65] phy: ti: am654-serdes: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 41/65] phy: ti: j721e-wiz: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17 ` [PATCH v2 42/65] rtc: sun6i: " Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-04 13:17   ` Maxime Ripard
2022-11-05  3:45   ` Samuel Holland
2022-11-05  3:45     ` Samuel Holland
2022-11-04 13:18 ` [PATCH v2 43/65] ASoC: tlv320aic32x4: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 15:44   ` Mark Brown
2022-11-04 15:44     ` Mark Brown
2022-11-04 15:44     ` Mark Brown
2022-11-04 15:44     ` Mark Brown
2022-11-04 15:51     ` Maxime Ripard
2022-11-04 15:51       ` Maxime Ripard
2022-11-04 15:51       ` Maxime Ripard
2022-11-04 15:51       ` Maxime Ripard
2022-11-04 15:59       ` Mark Brown
2022-11-04 15:59         ` Mark Brown
2022-11-04 15:59         ` Mark Brown
2022-11-04 15:59         ` Mark Brown
2022-11-07  8:43         ` Maxime Ripard
2022-11-07  8:43           ` Maxime Ripard
2022-11-07  8:43           ` Maxime Ripard
2022-11-07  8:43           ` Maxime Ripard
2022-11-07 12:06           ` Mark Brown
2022-11-07 12:06             ` Mark Brown
2022-11-07 12:06             ` Mark Brown
2022-11-07 12:06             ` Mark Brown
2022-11-07 15:26             ` Maxime Ripard
2022-11-07 15:26               ` Maxime Ripard
2022-11-07 15:26               ` Maxime Ripard
2022-11-07 15:26               ` Maxime Ripard
2022-11-07 16:02               ` Mark Brown
2022-11-07 16:02                 ` Mark Brown
2022-11-07 16:02                 ` Mark Brown
2022-11-07 16:02                 ` Mark Brown
2023-03-22 23:31               ` Stephen Boyd
2023-03-22 23:31                 ` Stephen Boyd
2023-03-22 23:31                 ` Stephen Boyd
2023-03-29 19:50                 ` Maxime Ripard
2023-03-29 19:50                   ` Maxime Ripard
2023-03-29 19:50                   ` Maxime Ripard
2023-03-29 19:50                   ` Maxime Ripard
2023-03-29 20:04                   ` Stephen Boyd
2023-03-29 20:04                     ` Stephen Boyd
2023-03-29 20:04                     ` Stephen Boyd
2022-11-04 13:18 ` [PATCH v2 44/65] clk: actions: composite: div: Switch to determine_rate Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 45/65] clk: actions: composite: fact: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 46/65] clk: at91: smd: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 47/65] clk: axi-clkgen: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 48/65] clk: cdce706: divider: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 49/65] clk: cdce706: clkout: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 50/65] clk: si5341: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 51/65] clk: si5351: pll: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 52/65] clk: si5351: msynth: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 53/65] clk: si5351: clkout: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 54/65] clk: da8xx: clk48: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 16:49   ` David Lechner
2022-11-04 16:49     ` David Lechner
2022-11-04 16:49     ` David Lechner
2022-11-07 14:52     ` Maxime Ripard
2022-11-07 14:52       ` Maxime Ripard
2022-11-07 14:52       ` Maxime Ripard
2022-11-07 14:52       ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 55/65] clk: imx: scu: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 56/65] clk: ingenic: cgu: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 14:31   ` Paul Cercueil
2022-11-04 14:31     ` Paul Cercueil
2022-11-04 14:31     ` Paul Cercueil
2022-11-04 14:31     ` Paul Cercueil
2022-11-04 14:59     ` Maxime Ripard
2022-11-04 14:59       ` Maxime Ripard
2022-11-04 14:59       ` Maxime Ripard
2022-11-04 14:59       ` Maxime Ripard
2022-11-04 17:35       ` Aidan MacDonald
2022-11-04 17:35         ` Aidan MacDonald
2022-11-04 17:35         ` Aidan MacDonald
2022-11-04 17:35         ` Aidan MacDonald
2022-11-07  8:54         ` Maxime Ripard
2022-11-07  8:54           ` Maxime Ripard
2022-11-07  8:54           ` Maxime Ripard
2022-11-07  8:54           ` Maxime Ripard
2022-11-07 20:57           ` Aidan MacDonald
2022-11-07 20:57             ` Aidan MacDonald
2022-11-07 20:57             ` Aidan MacDonald
2022-11-07 20:57             ` Aidan MacDonald
2022-11-09 11:00             ` Maxime Ripard
2022-11-09 11:00               ` Maxime Ripard
2022-11-09 11:00               ` Maxime Ripard
2022-11-09 11:00               ` Maxime Ripard
2023-03-22 23:41               ` Stephen Boyd
2023-03-22 23:41                 ` Stephen Boyd
2023-03-22 23:41                 ` Stephen Boyd
2023-03-23 15:35                 ` Aidan MacDonald
2023-03-23 15:35                   ` Aidan MacDonald
2023-03-23 15:35                   ` Aidan MacDonald
2023-03-23 15:35                   ` Aidan MacDonald
2023-03-24 11:19                   ` Maxime Ripard
2023-03-24 11:19                     ` Maxime Ripard
2023-03-24 11:19                     ` Maxime Ripard
2023-03-24 11:19                     ` Maxime Ripard
2023-03-24 20:58                     ` Aidan MacDonald
2023-03-24 20:58                       ` Aidan MacDonald
2023-03-24 20:58                       ` Aidan MacDonald
2023-03-24 20:58                       ` Aidan MacDonald
2023-03-27 19:24                       ` Maxime Ripard
2023-03-27 19:24                         ` Maxime Ripard
2023-03-27 19:24                         ` Maxime Ripard
2023-03-27 19:24                         ` Maxime Ripard
2023-04-05 12:57                         ` Paul Cercueil
2023-04-05 12:57                           ` Paul Cercueil
2023-04-05 12:57                           ` Paul Cercueil
2023-04-05 12:57                           ` Paul Cercueil
2023-04-05 14:50                           ` Maxime Ripard [this message]
2023-04-05 14:50                             ` Maxime Ripard
2023-04-05 14:50                             ` Maxime Ripard
2023-04-05 14:50                             ` Maxime Ripard
2023-04-05 15:29                             ` Paul Cercueil
2023-04-05 15:29                               ` Paul Cercueil
2023-04-05 15:29                               ` Paul Cercueil
2023-04-05 15:29                               ` Paul Cercueil
2022-11-05 10:33       ` Paul Cercueil
2022-11-05 10:33         ` Paul Cercueil
2022-11-05 10:33         ` Paul Cercueil
2022-11-05 10:33         ` Paul Cercueil
2022-11-09 10:53         ` Maxime Ripard
2022-11-09 10:53           ` Maxime Ripard
2022-11-09 10:53           ` Maxime Ripard
2022-11-09 10:53           ` Maxime Ripard
2022-11-09 11:36           ` Paul Cercueil
2022-11-09 11:36             ` Paul Cercueil
2022-11-09 11:36             ` Paul Cercueil
2022-11-09 11:36             ` Paul Cercueil
2022-11-04 13:18 ` [PATCH v2 57/65] clk: ingenic: tcu: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 58/65] clk: sprd: composite: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-09  2:43   ` Chunyan Zhang
2022-11-09  2:43     ` Chunyan Zhang
2022-11-09  2:43     ` Chunyan Zhang
2022-11-09  2:43     ` Chunyan Zhang
2022-11-04 13:18 ` [PATCH v2 59/65] clk: st: flexgen: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 60/65] clk: stm32: composite: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-05 14:51   ` kernel test robot
2022-11-04 13:18 ` [PATCH v2 61/65] clk: tegra: periph: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 62/65] clk: tegra: super: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 63/65] ASoC: tlv320aic32x4: pll: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 64/65] ASoC: tlv320aic32x4: div: " Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18 ` [PATCH v2 65/65] clk: Warn if we register a mux without determine_rate Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-04 13:18   ` Maxime Ripard
2022-11-07 10:56   ` Charles Keepax
2022-11-07 10:56     ` Charles Keepax
2022-11-07 10:56     ` Charles Keepax
2022-11-07 10:56     ` Charles Keepax
2023-03-21 23:55 ` [PATCH v2 00/65] clk: Make determine_rate mandatory for muxes Stephen Boyd
2023-03-21 23:55   ` Stephen Boyd
2023-03-22 10:01   ` Maxime Ripard
2023-03-22 10:01     ` Maxime Ripard
2023-03-22 10:01     ` Maxime Ripard
2023-03-22 10:01     ` Maxime Ripard
2023-03-22 15:19     ` Stephen Boyd
2023-03-22 15:19       ` Stephen Boyd
2023-03-22 15:19       ` Stephen Boyd

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=g24dkwtsobslw6qdvs4vbcdmk2txrlrephm5zmlff2fusrxheo@mqxrprzctymk \
    --to=maxime@cerno.tech \
    --cc=a.zummo@towertech.it \
    --cc=abelvesa@kernel.org \
    --cc=afaerber@suse.de \
    --cc=aidanmacdonald.0x0@gmail.com \
    --cc=airlied@gmail.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=baolin.wang@linux.alibaba.com \
    --cc=broonie@kernel.org \
    --cc=ckeepax@opensource.cirrus.com \
    --cc=claudiu.beznea@microchip.com \
    --cc=daniel@ffwll.ch \
    --cc=david@lechnology.com \
    --cc=dinguyen@kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=festevam@gmail.com \
    --cc=geert+renesas@glider.be \
    --cc=jcmvbkbc@gmail.com \
    --cc=jernej.skrabec@gmail.com \
    --cc=jonathanh@nvidia.com \
    --cc=kernel@pengutronix.de \
    --cc=kishon@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-actions@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=linux-phy@lists.infradead.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=linux-rtc@vger.kernel.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=linux-tegra@vger.kernel.org \
    --cc=luca.ceresoli@bootlin.com \
    --cc=mani@kernel.org \
    --cc=matthias.bgg@gmail.com \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=mturquette@baylibre.com \
    --cc=nicolas.ferre@microchip.com \
    --cc=nsekhar@ti.com \
    --cc=orsonzhai@gmail.com \
    --cc=patches@opensource.cirrus.com \
    --cc=paul@crapouillou.net \
    --cc=pdeschrijver@nvidia.com \
    --cc=perex@perex.cz \
    --cc=pgaikwad@nvidia.com \
    --cc=rf@opensource.cirrus.com \
    --cc=s.hauer@pengutronix.de \
    --cc=samuel@sholland.org \
    --cc=sboyd@kernel.org \
    --cc=shawnguo@kernel.org \
    --cc=thierry.reding@gmail.com \
    --cc=tiwai@suse.com \
    --cc=ulf.hansson@linaro.org \
    --cc=vkoul@kernel.org \
    --cc=wens@csie.org \
    --cc=zhang.lyra@gmail.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.