linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Aisheng Dong <aisheng.dong@nxp.com>
To: "linux-clk@vger.kernel.org" <linux-clk@vger.kernel.org>,
	Stephen Boyd <sboyd@kernel.org>
Cc: "linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	"mturquette@baylibre.com" <mturquette@baylibre.com>,
	"shawnguo@kernel.org" <shawnguo@kernel.org>,
	Fabio Estevam <fabio.estevam@nxp.com>,
	dl-linux-imx <linux-imx@nxp.com>,
	"kernel@pengutronix.de" <kernel@pengutronix.de>,
	"dongas86@hotmail.com" <dongas86@hotmail.com>,
	Oliver Graute <oliver.graute@gmail.com>,
	Aisheng Dong <aisheng.dong@nxp.com>
Subject: RE: [PATCH V6 00/12] clk: imx8: add new clock binding for better pm support
Date: Sun, 15 Mar 2020 14:10:39 +0000	[thread overview]
Message-ID: <AM0PR04MB42117B51ACA7E84CDB7995F380F80@AM0PR04MB4211.eurprd04.prod.outlook.com> (raw)
In-Reply-To: <1584279836-29825-1-git-send-email-aisheng.dong@nxp.com>

Hi Stephen,

> From: Dong Aisheng <aisheng.dong@nxp.com>
> Sent: Sunday, March 15, 2020 9:44 PM
> 
> This patch series is a preparation for the MX8 Architecture improvement.
> As for IMX SCU based platforms like MX8QM and MX8QXP, they are comprised
> of a couple of SS(Subsystems) while most of them within the same SS can be
> shared. e.g. Clocks, Devices and etc.
> 
> However, current clock binding is using SW IDs for device tree to use which can
> cause troubles in writing the common <soc>-ss-xx.dtsi file for different SoCs.
> 
> This patch series aims to introduce a new binding which is more close to
> hardware and platform independent and can makes us write a more general
> drivers for different SCU based SoCs.
> 
> Another important thing is that on MX8, each Clock resource is associated with
> a power domain. So we have to attach that clock device to the power domain in
> order to make it work properly. Further more, the clock state will be lost when
> its power domain is completely off during suspend/resume, so we also introduce
> the clock state save&restore mechanism.
> 
> It's based on latest shanw/for-next branch.
> 
> The top commit is:
> 4559a11e48d5 Merge branch 'imx/defconfig' into for-next
> 

I carefully went through all your review comments on V4 [1] and i'm sure all of them have been addressed.
And for the V5-Resend version [2] , we didn't receive your comment.
It seems Shawn is also waiting for your feedback for the next step.
Could you help check V6?

For V6, only a minor update that added scu clk unregister if met error. As the original code does not support it,
so i added an extra patch to handle it.

[1] https://lore.kernel.org/linux-clk/AM0PR04MB421181E4376070636898906F80A10@AM0PR04MB4211.eurprd04.prod.outlook.com/t/
[2] https://patchwork.kernel.org/cover/11248249/

Regards
Aisheng

> ChangeLog:
> v5->v6:
>  * add scu clk unregister if add provider failed
> v4->v5:
>  * Address all comments from Stephen
> v3->v4:
>  * use clk-indices for LPCG to fetch each clks offset from dt
> v2->v3:
>  * change scu clk into two cells binding
>  * add clk pm patches to ease the understand of the changes
> v1->v2:
>  * SCU clock changed to one cell clock binding inspired by arm,scpi.txt
>    Documentation/devicetree/bindings/arm/arm,scpi.txt
>  * Add required power domain property
>  * Dropped PATCH 3&4 first, will send the updated version accordingly
>    after the binding is finally determined,
> 
> 
> Dong Aisheng (12):
>   dt-bindings: firmware: imx-scu: new binding to parse clocks from
>     device tree
>   dt-bindings: clock: imx-lpcg: add support to parse clocks from device
>     tree
>   clk: imx: scu: add two cells binding support
>   clk: imx: scu: bypass cpu power domains
>   clk: imx: scu: allow scu clk to take device pointer
>   clk: imx: scu: add runtime pm support
>   clk: imx: scu: add suspend/resume support
>   clk: imx: imx8qxp-lpcg: add parsing clocks from device tree
>   clk: imx: lpcg: allow lpcg clk to take device pointer
>   clk: imx: clk-imx8qxp-lpcg: add runtime pm support
>   clk: imx: lpcg: add suspend/resume support
>   clk: imx: scu: unregister clocks if add provider failed
> 
>  .../bindings/arm/freescale/fsl,scu.txt        |  12 +-
>  .../bindings/clock/imx8qxp-lpcg.txt           |  36 ++-
>  drivers/clk/imx/clk-imx8qxp-lpcg.c            | 139 +++++++++++
>  drivers/clk/imx/clk-imx8qxp.c                 | 136 ++++++-----
>  drivers/clk/imx/clk-lpcg-scu.c                |  53 +++-
>  drivers/clk/imx/clk-scu.c                     | 231 +++++++++++++++++-
>  drivers/clk/imx/clk-scu.h                     |  56 ++++-
>  include/dt-bindings/clock/imx8-lpcg.h         |  14 ++
>  include/dt-bindings/firmware/imx/rsrc.h       |  23 ++
>  9 files changed, 610 insertions(+), 90 deletions(-)  create mode 100644
> include/dt-bindings/clock/imx8-lpcg.h
> 
> --
> 2.23.0


  parent reply	other threads:[~2020-03-15 14:10 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-15 13:43 [PATCH V6 00/12] clk: imx8: add new clock binding for better pm support Dong Aisheng
2020-03-15 13:43 ` [PATCH V6 01/12] dt-bindings: firmware: imx-scu: new binding to parse clocks from device tree Dong Aisheng
2020-03-15 13:43 ` [PATCH V6 02/12] dt-bindings: clock: imx-lpcg: add support " Dong Aisheng
2020-03-15 13:43 ` [PATCH V6 03/12] clk: imx: scu: add two cells binding support Dong Aisheng
2020-05-05  5:08   ` Stephen Boyd
2020-05-05 13:47     ` Aisheng Dong
     [not found]       ` <159056841061.88029.216464972820415110@swboyd.mtv.corp.google.com>
     [not found]         ` <AM6PR04MB4966691C34454AFAB7DAFFB5808A0@AM6PR04MB4966.eurprd04.prod.outlook.com>
     [not found]           ` <159249627008.62212.17868674898739401597@swboyd.mtv.corp.google.com>
2020-06-19 14:50             ` Aisheng Dong
2020-03-15 13:43 ` [PATCH V6 04/12] clk: imx: scu: bypass cpu power domains Dong Aisheng
2020-05-05  4:49   ` Stephen Boyd
2020-03-15 13:43 ` [PATCH V6 05/12] clk: imx: scu: allow scu clk to take device pointer Dong Aisheng
2020-05-05  5:09   ` Stephen Boyd
2020-03-15 13:43 ` [PATCH V6 06/12] clk: imx: scu: add runtime pm support Dong Aisheng
2020-05-05  5:10   ` Stephen Boyd
2020-03-15 13:43 ` [PATCH V6 07/12] clk: imx: scu: add suspend/resume support Dong Aisheng
2020-05-05  4:50   ` Stephen Boyd
2020-03-15 13:43 ` [PATCH V6 08/12] clk: imx: imx8qxp-lpcg: add parsing clocks from device tree Dong Aisheng
2020-05-05  5:11   ` Stephen Boyd
2020-03-15 13:43 ` [PATCH V6 09/12] clk: imx: lpcg: allow lpcg clk to take device pointer Dong Aisheng
2020-05-05  4:58   ` Stephen Boyd
2020-03-15 13:43 ` [PATCH V6 10/12] clk: imx: clk-imx8qxp-lpcg: add runtime pm support Dong Aisheng
2020-05-05  4:51   ` Stephen Boyd
2020-03-15 13:43 ` [PATCH V6 11/12] clk: imx: lpcg: add suspend/resume support Dong Aisheng
2020-05-05  4:53   ` Stephen Boyd
2020-03-15 13:43 ` [PATCH V6 12/12] clk: imx: scu: unregister clocks if add provider failed Dong Aisheng
2020-05-05  4:55   ` Stephen Boyd
2020-05-05 14:06     ` Aisheng Dong
2020-03-15 14:10 ` Aisheng Dong [this message]
2020-03-26  3:14   ` [PATCH V6 00/12] clk: imx8: add new clock binding for better pm support Aisheng Dong
2020-04-07  2:23     ` Aisheng Dong
2020-04-18 12:39       ` Aisheng Dong

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=AM0PR04MB42117B51ACA7E84CDB7995F380F80@AM0PR04MB4211.eurprd04.prod.outlook.com \
    --to=aisheng.dong@nxp.com \
    --cc=dongas86@hotmail.com \
    --cc=fabio.estevam@nxp.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-imx@nxp.com \
    --cc=mturquette@baylibre.com \
    --cc=oliver.graute@gmail.com \
    --cc=sboyd@kernel.org \
    --cc=shawnguo@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).