[PATCH v3 0/8] clk: sunxi-ng: Add support for Allwinner A733 CCU and PRCM
From: Junhui Liu <hidden>
Date: 2026-09-04 16:48:47
Also in:
linux-arm-kernel, linux-clk, linux-devicetree, linux-riscv, linux-sunxi, lkml
Add support for the main CCU and the PRCM module (R-CCU) found in the Allwinner A733 SoC. The clock architecture is derived from the previous A523 design, with the MCU_CCU removed and the clock tree extended for the additional functional blocks found on the A733. The A733 introduces a "pll-ref" clock that normalizes the physical oscillator frequency, which can be 19.2MHz, 24MHz, or 26MHz, into a consistent 24MHz reference for the PLL clock tree. The peripheral, video, and DE PLLs provide multiple independently gated outputs with programmable dividers. Model these outputs as separate divider-and-gate child clocks. Also follow the documented hierarchy for the derived peripheral PLL outputs. The explicitly named PLL_AUDIO1 /2 and /5 outputs are modeled as fixed-factor clocks, with their divider fields initialized accordingly. Also extend the sunxi-ng SDM (Sigma-Delta Modulation) support for the dual-pattern register layout used by the A733 PLLs. PLL_AUDIO0 uses the dual-pattern SDM support to synthesize its fractional output. PLL_AUDIO1 does not expose fractional rates, but its SDM controls are modeled so that stale settings left by firmware can be disabled when an integer rate is programmed. The actual parents of a small number of bus gates are not documented in the user manual. Follow the vendor BSP and keep these gates parented to "hosc" until more complete hardware information is available. --- Changes in v3: - Patch 1: Rename the clock/reset binding headers with the allwinner vendor prefix, use BSD-2-Clause for their dual license, and reorder the binding properties according to the preferred schema layout - Patches 1 and 4: Drop the undocumented 12X suffix from the video and DE PLL core clock names and binding IDs - Patch 2: Require all PAT1 enable bits to be set when checking whether SDM is enabled - Patch 4: Model the independently gated peripheral, video, and DE PLL outputs as programmable-divider child clocks - Patch 4: Follow the documented hierarchy for the derived peripheral PLL outputs - Patch 4: Model the explicitly named PLL_AUDIO1 /2 and /5 outputs as fixed-factor clocks and initialize their divider fields accordingly - Patch 4: Model the PLL_AUDIO1 SDM controls so stale firmware settings are disabled when an integer rate is programmed - Patch 4: Add the missing module device table and remove an unused include - Patch 6: Replace the MP helpers used by timer clocks, which have no M divider, with the corresponding P-only helpers - Patch 7: Document the unresolved parents of bus gates kept on hosc and fix the APB/AHB IOMMU1 system clock names - Patches 3 and 8: Make the reset maps const - Link to v2: https://patch.msgid.link/20260711-a733-clk-v2-0-974d188cbe0c@pigmoral.tech Changes in v2: - Rework the clocks property in DT bindings to source hosc directly from the oscillator to adapt to the new RTC binding - Clean up the SDM dual-pattern helper macro and add the missing enable parameter for pll-audio0 - Number single-instance clocks with 0, e.g. GPU0, VE_ENC0/VE_DEC0, DRAM0, NAND0, GPADC0, THS0, etc - Correct 8x PLL post-divider names to 12x for video and DE PLLs (pll-videoX-12x, pll-de-12x) - Drop gic, cpu-peri, nsi clocks - Rename clocks: OWA -> SPDIF, USB_REF -> USB01_REF, HDMI_ESM -> HDCP_ESM, PWMCTRL -> PWM - Mark bus-dram0, ahb-store and mbus-store critical to avoid DMA, MMC and SPI NOR failures when unused clocks are disabled - Switch PRCM timer clocks to P-only helpers - Fix bus gate bit positions for UARTs and correct the sysdap register address - Interleave bus clocks into function clocks - Link to v1: https://lore.kernel.org/r/20260310-a733-clk-v1-0-36b4e9b24457@pigmoral.tech (local) --- Junhui Liu (8): dt-bindings: clk: sun60i-a733-ccu: Add Allwinner A733 support clk: sunxi-ng: sdm: Add dual patterns support clk: sunxi-ng: a733: Add PRCM CCU clk: sunxi-ng: a733: Add PLL clocks support clk: sunxi-ng: a733: Add bus clocks support clk: sunxi-ng: a733: Add mod clocks support clk: sunxi-ng: a733: Add bus clock gates clk: sunxi-ng: a733: Add reset lines .../bindings/clock/allwinner,sun60i-a733-ccu.yaml | 107 + drivers/clk/sunxi-ng/Kconfig | 10 + drivers/clk/sunxi-ng/Makefile | 4 + drivers/clk/sunxi-ng/ccu-sun60i-a733-r.c | 273 +++ drivers/clk/sunxi-ng/ccu-sun60i-a733.c | 2393 ++++++++++++++++++++ drivers/clk/sunxi-ng/ccu_sdm.c | 52 +- drivers/clk/sunxi-ng/ccu_sdm.h | 29 +- .../dt-bindings/clock/allwinner,sun60i-a733-ccu.h | 290 +++ .../clock/allwinner,sun60i-a733-r-ccu.h | 39 + .../dt-bindings/reset/allwinner,sun60i-a733-ccu.h | 129 ++ .../reset/allwinner,sun60i-a733-r-ccu.h | 23 + 11 files changed, 3323 insertions(+), 26 deletions(-) --- base-commit: cee9395acd8043be0644b25c34bfa86623f2b935 change-id: 20260202-a733-clk-0d4fc00a9f9c Best regards, -- Junhui Liu [off-list ref]