mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2 0/2] loongson2 clk: introduce ls2k1000 specific compatible
@ 2026-03-22 15:08 wjjsn
       [not found] ` <tencent_78A85ECCF65F70A7A24D63BF52A6BD03320A@qq.com>
  0 siblings, 1 reply; 4+ messages in thread
From: wjjsn @ 2026-03-22 15:08 UTC (permalink / raw)
  To: robh, krzk+dt, conor+dt, chenhuacai, zhuyinbo, mturquette, sboyd
  Cc: linux-clk, linux-kernel, loongarch, kernel, devicetree, wjjsn

Changes in v2:
- Use 'deprecated: true' property for the old compatible string 
    instead of just describing it in human language, as suggested 
    by Yao Zi.
- In the example, the 'loongson,ls2k-clk' 
    has been changed to 'loongson,ls2k1000-clk'
- The order in loongson2_clk_match_table has been adjusted

The "loongson,ls2k-clk" compatible is currently used for the
Loongson-2K1000 clock controller, despite being generic.

This series introduces a SoC-specific compatible
"loongson,ls2k1000-clk" to make the binding more precise and
consistent with other Loongson-2 variants.

The existing "loongson,ls2k-clk" is retained as a deprecated
fallback for backward compatibility.

Patch 1 updates the devicetree binding documentation.
Patch 2 adds driver support and updates the DTS.

Regards,
wjjsn

wjjsn (2):
  dt-bindings: clock: loongson,ls2k: Add ls2k1000 compatible and
    deprecate legacy
  clk: loongson2: Add ls2k1000 compatible

 .../bindings/clock/loongson,ls2k-clk.yaml         | 15 +++++++++------
 arch/loongarch/boot/dts/loongson-2k1000.dtsi      |  2 +-
 drivers/clk/clk-loongson2.c                       |  3 ++-
 3 files changed, 12 insertions(+), 8 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2 0/2] loongson2 clk: introduce ls2k1000 specific compatible
       [not found] ` <tencent_78A85ECCF65F70A7A24D63BF52A6BD03320A@qq.com>
@ 2026-03-22 20:30   ` Krzysztof Kozlowski
  2026-03-24 15:40     ` wjjsn
  0 siblings, 1 reply; 4+ messages in thread
From: Krzysztof Kozlowski @ 2026-03-22 20:30 UTC (permalink / raw)
  To: wjjsn, robh, krzk+dt, conor+dt, chenhuacai, zhuyinbo, mturquette, sboyd
  Cc: linux-clk, linux-kernel, loongarch, kernel, devicetree

On 22/03/2026 16:27, wjjsn@qq.com wrote:
> Please ignore this series. I mistakenly labeled it as v2 (again). I have just sent out v3 which supersedes this one. Sorry for the noise.
> 
> 

Can you slow down and read the feedback you received?

Best regards,
Krzysztof

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2 0/2] loongson2 clk: introduce ls2k1000 specific compatible
  2026-03-22 20:30   ` Krzysztof Kozlowski
@ 2026-03-24 15:40     ` wjjsn
  0 siblings, 0 replies; 4+ messages in thread
From: wjjsn @ 2026-03-24 15:40 UTC (permalink / raw)
  To: Krzysztof Kozlowski, robh, krzk+dt, conor+dt, chenhuacai,
	zhuyinbo, mturquette, sboyd
  Cc: linux-clk, linux-kernel, loongarch, kernel, devicetree

On 3/23/26 04:30, Krzysztof Kozlowski wrote:
> On 22/03/2026 16:27, wjjsn@qq.com wrote:
>> Please ignore this series. I mistakenly labeled it as v2 (again). I have just sent out v3 which supersedes this one. Sorry for the noise.
>>
>>
> 
> Can you slow down and read the feedback you received?
> 
> Best regards,
> Krzysztof

I just saw the mail now.
I'm really, really sorry.

I don't know why all the emails you sent me
were classified as spam.
Next, I will carefully review the feedback
you provided and make thorough revisions.

I'm really, really sorry

Best Regards,
wjjsn


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2 0/2] loongson2 clk: introduce ls2k1000 specific compatible
@ 2026-03-22  8:19 wjjsn
  0 siblings, 0 replies; 4+ 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

Changes in v2:
- Consistently use wjjsn <wjjsn@qq.com> for both Author and Signed-off-by fields.

The "loongson,ls2k-clk" compatible is currently used for the
Loongson-2K1000 clock controller, despite being generic.

This series introduces a SoC-specific compatible
"loongson,ls2k1000-clk" to make the binding more precise and
consistent with other Loongson-2 variants.

The existing "loongson,ls2k-clk" is retained as a deprecated
fallback for backward compatibility.

Patch 1 updates the devicetree binding documentation.
Patch 2 adds driver support and updates the DTS.

wjjsn (2):
  dt-bindings: clock: loongson,ls2k: add ls2k1000 compatible
  clk: loongson2: add support for ls2k1000 compatible

 .../devicetree/bindings/clock/loongson,ls2k-clk.yaml        | 6 +++++-
 arch/loongarch/boot/dts/loongson-2k1000.dtsi                | 2 +-
 drivers/clk/clk-loongson2.c                                 | 1 +
 3 files changed, 7 insertions(+), 2 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-03-24 15:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-03-22 15:08 [PATCH v2 0/2] loongson2 clk: introduce ls2k1000 specific compatible wjjsn
     [not found] ` <tencent_78A85ECCF65F70A7A24D63BF52A6BD03320A@qq.com>
2026-03-22 20:30   ` Krzysztof Kozlowski
2026-03-24 15:40     ` wjjsn
  -- strict thread matches above, loose matches on Subject: below --
2026-03-22  8:19 wjjsn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®