Message ID | 20241023-axi-clkgen-fix-axiclk-v1-1-980a42ba51c3@analog.com (mailing list archive) |
---|---|
State | Changes Requested, archived |
Headers | show |
Series | clk: clk-axi-clkgen: make sure to enable the AXI bus clock | expand |
On Wed, Oct 23, 2024 at 04:56:54PM +0200, Nuno Sa wrote: > In order to access the registers of the HW, we need to make sure that > the AXI bus clock is enabled. Hence let's increase the number of clocks > by one. > > In order to keep backward compatibility, the new axi clock must be the > last phandle in the array. To make the intent clear, a non mandatory > clock-names property is also being added. Hmm, I'm not sure. I think clock-names actually may need to be mandatory here, as otherwise you'll not what the second clock is. The driver would have to interpret no clock-names meaning clock 2 was clkin2. > > Fixes: 0e646c52cf0e ("clk: Add axi-clkgen driver") > Signed-off-by: Nuno Sa <nuno.sa@analog.com> > --- > .../devicetree/bindings/clock/adi,axi-clkgen.yaml | 21 +++++++++++++++++---- > 1 file changed, 17 insertions(+), 4 deletions(-) > > diff --git a/Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml b/Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml > index 5e942bccf27787d7029f76fc1a284232fb7f279d..f5f80e61c119b8a68cb6e7a26ed275764f8d200f 100644 > --- a/Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml > +++ b/Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml > @@ -26,9 +26,21 @@ properties: > description: > Specifies the reference clock(s) from which the output frequency is > derived. This must either reference one clock if only the first clock > - input is connected or two if both clock inputs are connected. > - minItems: 1 > - maxItems: 2 > + input is connected or two if both clock inputs are connected. The last > + clock is the AXI bus clock that needs to be enabled so we can access the > + core registers. > + minItems: 2 > + maxItems: 3 > + > + clock-names: > + oneOf: > + - items: > + - const: clkin1 > + - const: s_axi_aclk > + - items: > + - const: clkin1 > + - const: clkin2 > + - const: s_axi_aclk > > '#clock-cells': > const: 0 > @@ -50,5 +62,6 @@ examples: > compatible = "adi,axi-clkgen-2.00.a"; > #clock-cells = <0>; > reg = <0xff000000 0x1000>; > - clocks = <&osc 1>; > + clocks = <&osc 1>, <&clkc 15>; > + clock-names = "clkin1", "s_axi_aclk"; > }; > > -- > 2.47.0 >
On Wed, 2024-10-23 at 17:30 +0100, Conor Dooley wrote: > On Wed, Oct 23, 2024 at 04:56:54PM +0200, Nuno Sa wrote: > > In order to access the registers of the HW, we need to make sure that > > the AXI bus clock is enabled. Hence let's increase the number of clocks > > by one. > > > > In order to keep backward compatibility, the new axi clock must be the > > last phandle in the array. To make the intent clear, a non mandatory > > clock-names property is also being added. > > Hmm, I'm not sure. I think clock-names actually may need to be mandatory > here, as otherwise you'll not what the second clock is. The driver would > have to interpret no clock-names meaning clock 2 was clkin2. > > So the way things are now is that we just get the parents count with of_clk_get_parent_count() and then get the names with of_clk_get_parent_name() and this is given into 'struct clk_init_data'. So they are effectively clk_parents of the clock we're registering and as you can see clock-names does not really matter. What I'm trying to do is to keep this and still allow to get the AXI bus clock which is something we should get and enable and not rely on others to do it. The idea is then to add the axi bus clock as the last one in the clocks property and I will get it by index with of_clk_get(). The rest pretty much remains the same and we just need to decrement by one the number of parent clocks as the axi clock is not really a parent of our output clock. All that said, and FWIW, clock-names are not even being used in the driver. I just added it to the bindings to make the intent clear. I could have it in the driver but I'm not sure the extra complexity would be worth it... - Nuno Sá
On Thu, Oct 24, 2024 at 02:35:37PM +0200, Nuno Sá wrote: > On Wed, 2024-10-23 at 17:30 +0100, Conor Dooley wrote: > > On Wed, Oct 23, 2024 at 04:56:54PM +0200, Nuno Sa wrote: > > > In order to access the registers of the HW, we need to make sure that > > > the AXI bus clock is enabled. Hence let's increase the number of clocks > > > by one. > > > > > > In order to keep backward compatibility, the new axi clock must be the > > > last phandle in the array. To make the intent clear, a non mandatory > > > clock-names property is also being added. > > > > Hmm, I'm not sure. I think clock-names actually may need to be mandatory > > here, as otherwise you'll not what the second clock is. The driver would > > have to interpret no clock-names meaning clock 2 was clkin2. > > > > > > So the way things are now is that we just get the parents count with > of_clk_get_parent_count() and then get the names with of_clk_get_parent_name() and > this is given into 'struct clk_init_data'. So they are effectively clk_parents of the > clock we're registering and as you can see clock-names does not really matter. What > I'm trying to do is to keep this and still allow to get the AXI bus clock which is > something we should get and enable and not rely on others to do it. The idea is then > to add the axi bus clock as the last one in the clocks property and I will get it by > index with of_clk_get(). The rest pretty much remains the same and we just need to > decrement by one the number of parent clocks as the axi clock is not really a parent > of our output clock. I mean, if it works, and you can always disambiguate between whether or not someone has two clkins or one clkin and the axi clock, then Acked-by: Conor Dooley <conor.dooley@microchip.com>
On Thu, 2024-10-24 at 17:13 +0100, Conor Dooley wrote: > On Thu, Oct 24, 2024 at 02:35:37PM +0200, Nuno Sá wrote: > > On Wed, 2024-10-23 at 17:30 +0100, Conor Dooley wrote: > > > On Wed, Oct 23, 2024 at 04:56:54PM +0200, Nuno Sa wrote: > > > > In order to access the registers of the HW, we need to make sure that > > > > the AXI bus clock is enabled. Hence let's increase the number of clocks > > > > by one. > > > > > > > > In order to keep backward compatibility, the new axi clock must be the > > > > last phandle in the array. To make the intent clear, a non mandatory > > > > clock-names property is also being added. > > > > > > Hmm, I'm not sure. I think clock-names actually may need to be mandatory > > > here, as otherwise you'll not what the second clock is. The driver would > > > have to interpret no clock-names meaning clock 2 was clkin2. > > > > > > > > > > So the way things are now is that we just get the parents count with > > of_clk_get_parent_count() and then get the names with of_clk_get_parent_name() > > and > > this is given into 'struct clk_init_data'. So they are effectively clk_parents of > > the > > clock we're registering and as you can see clock-names does not really matter. > > What > > I'm trying to do is to keep this and still allow to get the AXI bus clock which > > is > > something we should get and enable and not rely on others to do it. The idea is > > then > > to add the axi bus clock as the last one in the clocks property and I will get it > > by > > index with of_clk_get(). The rest pretty much remains the same and we just need > > to > > decrement by one the number of parent clocks as the axi clock is not really a > > parent > > of our output clock. > > I mean, if it works, and you can always disambiguate between whether or > not someone has two clkins or one clkin and the axi clock, then > Acked-by: Conor Dooley <conor.dooley@microchip.com> The assumption is that the axi clock is the last one in the phandle array. But your comment made me think a bit more about this and I do see a possible problem if we run old DTs against a kernel with this patch. We have two possibilities: 1) DT only with one parent clock; 2) DT with two parent clocks; 1) is "fine" as it would now fail to probe. 2) is more problematic as we would assume the second parent to be the axi_bus clock so effectively not fixing anything and silently probing with a broken setup. So yeah, I think I overthinked the backward compatibility thing. I mean, in theory, all old DTs are not correct and should be fixed by including the axi_clk. And if we now enforce clock-names we at least get probe errors right away making it clear (which is far better from silently breaking after probe). Given the above, it should be fine to just enforce clock-names now, right? - Nuno Sá
On Fri, Oct 25, 2024 at 08:56:34AM +0200, Nuno Sá wrote: > On Thu, 2024-10-24 at 17:13 +0100, Conor Dooley wrote: > > On Thu, Oct 24, 2024 at 02:35:37PM +0200, Nuno Sá wrote: > > > On Wed, 2024-10-23 at 17:30 +0100, Conor Dooley wrote: > > > > On Wed, Oct 23, 2024 at 04:56:54PM +0200, Nuno Sa wrote: > > > > > In order to access the registers of the HW, we need to make sure that > > > > > the AXI bus clock is enabled. Hence let's increase the number of clocks > > > > > by one. > > > > > > > > > > In order to keep backward compatibility, the new axi clock must be the > > > > > last phandle in the array. To make the intent clear, a non mandatory > > > > > clock-names property is also being added. > > > > > > > > Hmm, I'm not sure. I think clock-names actually may need to be mandatory > > > > here, as otherwise you'll not what the second clock is. The driver would > > > > have to interpret no clock-names meaning clock 2 was clkin2. > > > > > > > > > > > > > > So the way things are now is that we just get the parents count with > > > of_clk_get_parent_count() and then get the names with of_clk_get_parent_name() > > > and > > > this is given into 'struct clk_init_data'. So they are effectively clk_parents of > > > the > > > clock we're registering and as you can see clock-names does not really matter. > > > What > > > I'm trying to do is to keep this and still allow to get the AXI bus clock which > > > is > > > something we should get and enable and not rely on others to do it. The idea is > > > then > > > to add the axi bus clock as the last one in the clocks property and I will get it > > > by > > > index with of_clk_get(). The rest pretty much remains the same and we just need > > > to > > > decrement by one the number of parent clocks as the axi clock is not really a > > > parent > > > of our output clock. > > > > I mean, if it works, and you can always disambiguate between whether or > > not someone has two clkins or one clkin and the axi clock, then > > Acked-by: Conor Dooley <conor.dooley@microchip.com> > > The assumption is that the axi clock is the last one in the phandle array. But your > comment made me think a bit more about this and I do see a possible problem if we run > old DTs against a kernel with this patch. We have two possibilities: > > 1) DT only with one parent clock; > 2) DT with two parent clocks; > > 1) is "fine" as it would now fail to probe. 2) is more problematic as we would assume > the second parent to be the axi_bus clock so effectively not fixing anything and > silently probing with a broken setup. > > So yeah, I think I overthinked the backward compatibility thing. I mean, in theory, > all old DTs are not correct and should be fixed by including the axi_clk. And if we > now enforce clock-names we at least get probe errors right away making it clear > (which is far better from silently breaking after probe). > > Given the above, it should be fine to just enforce clock-names now, right? I think you need to enforce clock-names in the binding and take !clock-names and 2 clocks to mean that the second one is a clkin. I think that's a better solution than failing to probe for all extant devicestrees.
On Fri, 2024-10-25 at 17:47 +0100, Conor Dooley wrote: > On Fri, Oct 25, 2024 at 08:56:34AM +0200, Nuno Sá wrote: > > On Thu, 2024-10-24 at 17:13 +0100, Conor Dooley wrote: > > > On Thu, Oct 24, 2024 at 02:35:37PM +0200, Nuno Sá wrote: > > > > On Wed, 2024-10-23 at 17:30 +0100, Conor Dooley wrote: > > > > > On Wed, Oct 23, 2024 at 04:56:54PM +0200, Nuno Sa wrote: > > > > > > In order to access the registers of the HW, we need to make sure that > > > > > > the AXI bus clock is enabled. Hence let's increase the number of clocks > > > > > > by one. > > > > > > > > > > > > In order to keep backward compatibility, the new axi clock must be the > > > > > > last phandle in the array. To make the intent clear, a non mandatory > > > > > > clock-names property is also being added. > > > > > > > > > > Hmm, I'm not sure. I think clock-names actually may need to be mandatory > > > > > here, as otherwise you'll not what the second clock is. The driver would > > > > > have to interpret no clock-names meaning clock 2 was clkin2. > > > > > > > > > > > > > > > > > > So the way things are now is that we just get the parents count with > > > > of_clk_get_parent_count() and then get the names with > > > > of_clk_get_parent_name() > > > > and > > > > this is given into 'struct clk_init_data'. So they are effectively > > > > clk_parents of > > > > the > > > > clock we're registering and as you can see clock-names does not really > > > > matter. > > > > What > > > > I'm trying to do is to keep this and still allow to get the AXI bus clock > > > > which > > > > is > > > > something we should get and enable and not rely on others to do it. The idea > > > > is > > > > then > > > > to add the axi bus clock as the last one in the clocks property and I will > > > > get it > > > > by > > > > index with of_clk_get(). The rest pretty much remains the same and we just > > > > need > > > > to > > > > decrement by one the number of parent clocks as the axi clock is not really a > > > > parent > > > > of our output clock. > > > > > > I mean, if it works, and you can always disambiguate between whether or > > > not someone has two clkins or one clkin and the axi clock, then > > > Acked-by: Conor Dooley <conor.dooley@microchip.com> > > > > The assumption is that the axi clock is the last one in the phandle array. But > > your > > comment made me think a bit more about this and I do see a possible problem if we > > run > > old DTs against a kernel with this patch. We have two possibilities: > > > > 1) DT only with one parent clock; > > 2) DT with two parent clocks; > > > > 1) is "fine" as it would now fail to probe. 2) is more problematic as we would > > assume > > the second parent to be the axi_bus clock so effectively not fixing anything and > > silently probing with a broken setup. > > > > So yeah, I think I overthinked the backward compatibility thing. I mean, in > > theory, > > all old DTs are not correct and should be fixed by including the axi_clk. And if > > we > > now enforce clock-names we at least get probe errors right away making it clear > > (which is far better from silently breaking after probe). > > > > Given the above, it should be fine to just enforce clock-names now, right? > > I think you need to enforce clock-names in the binding and take > !clock-names and 2 clocks to mean that the second one is a clkin. I > think that's a better solution than failing to probe for all extant > devicestrees. Ok, so IIUC, you mean leaving old DTs as of today and relying on someone else to enable the axi clock (if it was not enabled they would have noticed by now). And only take care of the bus clock when clock-names is provided? - Nuno Sá
On Mon, Oct 28, 2024 at 03:01:44PM +0100, Nuno Sá wrote: > > > The assumption is that the axi clock is the last one in the phandle array. But > > > your > > > comment made me think a bit more about this and I do see a possible problem if we > > > run > > > old DTs against a kernel with this patch. We have two possibilities: > > > > > > 1) DT only with one parent clock; > > > 2) DT with two parent clocks; > > > > > > 1) is "fine" as it would now fail to probe. 2) is more problematic as we would > > > assume > > > the second parent to be the axi_bus clock so effectively not fixing anything and > > > silently probing with a broken setup. > > > > > > So yeah, I think I overthinked the backward compatibility thing. I mean, in > > > theory, > > > all old DTs are not correct and should be fixed by including the axi_clk. And if > > > we > > > now enforce clock-names we at least get probe errors right away making it clear > > > (which is far better from silently breaking after probe). > > > > > > Given the above, it should be fine to just enforce clock-names now, right? > > > > I think you need to enforce clock-names in the binding and take > > !clock-names and 2 clocks to mean that the second one is a clkin. I > > think that's a better solution than failing to probe for all extant > > devicestrees. > > Ok, so IIUC, you mean leaving old DTs as of today and relying on someone else to > enable the axi clock (if it was not enabled they would have noticed by now). Yea. Obviously any old dts within reach (so those in-tree) should be updated to have the missing third clock, but as we can't be sure we have changed all users, so the driver must retain its current functionality with the old devicetrees. > And only > take care of the bus clock when clock-names is provided? Yup.
diff --git a/Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml b/Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml index 5e942bccf27787d7029f76fc1a284232fb7f279d..f5f80e61c119b8a68cb6e7a26ed275764f8d200f 100644 --- a/Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml +++ b/Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml @@ -26,9 +26,21 @@ properties: description: Specifies the reference clock(s) from which the output frequency is derived. This must either reference one clock if only the first clock - input is connected or two if both clock inputs are connected. - minItems: 1 - maxItems: 2 + input is connected or two if both clock inputs are connected. The last + clock is the AXI bus clock that needs to be enabled so we can access the + core registers. + minItems: 2 + maxItems: 3 + + clock-names: + oneOf: + - items: + - const: clkin1 + - const: s_axi_aclk + - items: + - const: clkin1 + - const: clkin2 + - const: s_axi_aclk '#clock-cells': const: 0 @@ -50,5 +62,6 @@ examples: compatible = "adi,axi-clkgen-2.00.a"; #clock-cells = <0>; reg = <0xff000000 0x1000>; - clocks = <&osc 1>; + clocks = <&osc 1>, <&clkc 15>; + clock-names = "clkin1", "s_axi_aclk"; };
In order to access the registers of the HW, we need to make sure that the AXI bus clock is enabled. Hence let's increase the number of clocks by one. In order to keep backward compatibility, the new axi clock must be the last phandle in the array. To make the intent clear, a non mandatory clock-names property is also being added. Fixes: 0e646c52cf0e ("clk: Add axi-clkgen driver") Signed-off-by: Nuno Sa <nuno.sa@analog.com> --- .../devicetree/bindings/clock/adi,axi-clkgen.yaml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-)