linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] clk: imx: Updates for v5.18
@ 2022-03-04 15:17 Abel Vesa
  2022-03-09 18:21 ` Stephen Boyd
  0 siblings, 1 reply; 2+ messages in thread
From: Abel Vesa @ 2022-03-04 15:17 UTC (permalink / raw)
  To: Mike Turquette, Stephen Boyd
  Cc: NXP Linux Team, linux-clk, Linux Kernel Mailing List

The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:

  Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)

are available in the Git repository at:

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

for you to fetch changes up to b09c68dc57c9d44071d83bb935b733f53ea2b2b4:

  clk: imx: pll14xx: Support dynamic rates (2022-03-04 17:06:30 +0200)

----------------------------------------------------------------
i.MX clock changes for 5.18

- Add i.MXRT1050 clock driver and bindings
- Add i.MX8DXL clock driver and bindings
- Add i.MX93 clock driver and bindings
- Remove SYS PLL 1/2 clock gates for i.MX8M*
- Remove AUDIO MCLK ROOT from i.MX7D
- Add fracn gppll clock type used by i.MX93
- Add new composite clock for i.MX93
- Add missing media mipi phy ref clock for i.MX8MP
- Fix off by one in imx_lpcg_parse_clks_from_dt
- Rework for the pll14xx

----------------------------------------------------------------
Abel Vesa (2):
      clk: imx7d: Remove audio_mclk_root_clk
      dt-bindings: fsl: scu: add imx8dxl scu clock support

Dan Carpenter (1):
      clk: imx: off by one in imx_lpcg_parse_clks_from_dt()

Giulio Benetti (1):
      dt-bindings: imx: Add clock binding for i.MXRT1050

Jacky Bai (1):
      clk: imx: Add imx8dxl clk driver

Jesse Taube (2):
      dt-bindings: clock: imx: Add documentation for i.MXRT1050 clock
      clk: imx: Add initial support for i.MXRT1050 clock driver

Laurent Pinchart (1):
      clk: imx8mp: Add missing IMX8MP_CLK_MEDIA_MIPI_PHY1_REF_ROOT clock

Peng Fan (8):
      dt-bindings: clock: Add imx93 clock support
      dt-bindings: clock: add i.MX93 clock definition
      clk: imx: add i.MX93 composite clk
      clk: imx: support fracn gppll
      clk: imx: add i.MX93 clk
      clk: imx8mm: remove SYS PLL 1/2 clock gates
      clk: imx8mn: remove SYS PLL 1/2 clock gates
      clk: imx8mp: remove SYS PLL 1/2 clock gates

Sascha Hauer (8):
      clk: imx: pll14xx: Use register defines consistently
      clk: imx: pll14xx: Drop wrong shifting
      clk: imx: pll14xx: Use FIELD_GET/FIELD_PREP
      clk: imx: pll14xx: consolidate rate calculation
      clk: imx: pll14xx: name variables after usage
      clk: imx: pll14xx: explicitly return lowest rate
      clk: imx: pll14xx: Add pr_fmt
      clk: imx: pll14xx: Support dynamic rates

 .../devicetree/bindings/arm/freescale/fsl,scu.txt  |   1 +
 .../devicetree/bindings/clock/imx93-clock.yaml     |  62 ++++
 .../devicetree/bindings/clock/imxrt1050-clock.yaml |  67 ++++
 drivers/clk/imx/Kconfig                            |  13 +
 drivers/clk/imx/Makefile                           |   8 +-
 drivers/clk/imx/clk-composite-93.c                 |  93 ++++++
 drivers/clk/imx/clk-fracn-gppll.c                  | 323 +++++++++++++++++++
 drivers/clk/imx/clk-imx7d.c                        |   1 -
 drivers/clk/imx/clk-imx8dxl-rsrc.c                 |  66 ++++
 drivers/clk/imx/clk-imx8mm.c                       |  49 +--
 drivers/clk/imx/clk-imx8mn.c                       |  50 +--
 drivers/clk/imx/clk-imx8mp.c                       |  49 +--
 drivers/clk/imx/clk-imx8qxp-lpcg.c                 |   2 +-
 drivers/clk/imx/clk-imx8qxp.c                      |   1 +
 drivers/clk/imx/clk-imx93.c                        | 341 +++++++++++++++++++++
 drivers/clk/imx/clk-imxrt1050.c                    | 168 ++++++++++
 drivers/clk/imx/clk-pll14xx.c                      | 287 +++++++++++------
 drivers/clk/imx/clk-scu.h                          |   1 +
 drivers/clk/imx/clk.h                              |  30 ++
 include/dt-bindings/clock/imx93-clock.h            | 201 ++++++++++++
 include/dt-bindings/clock/imxrt1050-clock.h        |  72 +++++
 21 files changed, 1690 insertions(+), 195 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/imx93-clock.yaml
 create mode 100644 Documentation/devicetree/bindings/clock/imxrt1050-clock.yaml
 create mode 100644 drivers/clk/imx/clk-composite-93.c
 create mode 100644 drivers/clk/imx/clk-fracn-gppll.c
 create mode 100644 drivers/clk/imx/clk-imx8dxl-rsrc.c
 create mode 100644 drivers/clk/imx/clk-imx93.c
 create mode 100644 drivers/clk/imx/clk-imxrt1050.c
 create mode 100644 include/dt-bindings/clock/imx93-clock.h
 create mode 100644 include/dt-bindings/clock/imxrt1050-clock.h

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] clk: imx: Updates for v5.18
  2022-03-04 15:17 [GIT PULL] clk: imx: Updates for v5.18 Abel Vesa
@ 2022-03-09 18:21 ` Stephen Boyd
  0 siblings, 0 replies; 2+ messages in thread
From: Stephen Boyd @ 2022-03-09 18:21 UTC (permalink / raw)
  To: Abel Vesa, Mike Turquette
  Cc: NXP Linux Team, linux-clk, Linux Kernel Mailing List

Quoting Abel Vesa (2022-03-04 07:17:43)
> The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:
> 
>   Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git/ tags/clk-imx-5.18
> 
> for you to fetch changes up to b09c68dc57c9d44071d83bb935b733f53ea2b2b4:
> 
>   clk: imx: pll14xx: Support dynamic rates (2022-03-04 17:06:30 +0200)
> 
> ----------------------------------------------------------------

Thanks. Pulled into clk-next

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-03-09 18:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-04 15:17 [GIT PULL] clk: imx: Updates for v5.18 Abel Vesa
2022-03-09 18:21 ` Stephen Boyd

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).