public inbox for linux-clk@vger.kernel.org
 help / color / mirror / Atom feed
From: Peng Fan <peng.fan@oss.nxp.com>
To: "irving.ch.lin" <irving-ch.lin@mediatek.com>
Cc: Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	Ulf Hansson <ulf.hansson@linaro.org>,
	Richard Cochran <richardcochran@gmail.com>,
	Qiqi Wang <qiqi.wang@mediatek.com>,
	linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-mediatek@lists.infradead.org, linux-pm@vger.kernel.org,
	netdev@vger.kernel.org,
	Project_Global_Chrome_Upstream_Group@mediatek.com,
	sirius.wang@mediatek.com, vince-wl.liu@mediatek.com,
	jh.hsu@mediatek.com
Subject: Re: [PATCH v2 3/4] clk: mediatek: Add clock drivers for MT8189 SoC
Date: Mon, 15 Sep 2025 15:54:25 +0800	[thread overview]
Message-ID: <20250915075425.GE8224@nxa18884-linux.ap.freescale.net> (raw)
In-Reply-To: <20250912120508.3180067-4-irving-ch.lin@mediatek.com>

Hi Irving-ch,

On Fri, Sep 12, 2025 at 08:04:52PM +0800, irving.ch.lin wrote:
>From: Irving-ch Lin <irving-ch.lin@mediatek.com>
>
>Introduce a new clock (clk) driver port for the MediaTek
>MT8189 SoC. The driver is newly implemented based on the hardware
>layout and register settings of the MT8189 chip, enabling correct clk
>management and operation for various modules.
>
>With clock topology, we need to register clock sequence below:
>apmixedsys(pll) -> topckgen(div/mux) -> others(cgs)
>
>Signed-off-by: Irving-ch Lin <irving-ch.lin@mediatek.com>
>---
> drivers/clk/mediatek/Kconfig                 |  146 +++
> drivers/clk/mediatek/Makefile                |   14 +
> drivers/clk/mediatek/clk-mt8189-apmixedsys.c |  135 +++
> drivers/clk/mediatek/clk-mt8189-bus.c        |  289 +++++
> drivers/clk/mediatek/clk-mt8189-cam.c        |  131 +++
> drivers/clk/mediatek/clk-mt8189-dbgao.c      |  115 ++
> drivers/clk/mediatek/clk-mt8189-dvfsrc.c     |   61 +
> drivers/clk/mediatek/clk-mt8189-iic.c        |  149 +++
> drivers/clk/mediatek/clk-mt8189-img.c        |  122 ++
> drivers/clk/mediatek/clk-mt8189-mdpsys.c     |  100 ++
> drivers/clk/mediatek/clk-mt8189-mfg.c        |   56 +
> drivers/clk/mediatek/clk-mt8189-mmsys.c      |  233 ++++
> drivers/clk/mediatek/clk-mt8189-scp.c        |   92 ++
> drivers/clk/mediatek/clk-mt8189-topckgen.c   | 1057 ++++++++++++++++++
> drivers/clk/mediatek/clk-mt8189-ufs.c        |  106 ++
> drivers/clk/mediatek/clk-mt8189-vcodec.c     |  119 ++
> drivers/clk/mediatek/clk-mt8189-vlpcfg.c     |  145 +++
> drivers/clk/mediatek/clk-mt8189-vlpckgen.c   |  280 +++++
> drivers/clk/mediatek/clk-mux.c               |    4 +
> 19 files changed, 3354 insertions(+)

This is too much changes in a single patch. Prefer to separate
into small patches in next version, otherwise it is hard to review.

Regards
Peng

  reply	other threads:[~2025-09-15  6:42 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-12 12:04 [PATCH v2 0/4] Add support for MT8189 clock/power controller irving.ch.lin
2025-09-12 12:04 ` [PATCH v2 1/4] dt-bindings: clock: mediatek: Add MT8189 clock definitions irving.ch.lin
2025-09-14 12:03   ` Krzysztof Kozlowski
2025-09-12 12:04 ` [PATCH v2 2/4] dt-bindings: power: mediatek: Add MT8189 power domain definitions irving.ch.lin
2025-09-14 12:05   ` Krzysztof Kozlowski
2025-09-12 12:04 ` [PATCH v2 3/4] clk: mediatek: Add clock drivers for MT8189 SoC irving.ch.lin
2025-09-15  7:54   ` Peng Fan [this message]
2025-09-12 12:04 ` [PATCH v2 4/4] pmdomain: mediatek: Add power domain driver " irving.ch.lin
2025-09-13  9:16   ` Simon Horman
2025-09-15  8:18   ` Peng Fan
2025-09-17  9:40   ` AngeloGioacchino Del Regno

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=20250915075425.GE8224@nxa18884-linux.ap.freescale.net \
    --to=peng.fan@oss.nxp.com \
    --cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=irving-ch.lin@mediatek.com \
    --cc=jh.hsu@mediatek.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=matthias.bgg@gmail.com \
    --cc=mturquette@baylibre.com \
    --cc=netdev@vger.kernel.org \
    --cc=qiqi.wang@mediatek.com \
    --cc=richardcochran@gmail.com \
    --cc=robh@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=sirius.wang@mediatek.com \
    --cc=ulf.hansson@linaro.org \
    --cc=vince-wl.liu@mediatek.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