2021-10-22 12:23:45

by Sam Shih

[permalink] [raw]
Subject: [RESEND, PATCH v6 0/5] Mediatek MT7986 basic clock support

This patch series add basic clock support for mediatek mt7986 SoC.
It is based on patch series "Add basic SoC support for mediatek mt7986"
https://lore.kernel.org/all/[email protected]/
and "clk: mediatek: Add API for clock resource recycle"
https://lore.kernel.org/linux-arm-kernel/[email protected]/

---
v6: Used lowercase hex values in clock DT
v5: used builtin_platform_driver instead of CLK_OF_DECLARE
follow recent clk-mt8195 clock patch series:
https://lore.kernel.org/linux-arm-kernel/[email protected]/

v4:
According to the maintainer’s suggestion, this patch splits the previous
thread into independent patch series.
This patch include clock driver and device tree update

Original thread:
https://lore.kernel.org/all/[email protected]/
https://lore.kernel.org/linux-arm-kernel/[email protected]/
---

Sam Shih (5):
dt-bindings: clock: mediatek: document clk bindings for mediatek
mt7986 SoC
clk: mediatek: add mt7986 clock IDs
clk: mediatek: add mt7986 clock support
arm64: dts: mediatek: add clock support for mt7986a
arm64: dts: mediatek: add clock support for mt7986b

.../arm/mediatek/mediatek,apmixedsys.txt | 1 +
.../bindings/arm/mediatek/mediatek,ethsys.txt | 1 +
.../arm/mediatek/mediatek,infracfg.txt | 1 +
.../arm/mediatek/mediatek,sgmiisys.txt | 2 +
.../arm/mediatek/mediatek,topckgen.txt | 1 +
arch/arm64/boot/dts/mediatek/mt7986a.dtsi | 68 +++-
arch/arm64/boot/dts/mediatek/mt7986b.dtsi | 68 +++-
drivers/clk/mediatek/Kconfig | 17 +
drivers/clk/mediatek/Makefile | 4 +
drivers/clk/mediatek/clk-mt7986-apmixed.c | 100 +++++
drivers/clk/mediatek/clk-mt7986-eth.c | 132 +++++++
drivers/clk/mediatek/clk-mt7986-infracfg.c | 224 ++++++++++++
drivers/clk/mediatek/clk-mt7986-topckgen.c | 342 ++++++++++++++++++
include/dt-bindings/clock/mt7986-clk.h | 169 +++++++++
14 files changed, 1120 insertions(+), 10 deletions(-)
create mode 100644 drivers/clk/mediatek/clk-mt7986-apmixed.c
create mode 100644 drivers/clk/mediatek/clk-mt7986-eth.c
create mode 100644 drivers/clk/mediatek/clk-mt7986-infracfg.c
create mode 100644 drivers/clk/mediatek/clk-mt7986-topckgen.c
create mode 100644 include/dt-bindings/clock/mt7986-clk.h

--
2.29.2