All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chen-Yu Tsai <wens@kernel.org>
To: Stephen Boyd <sboyd@kernel.org>
Cc: Chen-Yu Tsai <wens@csie.org>, Jernej Skrabec <jernej@kernel.org>,
	Samuel Holland <samuel@sholland.org>,
	linux-sunxi@lists.linux.dev, linux-clk@vger.kernel.org
Subject: [GIT PULL] Allwinner clock changes for 6.15
Date: Thu, 13 Mar 2025 21:25:03 +0800	[thread overview]
Message-ID: <Z9Lcr8FyJLWdbp-J@wens.tw> (raw)

[-- Attachment #1: Type: text/plain, Size: 3683 bytes --]

The following changes since commit 2014c95afecee3e76ca4a56956a936e23283f05b:

  Linux 6.14-rc1 (2025-02-02 15:39:26 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git sunxi-clk-for-6.15

for you to fetch changes up to 8cea339cfb81eb3354b0f27ceb27e2bb107efa6d:

  clk: sunxi-ng: add support for the A523/T527 PRCM CCU (2025-03-12 11:58:11 +0800)

----------------------------------------------------------------
Allwinner clock changes for 6.15

- Extend H616 clock driver to cover TCON clock and reset
- Enable H616 GPU clock reparenting during rate change
- Add new clock driver for A523/T527

----------------------------------------------------------------
Andre Przywara (14):
      clk: sunxi-ng: mp: introduce dual-divider clock
      clk: sunxi-ng: mp: provide wrappers for setting feature flags
      clk: sunxi-ng: Add support for update bit
      dt-bindings: clk: sunxi-ng: document two Allwinner A523 CCUs
      clk: sunxi-ng: Add support for the A523/T527 CCU PLLs
      clk: sunxi-ng: a523: Add support for bus clocks
      clk: sunxi-ng: a523: add video mod clocks
      clk: sunxi-ng: a523: add system mod clocks
      clk: sunxi-ng: a523: add interface mod clocks
      clk: sunxi-ng: a523: add USB mod clocks
      clk: sunxi-ng: a523: remaining mod clocks
      clk: sunxi-ng: a523: add bus clock gates
      clk: sunxi-ng: a523: add reset lines
      clk: sunxi-ng: add support for the A523/T527 PRCM CCU

Chris Morgan (2):
      dt-bindings: clock: sun50i-h616-ccu: Add LCD TCON clk and reset
      clk: sunxi-ng: h616: Add clock/reset for LCD TCON

Philippe Simons (1):
      clk: sunxi-ng: h616: Reparent GPU clock during frequency changes

 .../bindings/clock/allwinner,sun55i-a523-ccu.yaml  |  103 ++
 drivers/clk/sunxi-ng/Kconfig                       |   10 +
 drivers/clk/sunxi-ng/Makefile                      |    4 +
 drivers/clk/sunxi-ng/ccu-sun50i-h616.c             |   60 +-
 drivers/clk/sunxi-ng/ccu-sun50i-h616.h             |    2 +-
 drivers/clk/sunxi-ng/ccu-sun55i-a523-r.c           |  248 +++
 drivers/clk/sunxi-ng/ccu-sun55i-a523-r.h           |   14 +
 drivers/clk/sunxi-ng/ccu-sun55i-a523.c             | 1685 ++++++++++++++++++++
 drivers/clk/sunxi-ng/ccu-sun55i-a523.h             |   14 +
 drivers/clk/sunxi-ng/ccu_common.h                  |    5 +
 drivers/clk/sunxi-ng/ccu_div.c                     |    2 +
 drivers/clk/sunxi-ng/ccu_gate.c                    |    4 +
 drivers/clk/sunxi-ng/ccu_mp.c                      |   51 +-
 drivers/clk/sunxi-ng/ccu_mp.h                      |   58 +-
 drivers/clk/sunxi-ng/ccu_mux.c                     |    2 +
 include/dt-bindings/clock/sun50i-h616-ccu.h        |    4 +
 include/dt-bindings/clock/sun55i-a523-ccu.h        |  189 +++
 include/dt-bindings/clock/sun55i-a523-r-ccu.h      |   37 +
 include/dt-bindings/reset/sun50i-h616-ccu.h        |    2 +
 include/dt-bindings/reset/sun55i-a523-ccu.h        |   88 +
 include/dt-bindings/reset/sun55i-a523-r-ccu.h      |   25 +
 21 files changed, 2590 insertions(+), 17 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/allwinner,sun55i-a523-ccu.yaml
 create mode 100644 drivers/clk/sunxi-ng/ccu-sun55i-a523-r.c
 create mode 100644 drivers/clk/sunxi-ng/ccu-sun55i-a523-r.h
 create mode 100644 drivers/clk/sunxi-ng/ccu-sun55i-a523.c
 create mode 100644 drivers/clk/sunxi-ng/ccu-sun55i-a523.h
 create mode 100644 include/dt-bindings/clock/sun55i-a523-ccu.h
 create mode 100644 include/dt-bindings/clock/sun55i-a523-r-ccu.h
 create mode 100644 include/dt-bindings/reset/sun55i-a523-ccu.h
 create mode 100644 include/dt-bindings/reset/sun55i-a523-r-ccu.h

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

             reply	other threads:[~2025-03-13 15:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-13 13:25 Chen-Yu Tsai [this message]
2025-03-14  0:53 ` [GIT PULL] Allwinner clock changes for 6.15 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=Z9Lcr8FyJLWdbp-J@wens.tw \
    --to=wens@kernel.org \
    --cc=jernej@kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=samuel@sholland.org \
    --cc=sboyd@kernel.org \
    --cc=wens@csie.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.