This series adds support for audio clock and reset controllers on A1 SoC family. Changes v4 [4] -> v5 - moved changes of aux reset driver to series [5] - added reset controller on top of audio-vad - merged into single file - reworked variables/defines naming - added clk81 clock hierarchy - added TDMIN_VAD-related clocks - excluded DT patch (it will submitted separately) Changes v3 [3] -> v4 - Use auxiliary reset device implemented in [4] - Split the driver into files - Use common with axg-audio yaml schema - Unify clock-names with axg-audio Changes v2 [2] -> v3 - reset: * added auxiliary device - yaml: * added declaration of optional clocks * fixed names in example and another cosmetics - clocks: * reworked naming * stop using of "core" clock name * fixed wrong parenting Changes v1 [1] -> v2: - Detached from v1's series (patch 2, 3, 4, 25) - Reuse some of defines from axg-audio - Split the controller into two memory regions Links: [1] https://lore.kernel.org/lkml/20240314232201.2102178-1-jan.dakinevich@xxxxxxxxxxxxxxxxx/ [2] https://lore.kernel.org/lkml/20240328010831.884487-1-jan.dakinevich@xxxxxxxxxxxxxxxxx/ [3] https://lore.kernel.org/lkml/20240419125812.983409-1-jan.dakinevich@xxxxxxxxxxxxxxxxx/ [4] https://lore.kernel.org/all/20240913121152.817575-1-jan.dakinevich@xxxxxxxxxxxxxxxxx/ [5] https://lore.kernel.org/all/20241112230056.1406222-1-jan.dakinevich@xxxxxxxxxxxxxxxxx/ Jan Dakinevich (3): clk: meson: axg: share the set of audio helper macros dt-bindings: clock: axg-audio: document A1 SoC audio clock controller driver clk: meson: a1: add the audio clock controller driver .../clock/amlogic,axg-audio-clkc.yaml | 4 + drivers/clk/meson/Kconfig | 14 + drivers/clk/meson/Makefile | 1 + drivers/clk/meson/a1-audio.c | 841 ++++++++++++++++++ drivers/clk/meson/axg-audio.c | 215 +---- drivers/clk/meson/meson-audio.h | 156 ++++ .../dt-bindings/clock/amlogic,a1-audio-clkc.h | 139 +++ 7 files changed, 1190 insertions(+), 180 deletions(-) create mode 100644 drivers/clk/meson/a1-audio.c create mode 100644 drivers/clk/meson/meson-audio.h create mode 100644 include/dt-bindings/clock/amlogic,a1-audio-clkc.h -- 2.34.1