From: Drew Fustini <fustini@kernel.org>
To: Icenowy Zheng <uwu@icenowy.me>
Cc: Guo Ren <guoren@kernel.org>, Fu Wei <wefu@redhat.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
Michal Wilczynski <m.wilczynski@samsung.com>,
Han Gao <rabenda.cn@gmail.com>, Yao Zi <ziyao@disroot.org>,
linux-riscv@lists.infradead.org, linux-clk@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 0/4] clk: thead: Changes to TH1520 clock driver for disp
Date: Mon, 18 Aug 2025 15:10:08 -0700 [thread overview]
Message-ID: <aKOkwIqKi1QqSo8K@x1> (raw)
In-Reply-To: <20250816091113.2596048-1-uwu@icenowy.me>
On Sat, Aug 16, 2025 at 05:11:09PM +0800, Icenowy Zheng wrote:
> This patchset is my changes to the TH1520 clock driver, mainly for
> supporting the display controller.
>
> The first patch is previously a dependency of this patchset before v3,
> but a rebase operation in v3 changed it and it's now pulled into this
> patchset.
>
> The 2nd and 3rd ones are functionality additions, with the first one
> adding support for enabling/disabling PLLs (for DPU PLL) and the second
> one adding support for changing DPU dividers.
>
> The 4th one is to address hang issues met when testing the DPU driver
> w/o clk_ignore_unused command line option.
>
> The patchset is rebased atop the padctrl0 parent fix patchset (which
> contains refactor of ccu_gate) at [1] in v3.
>
> [1] https://lore.kernel.org/linux-riscv/20250816084445.2582692-1-uwu@icenowy.me/
>
> Icenowy Zheng (3):
> clk: thead: add support for enabling/disabling PLLs
> clk: thead: support changing DPU pixel clock rate
> clk: thead: th1520-ap: set all AXI clocks to CLK_IS_CRITICAL
>
> Michal Wilczynski (1):
> clk: thead: Correct parent for DPU pixel clocks
>
> drivers/clk/thead/clk-th1520-ap.c | 153 +++++++++++++++++++++++-------
> 1 file changed, 121 insertions(+), 32 deletions(-)
>
> --
> 2.50.1
>
Thank you, I've applied this to thead-clk-for-next [1]:
c567bc5fc68c clk: thead: th1520-ap: set all AXI clocks to CLK_IS_CRITICAL
8fede7ff692c clk: thead: support changing DPU pixel clock rate
56a48c1833aa clk: thead: add support for enabling/disabling PLLs
c51a37ffea38 clk: thead: Correct parent for DPU pixel clocks
-Drew
[1] https://git.kernel.org/pub/scm/linux/kernel/git/fustini/linux.git/log/?h=thead-clk-for-next
WARNING: multiple messages have this Message-ID (diff)
From: Drew Fustini <fustini@kernel.org>
To: Icenowy Zheng <uwu@icenowy.me>
Cc: Guo Ren <guoren@kernel.org>, Fu Wei <wefu@redhat.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
Michal Wilczynski <m.wilczynski@samsung.com>,
Han Gao <rabenda.cn@gmail.com>, Yao Zi <ziyao@disroot.org>,
linux-riscv@lists.infradead.org, linux-clk@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 0/4] clk: thead: Changes to TH1520 clock driver for disp
Date: Mon, 18 Aug 2025 15:10:08 -0700 [thread overview]
Message-ID: <aKOkwIqKi1QqSo8K@x1> (raw)
In-Reply-To: <20250816091113.2596048-1-uwu@icenowy.me>
On Sat, Aug 16, 2025 at 05:11:09PM +0800, Icenowy Zheng wrote:
> This patchset is my changes to the TH1520 clock driver, mainly for
> supporting the display controller.
>
> The first patch is previously a dependency of this patchset before v3,
> but a rebase operation in v3 changed it and it's now pulled into this
> patchset.
>
> The 2nd and 3rd ones are functionality additions, with the first one
> adding support for enabling/disabling PLLs (for DPU PLL) and the second
> one adding support for changing DPU dividers.
>
> The 4th one is to address hang issues met when testing the DPU driver
> w/o clk_ignore_unused command line option.
>
> The patchset is rebased atop the padctrl0 parent fix patchset (which
> contains refactor of ccu_gate) at [1] in v3.
>
> [1] https://lore.kernel.org/linux-riscv/20250816084445.2582692-1-uwu@icenowy.me/
>
> Icenowy Zheng (3):
> clk: thead: add support for enabling/disabling PLLs
> clk: thead: support changing DPU pixel clock rate
> clk: thead: th1520-ap: set all AXI clocks to CLK_IS_CRITICAL
>
> Michal Wilczynski (1):
> clk: thead: Correct parent for DPU pixel clocks
>
> drivers/clk/thead/clk-th1520-ap.c | 153 +++++++++++++++++++++++-------
> 1 file changed, 121 insertions(+), 32 deletions(-)
>
> --
> 2.50.1
>
Thank you, I've applied this to thead-clk-for-next [1]:
c567bc5fc68c clk: thead: th1520-ap: set all AXI clocks to CLK_IS_CRITICAL
8fede7ff692c clk: thead: support changing DPU pixel clock rate
56a48c1833aa clk: thead: add support for enabling/disabling PLLs
c51a37ffea38 clk: thead: Correct parent for DPU pixel clocks
-Drew
[1] https://git.kernel.org/pub/scm/linux/kernel/git/fustini/linux.git/log/?h=thead-clk-for-next
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
next prev parent reply other threads:[~2025-08-18 22:10 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-16 9:11 [PATCH v3 0/4] clk: thead: Changes to TH1520 clock driver for disp Icenowy Zheng
2025-08-16 9:11 ` Icenowy Zheng
2025-08-16 9:11 ` [PATCH v3 1/4] clk: thead: Correct parent for DPU pixel clocks Icenowy Zheng
2025-08-16 9:11 ` Icenowy Zheng
2025-08-16 9:11 ` [PATCH v3 2/4] clk: thead: add support for enabling/disabling PLLs Icenowy Zheng
2025-08-16 9:11 ` Icenowy Zheng
2025-08-16 9:11 ` [PATCH v3 3/4] clk: thead: support changing DPU pixel clock rate Icenowy Zheng
2025-08-16 9:11 ` Icenowy Zheng
2025-08-16 9:11 ` [PATCH v3 4/4] clk: thead: th1520-ap: set all AXI clocks to CLK_IS_CRITICAL Icenowy Zheng
2025-08-16 9:11 ` Icenowy Zheng
2025-08-18 22:10 ` Drew Fustini [this message]
2025-08-18 22:10 ` [PATCH v3 0/4] clk: thead: Changes to TH1520 clock driver for disp Drew Fustini
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=aKOkwIqKi1QqSo8K@x1 \
--to=fustini@kernel.org \
--cc=guoren@kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=m.wilczynski@samsung.com \
--cc=mturquette@baylibre.com \
--cc=rabenda.cn@gmail.com \
--cc=sboyd@kernel.org \
--cc=uwu@icenowy.me \
--cc=wefu@redhat.com \
--cc=ziyao@disroot.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.