All of lore.kernel.org
 help / color / mirror / Atom feed
From: Abel Vesa <abel.vesa@nxp.com>
To: Stephen Boyd <sboyd@kernel.org>
Cc: NXP Linux Team <linux-imx@nxp.com>,
	linux-clk@vger.kernel.org,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] clk: imx: Updates for v5.14
Date: Tue, 15 Jun 2021 10:06:59 +0300	[thread overview]
Message-ID: <1623740819-28040-1-git-send-email-abel.vesa@nxp.com> (raw)

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git/ tags/clk-imx-5.14

for you to fetch changes up to c586f53ae159c6c1390f093a1ec94baef2df9f3a:

  clk: imx8mq: remove SYS PLL 1/2 clock gates (2021-06-14 17:05:45 +0300)

----------------------------------------------------------------
i.MX clock changes for 5.14:

- Remove audio ipg clock from i.MX8MP
- Fix naming typo of clock compatible string
- Remove deprecated legacy clock binding for SCU clock driver
- Use common clk-imx8qxp for both i.MX8QXP and i.MX8QM
- Add multiple clocks to clk-imx8qxp driver (enet, hdmi, lcdif, audio,
  parallel interface)
- Add dedicated clock ops for paralel interface
- Different fixes for clocks controlled by ATF
- Fix different issues related to parallel interface clocks
- Add A53/A72 frequency scaling support clk-scu driver
- Add special case for DCSS clock on suspend for clk-scu driver
- Add parent save/restore on suspend/resume to clk-scu driver
- Skip runtime PM enablement for CPU clocks in clk-scu driver
- Remove the sys1_pll/sys2_pll clock gates for i.MX8MQ and their
  bindings

----------------------------------------------------------------
Anson Huang (3):
      clk: imx: scu: Add A53 frequency scaling support
      clk: imx: scu: Add A72 frequency scaling support
      clk: imx: scu: Only save DC SS clock using non-cached clock rate

Dong Aisheng (12):
      dt-bindings: arm: imx: scu: fix naming typo of clk compatible string
      dt-bindings: arm: imx: scu: drop deprecated legacy clock binding
      clk: imx: scu: remove legacy scu clock binding support
      clk: imx: scu: add gpr clocks support
      clk: imx8qxp: add clock valid checking mechnism
      clk: imx8qm: add clock valid resource checking
      clk: imx: scu: add enet rgmii gpr clocks
      clk: imx: scu: add more scu clocks
      clk: imx: scu: bypass cpu clock save and restore
      clk: imx: scu: detach pd if can't power up
      clk: imx: scu: bypass pi_pll enable status restore
      clk: imx: scu: add parent save and restore

Guoniu.zhou (1):
      clk: imx: scu: add parallel port clock ops

Jacky Bai (1):
      clk: imx: Remove the audio ipg clock from imx8mp

Lucas Stach (1):
      clk: imx8mq: remove SYS PLL 1/2 clock gates

Nitin Garg (1):
      clk: imx: scu: Do not enable runtime PM for CPU clks

 .../devicetree/bindings/arm/freescale/fsl,scu.txt  |  10 +-
 drivers/clk/imx/Makefile                           |   3 +-
 drivers/clk/imx/clk-imx8mp.c                       |   1 -
 drivers/clk/imx/clk-imx8mq.c                       |  56 +--
 drivers/clk/imx/clk-imx8qm-rsrc.c                  | 116 +++++++
 drivers/clk/imx/clk-imx8qxp-rsrc.c                 |  89 +++++
 drivers/clk/imx/clk-imx8qxp.c                      | 377 ++++++++++++++-------
 drivers/clk/imx/clk-scu.c                          | 312 ++++++++++++++++-
 drivers/clk/imx/clk-scu.h                          |  56 ++-
 include/dt-bindings/clock/imx8-clock.h             | 128 -------
 include/dt-bindings/clock/imx8mq-clock.h           |  19 --
 11 files changed, 814 insertions(+), 353 deletions(-)
 create mode 100644 drivers/clk/imx/clk-imx8qm-rsrc.c
 create mode 100644 drivers/clk/imx/clk-imx8qxp-rsrc.c

WARNING: multiple messages have this Message-ID (diff)
From: Abel Vesa <abel.vesa@nxp.com>
To: Stephen Boyd <sboyd@kernel.org>
Cc: NXP Linux Team <linux-imx@nxp.com>,
	linux-clk@vger.kernel.org,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] clk: imx: Updates for v5.14
Date: Tue, 15 Jun 2021 10:06:59 +0300	[thread overview]
Message-ID: <1623740819-28040-1-git-send-email-abel.vesa@nxp.com> (raw)

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git/ tags/clk-imx-5.14

for you to fetch changes up to c586f53ae159c6c1390f093a1ec94baef2df9f3a:

  clk: imx8mq: remove SYS PLL 1/2 clock gates (2021-06-14 17:05:45 +0300)

----------------------------------------------------------------
i.MX clock changes for 5.14:

- Remove audio ipg clock from i.MX8MP
- Fix naming typo of clock compatible string
- Remove deprecated legacy clock binding for SCU clock driver
- Use common clk-imx8qxp for both i.MX8QXP and i.MX8QM
- Add multiple clocks to clk-imx8qxp driver (enet, hdmi, lcdif, audio,
  parallel interface)
- Add dedicated clock ops for paralel interface
- Different fixes for clocks controlled by ATF
- Fix different issues related to parallel interface clocks
- Add A53/A72 frequency scaling support clk-scu driver
- Add special case for DCSS clock on suspend for clk-scu driver
- Add parent save/restore on suspend/resume to clk-scu driver
- Skip runtime PM enablement for CPU clocks in clk-scu driver
- Remove the sys1_pll/sys2_pll clock gates for i.MX8MQ and their
  bindings

----------------------------------------------------------------
Anson Huang (3):
      clk: imx: scu: Add A53 frequency scaling support
      clk: imx: scu: Add A72 frequency scaling support
      clk: imx: scu: Only save DC SS clock using non-cached clock rate

Dong Aisheng (12):
      dt-bindings: arm: imx: scu: fix naming typo of clk compatible string
      dt-bindings: arm: imx: scu: drop deprecated legacy clock binding
      clk: imx: scu: remove legacy scu clock binding support
      clk: imx: scu: add gpr clocks support
      clk: imx8qxp: add clock valid checking mechnism
      clk: imx8qm: add clock valid resource checking
      clk: imx: scu: add enet rgmii gpr clocks
      clk: imx: scu: add more scu clocks
      clk: imx: scu: bypass cpu clock save and restore
      clk: imx: scu: detach pd if can't power up
      clk: imx: scu: bypass pi_pll enable status restore
      clk: imx: scu: add parent save and restore

Guoniu.zhou (1):
      clk: imx: scu: add parallel port clock ops

Jacky Bai (1):
      clk: imx: Remove the audio ipg clock from imx8mp

Lucas Stach (1):
      clk: imx8mq: remove SYS PLL 1/2 clock gates

Nitin Garg (1):
      clk: imx: scu: Do not enable runtime PM for CPU clks

 .../devicetree/bindings/arm/freescale/fsl,scu.txt  |  10 +-
 drivers/clk/imx/Makefile                           |   3 +-
 drivers/clk/imx/clk-imx8mp.c                       |   1 -
 drivers/clk/imx/clk-imx8mq.c                       |  56 +--
 drivers/clk/imx/clk-imx8qm-rsrc.c                  | 116 +++++++
 drivers/clk/imx/clk-imx8qxp-rsrc.c                 |  89 +++++
 drivers/clk/imx/clk-imx8qxp.c                      | 377 ++++++++++++++-------
 drivers/clk/imx/clk-scu.c                          | 312 ++++++++++++++++-
 drivers/clk/imx/clk-scu.h                          |  56 ++-
 include/dt-bindings/clock/imx8-clock.h             | 128 -------
 include/dt-bindings/clock/imx8mq-clock.h           |  19 --
 11 files changed, 814 insertions(+), 353 deletions(-)
 create mode 100644 drivers/clk/imx/clk-imx8qm-rsrc.c
 create mode 100644 drivers/clk/imx/clk-imx8qxp-rsrc.c

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

             reply	other threads:[~2021-06-15  7:07 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-15  7:06 Abel Vesa [this message]
2021-06-15  7:06 ` [GIT PULL] clk: imx: Updates for v5.14 Abel Vesa
2021-06-21 23:42 ` Stephen Boyd
2021-06-21 23:42   ` Stephen Boyd

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=1623740819-28040-1-git-send-email-abel.vesa@nxp.com \
    --to=abel.vesa@nxp.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sboyd@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 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.