public inbox for linux-riscv@lists.infradead.org
 help / color / mirror / Atom feed
* [GIT PULL] RISC-V Sophgo SG2042 clock drivers for v6.11
@ 2024-06-14  7:28 Chen Wang
  2024-06-27 10:26 ` Chen Wang
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Chen Wang @ 2024-06-14  7:28 UTC (permalink / raw)
  To: Stephen Boyd, linux-clk
  Cc: Conor Dooley, linux-riscv, Inochi Amaoto, Xiaoguang Xing,
	haijiao.liu, Chao Wei, unicorn_wang

Hey, Stephen,

Please pull clock changes for RISC-V/Sophgo/SG2042.

For dts part, I will handle it at my side.

I send this PR just want to expedite patches for this clock driver. The 
patches have gone through 16 rounds of review [1], and I have carefully 
checked and revised all of them based on everyone's comments.

Link: 
https://lore.kernel.org/linux-riscv/cover.1717661798.git.unicorn_wang@outlook.com/ 
[1]

Thanks,
Chen.

The following changes since commit 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0:

   Linux 6.10-rc1 (2024-05-26 15:20:12 -0700)

are available in the Git repository at:

   https://github.com/sophgo/linux.git tags/riscv-sg2042-clk-for-v6.11

for you to fetch changes up to 48cf7e01386e7e35ea12255bc401bdd484c34e7d:

   clk: sophgo: Add SG2042 clock driver (2024-06-14 14:49:40 +0800)

----------------------------------------------------------------
RISC-V SG2042 clock driver changes for v6.11

Sophgo:
Added clock support for sg2042

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>

----------------------------------------------------------------
Chen Wang (4):
       dt-bindings: clock: sophgo: add pll clocks for SG2042
       dt-bindings: clock: sophgo: add RP gate clocks for SG2042
       dt-bindings: clock: sophgo: add clkgen for SG2042
       clk: sophgo: Add SG2042 clock driver

  Documentation/devicetree/bindings/clock/sophgo,sg2042-clkgen.yaml |   
61 +++++
  Documentation/devicetree/bindings/clock/sophgo,sg2042-pll.yaml |   53 ++++
  Documentation/devicetree/bindings/clock/sophgo,sg2042-rpgate.yaml |   
49 ++++
  drivers/clk/sophgo/Kconfig |   28 +++
  drivers/clk/sophgo/Makefile |    4 +
  drivers/clk/sophgo/clk-sg2042-clkgen.c | 1152 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  drivers/clk/sophgo/clk-sg2042-pll.c |  570 
++++++++++++++++++++++++++++++++++++++++++
  drivers/clk/sophgo/clk-sg2042-rpgate.c |  291 +++++++++++++++++++++
  drivers/clk/sophgo/clk-sg2042.h |   18 ++
  include/dt-bindings/clock/sophgo,sg2042-clkgen.h |  111 ++++++++
  include/dt-bindings/clock/sophgo,sg2042-pll.h |   14 ++
  include/dt-bindings/clock/sophgo,sg2042-rpgate.h |   58 +++++
  12 files changed, 2409 insertions(+)
  create mode 100644 
Documentation/devicetree/bindings/clock/sophgo,sg2042-clkgen.yaml
  create mode 100644 
Documentation/devicetree/bindings/clock/sophgo,sg2042-pll.yaml
  create mode 100644 
Documentation/devicetree/bindings/clock/sophgo,sg2042-rpgate.yaml
  create mode 100644 drivers/clk/sophgo/clk-sg2042-clkgen.c
  create mode 100644 drivers/clk/sophgo/clk-sg2042-pll.c
  create mode 100644 drivers/clk/sophgo/clk-sg2042-rpgate.c
  create mode 100644 drivers/clk/sophgo/clk-sg2042.h
  create mode 100644 include/dt-bindings/clock/sophgo,sg2042-clkgen.h
  create mode 100644 include/dt-bindings/clock/sophgo,sg2042-pll.h
  create mode 100644 include/dt-bindings/clock/sophgo,sg2042-rpgate.h



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

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

* Re: [GIT PULL] RISC-V Sophgo SG2042 clock drivers for v6.11
  2024-06-14  7:28 [GIT PULL] RISC-V Sophgo SG2042 clock drivers for v6.11 Chen Wang
@ 2024-06-27 10:26 ` Chen Wang
  2024-07-05 12:38   ` Chen Wang
  2024-07-08 18:56 ` Stephen Boyd
  2024-07-23 12:58 ` patchwork-bot+linux-riscv
  2 siblings, 1 reply; 5+ messages in thread
From: Chen Wang @ 2024-06-27 10:26 UTC (permalink / raw)
  To: Stephen Boyd, linux-clk
  Cc: Conor Dooley, linux-riscv, Inochi Amaoto, Xiaoguang Xing,
	haijiao.liu, Chao Wei

Hi, Stephen,

Is it ok for you to pull this patchset? I readlly hope we can get this 
in v6.11.

Thanks,

Chen.


On 2024/6/14 15:28, Chen Wang wrote:
> Hey, Stephen,
>
> Please pull clock changes for RISC-V/Sophgo/SG2042.
>
> For dts part, I will handle it at my side.
>
> I send this PR just want to expedite patches for this clock driver. 
> The patches have gone through 16 rounds of review [1], and I have 
> carefully checked and revised all of them based on everyone's comments.
>
> Link: 
> https://lore.kernel.org/linux-riscv/cover.1717661798.git.unicorn_wang@outlook.com/ 
> [1]
>
> Thanks,
> Chen.
>
> The following changes since commit 
> 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0:
>
>   Linux 6.10-rc1 (2024-05-26 15:20:12 -0700)
>
> are available in the Git repository at:
>
>   https://github.com/sophgo/linux.git tags/riscv-sg2042-clk-for-v6.11
>
> for you to fetch changes up to 48cf7e01386e7e35ea12255bc401bdd484c34e7d:
>
>   clk: sophgo: Add SG2042 clock driver (2024-06-14 14:49:40 +0800)
>
> ----------------------------------------------------------------
> RISC-V SG2042 clock driver changes for v6.11
>
> Sophgo:
> Added clock support for sg2042
>
> Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
>
> ----------------------------------------------------------------
> Chen Wang (4):
>       dt-bindings: clock: sophgo: add pll clocks for SG2042
>       dt-bindings: clock: sophgo: add RP gate clocks for SG2042
>       dt-bindings: clock: sophgo: add clkgen for SG2042
>       clk: sophgo: Add SG2042 clock driver
>
>  Documentation/devicetree/bindings/clock/sophgo,sg2042-clkgen.yaml |   
> 61 +++++
>  Documentation/devicetree/bindings/clock/sophgo,sg2042-pll.yaml |   53 
> ++++
>  Documentation/devicetree/bindings/clock/sophgo,sg2042-rpgate.yaml |   
> 49 ++++
>  drivers/clk/sophgo/Kconfig |   28 +++
>  drivers/clk/sophgo/Makefile |    4 +
>  drivers/clk/sophgo/clk-sg2042-clkgen.c | 1152 
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  drivers/clk/sophgo/clk-sg2042-pll.c |  570 
> ++++++++++++++++++++++++++++++++++++++++++
>  drivers/clk/sophgo/clk-sg2042-rpgate.c |  291 +++++++++++++++++++++
>  drivers/clk/sophgo/clk-sg2042.h |   18 ++
>  include/dt-bindings/clock/sophgo,sg2042-clkgen.h |  111 ++++++++
>  include/dt-bindings/clock/sophgo,sg2042-pll.h |   14 ++
>  include/dt-bindings/clock/sophgo,sg2042-rpgate.h |   58 +++++
>  12 files changed, 2409 insertions(+)
>  create mode 100644 
> Documentation/devicetree/bindings/clock/sophgo,sg2042-clkgen.yaml
>  create mode 100644 
> Documentation/devicetree/bindings/clock/sophgo,sg2042-pll.yaml
>  create mode 100644 
> Documentation/devicetree/bindings/clock/sophgo,sg2042-rpgate.yaml
>  create mode 100644 drivers/clk/sophgo/clk-sg2042-clkgen.c
>  create mode 100644 drivers/clk/sophgo/clk-sg2042-pll.c
>  create mode 100644 drivers/clk/sophgo/clk-sg2042-rpgate.c
>  create mode 100644 drivers/clk/sophgo/clk-sg2042.h
>  create mode 100644 include/dt-bindings/clock/sophgo,sg2042-clkgen.h
>  create mode 100644 include/dt-bindings/clock/sophgo,sg2042-pll.h
>  create mode 100644 include/dt-bindings/clock/sophgo,sg2042-rpgate.h
>
>

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

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

* Re: [GIT PULL] RISC-V Sophgo SG2042 clock drivers for v6.11
  2024-06-27 10:26 ` Chen Wang
@ 2024-07-05 12:38   ` Chen Wang
  0 siblings, 0 replies; 5+ messages in thread
From: Chen Wang @ 2024-07-05 12:38 UTC (permalink / raw)
  To: Stephen Boyd, linux-clk
  Cc: Conor Dooley, linux-riscv, Inochi Amaoto, Xiaoguang Xing,
	haijiao.liu, Chao Wei

Resend.

Hi, Stephen,

Can we have this merged in v6.11?

Thanks,

Chen


On 2024/6/27 18:26, Chen Wang wrote:
> Hi, Stephen,
>
> Is it ok for you to pull this patchset? I readlly hope we can get this 
> in v6.11.
>
> Thanks,
>
> Chen.
>
>
> On 2024/6/14 15:28, Chen Wang wrote:
>> Hey, Stephen,
>>
>> Please pull clock changes for RISC-V/Sophgo/SG2042.
>>
>> For dts part, I will handle it at my side.
>>
>> I send this PR just want to expedite patches for this clock driver. 
>> The patches have gone through 16 rounds of review [1], and I have 
>> carefully checked and revised all of them based on everyone's comments.
>>
>> Link: 
>> https://lore.kernel.org/linux-riscv/cover.1717661798.git.unicorn_wang@outlook.com/ 
>> [1]
>>
>> Thanks,
>> Chen.
>>
>> The following changes since commit 
>> 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0:
>>
>>   Linux 6.10-rc1 (2024-05-26 15:20:12 -0700)
>>
>> are available in the Git repository at:
>>
>>   https://github.com/sophgo/linux.git tags/riscv-sg2042-clk-for-v6.11
>>
>> for you to fetch changes up to 48cf7e01386e7e35ea12255bc401bdd484c34e7d:
>>
>>   clk: sophgo: Add SG2042 clock driver (2024-06-14 14:49:40 +0800)
>>
>> ----------------------------------------------------------------
>> RISC-V SG2042 clock driver changes for v6.11
>>
>> Sophgo:
>> Added clock support for sg2042
>>
>> Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
>>
>> ----------------------------------------------------------------
>> Chen Wang (4):
>>       dt-bindings: clock: sophgo: add pll clocks for SG2042
>>       dt-bindings: clock: sophgo: add RP gate clocks for SG2042
>>       dt-bindings: clock: sophgo: add clkgen for SG2042
>>       clk: sophgo: Add SG2042 clock driver
>>
>>  Documentation/devicetree/bindings/clock/sophgo,sg2042-clkgen.yaml | 
>> 61 +++++
>>  Documentation/devicetree/bindings/clock/sophgo,sg2042-pll.yaml |   
>> 53 ++++
>>  Documentation/devicetree/bindings/clock/sophgo,sg2042-rpgate.yaml | 
>> 49 ++++
>>  drivers/clk/sophgo/Kconfig |   28 +++
>>  drivers/clk/sophgo/Makefile |    4 +
>>  drivers/clk/sophgo/clk-sg2042-clkgen.c | 1152 
>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>  drivers/clk/sophgo/clk-sg2042-pll.c |  570 
>> ++++++++++++++++++++++++++++++++++++++++++
>>  drivers/clk/sophgo/clk-sg2042-rpgate.c |  291 +++++++++++++++++++++
>>  drivers/clk/sophgo/clk-sg2042.h |   18 ++
>>  include/dt-bindings/clock/sophgo,sg2042-clkgen.h |  111 ++++++++
>>  include/dt-bindings/clock/sophgo,sg2042-pll.h |   14 ++
>>  include/dt-bindings/clock/sophgo,sg2042-rpgate.h |   58 +++++
>>  12 files changed, 2409 insertions(+)
>>  create mode 100644 
>> Documentation/devicetree/bindings/clock/sophgo,sg2042-clkgen.yaml
>>  create mode 100644 
>> Documentation/devicetree/bindings/clock/sophgo,sg2042-pll.yaml
>>  create mode 100644 
>> Documentation/devicetree/bindings/clock/sophgo,sg2042-rpgate.yaml
>>  create mode 100644 drivers/clk/sophgo/clk-sg2042-clkgen.c
>>  create mode 100644 drivers/clk/sophgo/clk-sg2042-pll.c
>>  create mode 100644 drivers/clk/sophgo/clk-sg2042-rpgate.c
>>  create mode 100644 drivers/clk/sophgo/clk-sg2042.h
>>  create mode 100644 include/dt-bindings/clock/sophgo,sg2042-clkgen.h
>>  create mode 100644 include/dt-bindings/clock/sophgo,sg2042-pll.h
>>  create mode 100644 include/dt-bindings/clock/sophgo,sg2042-rpgate.h
>>
>>
>
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv

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

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

* Re: [GIT PULL] RISC-V Sophgo SG2042 clock drivers for v6.11
  2024-06-14  7:28 [GIT PULL] RISC-V Sophgo SG2042 clock drivers for v6.11 Chen Wang
  2024-06-27 10:26 ` Chen Wang
@ 2024-07-08 18:56 ` Stephen Boyd
  2024-07-23 12:58 ` patchwork-bot+linux-riscv
  2 siblings, 0 replies; 5+ messages in thread
From: Stephen Boyd @ 2024-07-08 18:56 UTC (permalink / raw)
  To: Chen Wang, linux-clk
  Cc: Conor Dooley, linux-riscv, Inochi Amaoto, Xiaoguang Xing,
	haijiao.liu, Chao Wei, unicorn_wang

Quoting Chen Wang (2024-06-14 00:28:22)
> Hey, Stephen,
> 
> Please pull clock changes for RISC-V/Sophgo/SG2042.
> 
> For dts part, I will handle it at my side.
> 
> I send this PR just want to expedite patches for this clock driver. The 
> patches have gone through 16 rounds of review [1], and I have carefully 
> checked and revised all of them based on everyone's comments.
> 
> Link: 
> https://lore.kernel.org/linux-riscv/cover.1717661798.git.unicorn_wang@outlook.com/ 
> [1]
> 
> Thanks,
> Chen.
> 
> The following changes since commit 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0:
> 
>    Linux 6.10-rc1 (2024-05-26 15:20:12 -0700)
> 
> are available in the Git repository at:
> 
>    https://github.com/sophgo/linux.git tags/riscv-sg2042-clk-for-v6.11
> 
> for you to fetch changes up to 48cf7e01386e7e35ea12255bc401bdd484c34e7d:
> 
>    clk: sophgo: Add SG2042 clock driver (2024-06-14 14:49:40 +0800)
> 
> ----------------------------------------------------------------

Thanks. Pulled into clk-next

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

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

* Re: [GIT PULL] RISC-V Sophgo SG2042 clock drivers for v6.11
  2024-06-14  7:28 [GIT PULL] RISC-V Sophgo SG2042 clock drivers for v6.11 Chen Wang
  2024-06-27 10:26 ` Chen Wang
  2024-07-08 18:56 ` Stephen Boyd
@ 2024-07-23 12:58 ` patchwork-bot+linux-riscv
  2 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+linux-riscv @ 2024-07-23 12:58 UTC (permalink / raw)
  To: Chen Wang
  Cc: linux-riscv, sboyd, linux-clk, conor, inochiama, xiaoguang.xing,
	haijiao.liu, chao.wei

Hello:

This pull request was applied to riscv/linux.git (for-next)
by Stephen Boyd <sboyd@kernel.org>:

On Fri, 14 Jun 2024 15:28:22 +0800 you wrote:
> Hey, Stephen,
> 
> Please pull clock changes for RISC-V/Sophgo/SG2042.
> 
> For dts part, I will handle it at my side.
> 
> I send this PR just want to expedite patches for this clock driver. The
> patches have gone through 16 rounds of review [1], and I have carefully
> checked and revised all of them based on everyone's comments.
> 
> [...]

Here is the summary with links:
  - [GIT,PULL] RISC-V Sophgo SG2042 clock drivers for v6.11
    https://git.kernel.org/riscv/c/54cb3bb48337

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

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

end of thread, other threads:[~2024-07-23 12:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-14  7:28 [GIT PULL] RISC-V Sophgo SG2042 clock drivers for v6.11 Chen Wang
2024-06-27 10:26 ` Chen Wang
2024-07-05 12:38   ` Chen Wang
2024-07-08 18:56 ` Stephen Boyd
2024-07-23 12:58 ` patchwork-bot+linux-riscv

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