[no subject]

From: Sam Shih
Date: Tue Jan 04 2022 - 00:01:31 EST


Subject: [PATCH v8 0/3] 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/20211018114009.13350-1-sam.shih@xxxxxxxxxxxx/
that has been merged into matthias's tree recently:
https://git.kernel.org/pub/scm/linux/kernel/git/matthias.bgg/linux.git/log/?h=v5.16-next/dts64

---
v8: update the git message, and add a Reviewed-by tag for this series
v7: exclude DTS changes in the patch series
v5: used builtin_platform_driver instead of CLK_OF_DECLARE
follow recent clk-mt8195 clock patch series:
https://lore.kernel.org/linux-arm-kernel/20210914021633.26377-1-chun-jie.chen@xxxxxxxxxxxx/

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/20210914085137.31761-1-sam.shih@xxxxxxxxxxxx/
https://lore.kernel.org/linux-arm-kernel/20210914085137.31761-2-sam.shih@xxxxxxxxxxxx/
---

Sam Shih (3):
dt-bindings: clock: mediatek: document clk bindings for mediatek
mt7986 SoC
clk: mediatek: add mt7986 clock IDs
clk: mediatek: add mt7986 clock support

.../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 +
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 +++++++++
12 files changed, 994 insertions(+)
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