Linux-Rockchip Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Qu Wenruo <wqu@suse.com>
To: Sebastian Reichel <sebastian.reichel@collabora.com>,
	Heiko Stuebner <heiko@sntech.de>
Cc: Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	linux-clk@vger.kernel.org, linux-rockchip@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
	kernel@collabora.com
Subject: Re: [PATCHv3 0/9] RK3588 Clock and Reset Support
Date: Mon, 21 Nov 2022 16:52:22 +0800	[thread overview]
Message-ID: <c119bd9c-0b90-4096-a988-9d0312c3dbcd@suse.com> (raw)
In-Reply-To: <20221018151407.63395-1-sebastian.reichel@collabora.com>



On 2022/10/18 23:13, Sebastian Reichel wrote:
> Hi,
> 
> This has been part of a bigger patchset adding basic rk3588 support.
> Since that gets more and more out of hand, I'm now sending patches
> for each subsystem as individual patchset.

Awesome work! Thanks for the work to bring upstream support for RK3588.

This upstream work is especially important since the vendor kernel has 
so many weird things and is never properly tested using newer tool chains.

But considering the support has been split into different patchset, is 
there a git repo that I can fetch all the patches and test it on my 
Rock5B board?

Thanks,
Qu
> 
> Changes since PATCHv2:
>   * https://lore.kernel.org/all/20220930153857.299396-1-sebastian.reichel@collabora.com/
>   * rebased to v6.1-rc1
>   * define rk3588_rst_init() in clk.h to fix build warning
>   * add input clocks to the binding
>   * add some more rates from the rate table (merged downstream fix)
>   * fix input of mux_700m_400m_200m_24m_p clock (merged downstream fix)
> 
> Changes since PATCHv1:
>   * https://lore.kernel.org/all/20220623160329.239501-1-sebastian.reichel@collabora.com/
>   * split dt-binding header addition into its own patch (requested by Heiko)
>   * split dt-binding header into clock and reset one (requested by Krzysztof)
>   * use reset identifier instead of register offset (requested by Krzysztof)
>    * (involves adding lookup table support to rockchip CRU reset code)
>   * use linear, gapless clock identifier (requested by Krzysztof)
>   * reword the DT binding description
> 
> Changes since PATCHv0:
>   * https://lore.kernel.org/all/20220504213251.264819-1-sebastian.reichel@collabora.com/
>   * Sync'd with latest downstream changes
>   * Update bindings according to Rob's comments, except for license
>     (no feedback from Rockchip)
> 
> -- Sebastian
> 
> Elaine Zhang (5):
>    dt-bindings: clock: add rk3588 cru bindings
>    clk: rockchip: add register offset of the cores select parent
>    clk: rockchip: add pll type for RK3588
>    clk: rockchip: clk-cpu: add mux setting for cpu change frequency
>    clk: rockchip: add clock controller for the RK3588
> 
> Sebastian Reichel (4):
>    dt-bindings: clock: add rk3588 clock definitions
>    dt-bindings: reset: add rk3588 reset definitions
>    clk: rockchip: simplify rockchip_clk_add_lookup
>    clk: rockchip: add lookup table support
> 
>   .../bindings/clock/rockchip,rk3588-cru.yaml   |   71 +
>   drivers/clk/rockchip/Kconfig                  |    8 +
>   drivers/clk/rockchip/Makefile                 |    1 +
>   drivers/clk/rockchip/clk-cpu.c                |   69 +-
>   drivers/clk/rockchip/clk-pll.c                |  218 +-
>   drivers/clk/rockchip/clk-rk3588.c             | 2538 +++++++++++++++++
>   drivers/clk/rockchip/clk.c                    |   14 +-
>   drivers/clk/rockchip/clk.h                    |   95 +-
>   drivers/clk/rockchip/rst-rk3588.c             |  857 ++++++
>   drivers/clk/rockchip/softrst.c                |   34 +-
>   .../dt-bindings/clock/rockchip,rk3588-cru.h   |  766 +++++
>   .../dt-bindings/reset/rockchip,rk3588-cru.h   |  754 +++++
>   12 files changed, 5390 insertions(+), 35 deletions(-)
>   create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3588-cru.yaml
>   create mode 100644 drivers/clk/rockchip/clk-rk3588.c
>   create mode 100644 drivers/clk/rockchip/rst-rk3588.c
>   create mode 100644 include/dt-bindings/clock/rockchip,rk3588-cru.h
>   create mode 100644 include/dt-bindings/reset/rockchip,rk3588-cru.h
> 

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

  parent reply	other threads:[~2022-11-21  8:53 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-18 15:13 [PATCHv3 0/9] RK3588 Clock and Reset Support Sebastian Reichel
2022-10-18 15:13 ` [PATCHv3 1/9] dt-bindings: clock: add rk3588 clock definitions Sebastian Reichel
2022-10-18 15:14 ` [PATCHv3 2/9] dt-bindings: reset: add rk3588 reset definitions Sebastian Reichel
2022-10-18 15:14 ` [PATCHv3 3/9] dt-bindings: clock: add rk3588 cru bindings Sebastian Reichel
2022-10-18 15:14 ` [PATCHv3 4/9] clk: rockchip: add register offset of the cores select parent Sebastian Reichel
2022-10-18 15:14 ` [PATCHv3 5/9] clk: rockchip: add pll type for RK3588 Sebastian Reichel
2022-10-18 15:14 ` [PATCHv3 6/9] clk: rockchip: clk-cpu: add mux setting for cpu change frequency Sebastian Reichel
2022-10-18 15:14 ` [PATCHv3 7/9] clk: rockchip: simplify rockchip_clk_add_lookup Sebastian Reichel
2022-10-18 15:14 ` [PATCHv3 8/9] clk: rockchip: add lookup table support Sebastian Reichel
2022-10-18 15:14 ` [PATCHv3 9/9] clk: rockchip: add clock controller for the RK3588 Sebastian Reichel
2022-11-07 18:16 ` [PATCHv3 0/9] RK3588 Clock and Reset Support Sebastian Reichel
2022-11-15 11:10 ` Heiko Stuebner
2022-11-21  8:52 ` Qu Wenruo [this message]
2022-11-21 18:28   ` Sebastian Reichel
2023-02-02  6:10     ` Qu Wenruo
2023-02-03  1:34       ` Qu Wenruo

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=c119bd9c-0b90-4096-a988-9d0312c3dbcd@suse.com \
    --to=wqu@suse.com \
    --cc=devicetree@vger.kernel.org \
    --cc=heiko@sntech.de \
    --cc=kernel@collabora.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=mturquette@baylibre.com \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=sebastian.reichel@collabora.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox