* [PATCH v2 1/2] dt-bindings: clock: loongson,ls2k: add ls2k1000 compatible [not found] <20260322081915.1626723-1-wjjsn@qq.com> @ 2026-03-22 8:19 ` wjjsn 2026-03-22 12:54 ` Yao Zi 2026-03-22 8:19 ` [PATCH v2 2/2] clk: loongson2: add support for " wjjsn 1 sibling, 1 reply; 3+ messages in thread From: wjjsn @ 2026-03-22 8:19 UTC (permalink / raw) To: robh, krzk+dt, conor+dt, chenhuacai, zhuyinbo, mturquette, sboyd Cc: linux-clk, linux-kernel, loongarch, kernel, devicetree, wjjsn Add a SoC-specific "loongson,ls2k1000-clk" compatible. Retain the existing "loongson,ls2k-clk" as a deprecated fallback for backward compatibility. Signed-off-by: wjjsn <wjjsn@qq.com> --- .../devicetree/bindings/clock/loongson,ls2k-clk.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml b/Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml index c07ad1f85857..4d70bc4e7a13 100644 --- a/Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml +++ b/Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml @@ -13,12 +13,16 @@ description: | Loongson-2 SoC clock control module is an integrated clock controller, which generates and supplies to all modules. + The "loongson,ls2k1000-clk" string should be used for Loongson-2K1000. + The "loongson,ls2k-clk" string is kept as a fallback for backward compatibility for Loongson-2K1000. + properties: compatible: enum: - loongson,ls2k0300-clk - loongson,ls2k0500-clk - - loongson,ls2k-clk # This is for Loongson-2K1000 + - loongson,ls2k-clk + - loongson,ls2k1000-clk - loongson,ls2k2000-clk reg: -- 2.43.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: clock: loongson,ls2k: add ls2k1000 compatible 2026-03-22 8:19 ` [PATCH v2 1/2] dt-bindings: clock: loongson,ls2k: add ls2k1000 compatible wjjsn @ 2026-03-22 12:54 ` Yao Zi 0 siblings, 0 replies; 3+ messages in thread From: Yao Zi @ 2026-03-22 12:54 UTC (permalink / raw) To: wjjsn, robh, krzk+dt, conor+dt, chenhuacai, zhuyinbo, mturquette, sboyd Cc: linux-clk, linux-kernel, loongarch, kernel, devicetree On Sun, Mar 22, 2026 at 04:19:14PM +0800, wjjsn wrote: > Add a SoC-specific "loongson,ls2k1000-clk" compatible. > Retain the existing "loongson,ls2k-clk" as a deprecated fallback > for backward compatibility. > > Signed-off-by: wjjsn <wjjsn@qq.com> > --- > .../devicetree/bindings/clock/loongson,ls2k-clk.yaml | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml b/Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml > index c07ad1f85857..4d70bc4e7a13 100644 > --- a/Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml > +++ b/Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml > @@ -13,12 +13,16 @@ description: | > Loongson-2 SoC clock control module is an integrated clock controller, which > generates and supplies to all modules. > > + The "loongson,ls2k1000-clk" string should be used for Loongson-2K1000. > + The "loongson,ls2k-clk" string is kept as a fallback for backward compatibility for Loongson-2K1000. > + > properties: > compatible: > enum: > - loongson,ls2k0300-clk > - loongson,ls2k0500-clk > - - loongson,ls2k-clk # This is for Loongson-2K1000 > + - loongson,ls2k-clk > + - loongson,ls2k1000-clk If you want to deprecate loongson,ls2k-clk, you should probably mark it as "deprecated: true", instead of describing such situation in human language. I don't have a strong opinion on the change, but I don't think it improves the situation much. We still need to document the historical compatible in bindings and support it in driver, the only thing gets improved is a slightly more clear compatible name in devicetree. However, even if someone is confused by the current compatible, they could have a look in the binding and get an explanation quickly. Regards, Yao Zi > - loongson,ls2k2000-clk > > reg: > -- > 2.43.0 > > ^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v2 2/2] clk: loongson2: add support for ls2k1000 compatible [not found] <20260322081915.1626723-1-wjjsn@qq.com> 2026-03-22 8:19 ` [PATCH v2 1/2] dt-bindings: clock: loongson,ls2k: add ls2k1000 compatible wjjsn @ 2026-03-22 8:19 ` wjjsn 1 sibling, 0 replies; 3+ messages in thread From: wjjsn @ 2026-03-22 8:19 UTC (permalink / raw) To: robh, krzk+dt, conor+dt, chenhuacai, zhuyinbo, mturquette, sboyd Cc: linux-clk, linux-kernel, loongarch, kernel, devicetree, wjjsn Add driver support for the "loongson,ls2k1000-clk" compatible and update the Loongson-2K1000 DTS to use it while retaining "loongson,ls2k-clk" as a fallback. Signed-off-by: wjjsn <wjjsn@qq.com> --- arch/loongarch/boot/dts/loongson-2k1000.dtsi | 2 +- drivers/clk/clk-loongson2.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/loongarch/boot/dts/loongson-2k1000.dtsi b/arch/loongarch/boot/dts/loongson-2k1000.dtsi index ab6a55937e9e..61cdae438cb0 100644 --- a/arch/loongarch/boot/dts/loongson-2k1000.dtsi +++ b/arch/loongarch/boot/dts/loongson-2k1000.dtsi @@ -156,7 +156,7 @@ pctrl: pinctrl@1fe00420 { }; clk: clock-controller@1fe00480 { - compatible = "loongson,ls2k-clk"; + compatible = "loongson,ls2k1000-clk", "loongson,ls2k-clk"; reg = <0x0 0x1fe00480 0x0 0x58>; #clock-cells = <1>; clocks = <&ref_100m>; diff --git a/drivers/clk/clk-loongson2.c b/drivers/clk/clk-loongson2.c index 9c4c6c99db3e..48d00578b26f 100644 --- a/drivers/clk/clk-loongson2.c +++ b/drivers/clk/clk-loongson2.c @@ -441,6 +441,7 @@ static const struct of_device_id loongson2_clk_match_table[] = { { .compatible = "loongson,ls2k0300-clk", .data = &ls2k0300_clks }, { .compatible = "loongson,ls2k0500-clk", .data = &ls2k0500_clks }, { .compatible = "loongson,ls2k-clk", .data = &ls2k1000_clks }, + { .compatible = "loongson,ls2k1000-clk", .data = &ls2k1000_clks }, { .compatible = "loongson,ls2k2000-clk", .data = &ls2k2000_clks }, { } }; -- 2.43.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-22 12:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260322081915.1626723-1-wjjsn@qq.com>
2026-03-22 8:19 ` [PATCH v2 1/2] dt-bindings: clock: loongson,ls2k: add ls2k1000 compatible wjjsn
2026-03-22 12:54 ` Yao Zi
2026-03-22 8:19 ` [PATCH v2 2/2] clk: loongson2: add support for " wjjsn
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox