linux_dsm_epyc7002/Documentation/devicetree/bindings/clock
Linus Torvalds dc2535be1f We have a fairly balanced mix of clk driver updates and clk framework
updates this time around. It's the usual pile of new drivers for new
 hardware out there and the normal small fixes and updates, but then we
 have some core framework changes too.
 
 In the core framework, we introduce support for a clk_get_optional() API
 to get clks that may not always be populated and a way to devm manage clkdev
 lookups registered by provider drivers. We also do some refactoring to simplify
 the interface between clkdev and the common clk framework so we can reuse the DT
 parsing and clk_get() path in provider drivers in the future. This work will
 continue in the next few cycles while we convert how providers specify clk
 parents.
 
 On the driver side, the biggest part of the dirstat is the Amlogic clk driver
 that got support for the G12A SoC. It dominates with almost half the overall
 diff, while the second largest part of the diff is in the i.MX clk driver
 that gained support for imx8mm SoCs. After that, we have the Actions Semiconductor
 and Qualcomm drivers rounding out the big part of the dirstat because they both
 got new hardware support for SoCs. The rest is just various updates and non-critical
 fixes for existing drivers.
 
 Core:
  - Convert a few clk bindings to JSON schema format
  - Add a {devm_}clk_get_optional() API
  - Add devm_clk_hw_register_clkdev() API to manage clkdev lookups
  - Start rewriting clk parent registration and supporting device links
    by moving around code that supports clk_get() and DT parsing of the
    'clocks' property
 
 New Drivers:
  - Add Qualcomm MSM8998 RPM managed clks
  - IPA clk support on Qualcomm RPMh clk controllers
  - Actions Semi S500 SoC clk support
  - Support for fixed rate clks populated from an MMIO register
  - Add RPC (QSPI/HyperFLASH) clocks on Renesas R-Car V3H
  - Add TMU (timer) clocks on Renesas RZ/G2E
  - Add Amlogic G12A Always-On Clock Controller
  - Add 32k clock generation for Amlogic AXG
  - Add support for the Mali GPU clocks on Amlogic Meson8
  - Add Amlogic G12A EE clock controller driver
  - Add missing CANFD clocks on Renesas RZ/G2M and RZ/G2E
  - Add i.MX8MM SoC clk driver support
 
 Removed Drivers:
  - Remove clps711x driver as the board support is gone
 
 Updates:
  - 3rd ECO fix for Mediatek MT2712 SoCs
  - Updates for Qualcomm MSM8998 GCC clks
  - Random static analysis fixes for clk drivers
  - Support for sleeping gpios in the clk-gpio type
  - Minor fixes for STM32MP1 clk driver (parents, critical flag, etc.)
  - Split LCDC into two clks on the Marvell MMP2 SoC
  - Various DT of_node refcount fixes
  - Get rid of CLK_IS_BASIC from TI code (yay!)
  - TI Autoidle clk support
  - Fix Amlogic Meson8 APB clock ID name
  - Claim input clocks through DT for Amlogic AXG and GXBB
  - Correct the DU (display unit) parent clock on Renesas RZ/G2E
  - Exynos5433 IMEM CMU crypto clk support (SlimSS)
  - Fix for the PLL-MIPI on the Allwinner A23
  - Fix Rockchip rk3328 PLL rate calculation
  - Add SET_RATE_PARENT flag on display clk of Rockhip rk3066
  - i.MX SCU clk driver clk_set_parent() and cpufreq support
 -----BEGIN PGP SIGNATURE-----
 
 iQJFBAABCAAvFiEE9L57QeeUxqYDyoaDrQKIl8bklSUFAlyIK9URHHNib3lkQGtl
 cm5lbC5vcmcACgkQrQKIl8bklSUtIA//SRHcUJBuF7bgLs0GWDL/C0WwQf90bgLn
 83jMUX9MCIS+/RBEUi/Xf9psGVaW3YPEAiRcYUeI1YIZhCrdZHp2YGClKOpXaXth
 vgM7Je+6Say+7ru6J9eHqhbEgx2e+HqT4shxK5I5J0SqMFgdugim4pthk+Lr/WL0
 bMdNHTERZUFrIId10RxuCH7D72nhkwiRkwNDfWjASKoH3spXLKC1vl/wbS5QDE1O
 eXA9OwkonSyrBKX7zMeQiks6f7HWoJO7ei05Twv4CD9UEeS17KmB6mkbmT3GPAuq
 dWbLOnt7I80fMnthKLIR0IWtJuCvPv3jXgP+Fin+e4wutNCnuduHIVc2XeQYmDaX
 rbo/20q4DarL2AaakuowXA7UJ75zYfxPkwgpwcYZ/QW9yzT6QMfynAYekjJGTdt3
 6VootYAwYIsh1VMGZIQLs23AaNYayDy0QWx/prxnEi95lK/+zjqVySPYC/rWe7XQ
 rUrO6YY0YxRdf5uVHneIfIJGs5F/Q8DgdLXp4tf2Ud2YF1bZ0UQOUKehxwM0rxRX
 F9P6iP6mHUuUPMa9rDlwSmgQXDdqH7E5IbXdSPjEFBogBfmhJfVKAo1EyaZgUytZ
 Y42qG/P3fGGfegfWTRAoaDRJn/+HfEmtREdgQ8JO14xlZwRDb/M43IEiQP4zGwlc
 f/OuWu3O9xA=
 =D4Bv
 -----END PGP SIGNATURE-----

Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux

Pull clk subsystem updates from Stephen Boyd:
 "We have a fairly balanced mix of clk driver updates and clk framework
  updates this time around. It's the usual pile of new drivers for new
  hardware out there and the normal small fixes and updates, but then we
  have some core framework changes too.

  In the core framework, we introduce support for a clk_get_optional()
  API to get clks that may not always be populated and a way to devm
  manage clkdev lookups registered by provider drivers. We also do some
  refactoring to simplify the interface between clkdev and the common
  clk framework so we can reuse the DT parsing and clk_get() path in
  provider drivers in the future. This work will continue in the next
  few cycles while we convert how providers specify clk parents.

  On the driver side, the biggest part of the dirstat is the Amlogic clk
  driver that got support for the G12A SoC. It dominates with almost
  half the overall diff, while the second largest part of the diff is in
  the i.MX clk driver that gained support for imx8mm SoCs. After that,
  we have the Actions Semiconductor and Qualcomm drivers rounding out
  the big part of the dirstat because they both got new hardware support
  for SoCs. The rest is just various updates and non-critical fixes for
  existing drivers.

  Core:
   - Convert a few clk bindings to JSON schema format
   - Add a {devm_}clk_get_optional() API
   - Add devm_clk_hw_register_clkdev() API to manage clkdev lookups
   - Start rewriting clk parent registration and supporting device links
     by moving around code that supports clk_get() and DT parsing of the
     'clocks' property

  New Drivers:
   - Add Qualcomm MSM8998 RPM managed clks
   - IPA clk support on Qualcomm RPMh clk controllers
   - Actions Semi S500 SoC clk support
   - Support for fixed rate clks populated from an MMIO register
   - Add RPC (QSPI/HyperFLASH) clocks on Renesas R-Car V3H
   - Add TMU (timer) clocks on Renesas RZ/G2E
   - Add Amlogic G12A Always-On Clock Controller
   - Add 32k clock generation for Amlogic AXG
   - Add support for the Mali GPU clocks on Amlogic Meson8
   - Add Amlogic G12A EE clock controller driver
   - Add missing CANFD clocks on Renesas RZ/G2M and RZ/G2E
   - Add i.MX8MM SoC clk driver support

  Removed Drivers:
   - Remove clps711x driver as the board support is gone

  Updates:
   - 3rd ECO fix for Mediatek MT2712 SoCs
   - Updates for Qualcomm MSM8998 GCC clks
   - Random static analysis fixes for clk drivers
   - Support for sleeping gpios in the clk-gpio type
   - Minor fixes for STM32MP1 clk driver (parents, critical flag, etc.)
   - Split LCDC into two clks on the Marvell MMP2 SoC
   - Various DT of_node refcount fixes
   - Get rid of CLK_IS_BASIC from TI code (yay!)
   - TI Autoidle clk support
   - Fix Amlogic Meson8 APB clock ID name
   - Claim input clocks through DT for Amlogic AXG and GXBB
   - Correct the DU (display unit) parent clock on Renesas RZ/G2E
   - Exynos5433 IMEM CMU crypto clk support (SlimSS)
   - Fix for the PLL-MIPI on the Allwinner A23
   - Fix Rockchip rk3328 PLL rate calculation
   - Add SET_RATE_PARENT flag on display clk of Rockhip rk3066
   - i.MX SCU clk driver clk_set_parent() and cpufreq support"

* tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: (150 commits)
  dt-bindings: clock: imx8mq: Fix numbering overlaps and gaps
  clk: ti: clkctrl: Fix clkdm_name regression for TI_CLK_CLKCTRL_COMPAT
  clk: fixup default index for of_clk_get_by_name()
  clk: Move of_clk_*() APIs into clk.c from clkdev.c
  clk: Inform the core about consumer devices
  clk: Introduce of_clk_get_hw_from_clkspec()
  clk: core: clarify the check for runtime PM
  clk: Combine __clk_get() and __clk_create_clk()
  clk: imx8mq: add GPIO clocks to clock tree
  clk: mediatek: correct cpu clock name for MT8173 SoC
  clk: imx: Refactor entire sccg pll clk
  clk: imx: scu: add cpu frequency scaling support
  clk: mediatek: Mark bus and DRAM related clocks as critical
  clk: mediatek: Add flags to mtk_gate
  clk: mediatek: Add MUX_FLAGS macro
  clk: qcom: gcc-sdm845: Define parent of PCIe PIPE clocks
  clk: ingenic: Remove set but not used variable 'enable'
  clk: at91: programmable: remove unneeded register read
  clk: mediatek: using CLK_MUX_ROUND_CLOSEST for the clock of dpi1_sel
  clk: mediatek: add MUX_GATE_FLAGS_2
  ...
2019-03-14 08:46:17 -07:00
..
st
ti
actions,owl-cmu.txt dt-bindings: clock: Add DT bindings for Actions Semi S500 CMU 2019-02-22 00:01:08 -08:00
alphascale,acc.txt
altr_socfpga.txt
amlogic,axg-audio-clkc.txt
amlogic,gxbb-aoclkc.txt dt-bindings: clk: add G12A AO Clock and Reset Bindings 2019-02-13 09:49:17 +01:00
amlogic,gxbb-clkc.txt dt-bindings: clk: meson: add g12a periph clock controller bindings 2019-02-04 09:52:11 +01:00
amlogic,meson8b-clkc.txt
arm-integrator.txt
arm-syscon-icst.txt
armada3700-periph-clock.txt
armada3700-tbg-clock.txt
armada3700-xtal-clock.txt
artpec6.txt
at91-clock.txt
axi-clkgen.txt
axs10x-i2s-pll-clock.txt
brcm,bcm2835-aux-clock.txt
brcm,bcm2835-cprman.txt
brcm,bcm53573-ilp.txt
brcm,iproc-clocks.txt
brcm,kona-ccu.txt
calxeda.txt
clk-exynos-audss.txt
clk-palmas-clk32kg-clocks.txt
clk-s5pv210-audss.txt
clock-bindings.txt
clps711x-clock.txt
cs2000-cp.txt
csr,atlas7-car.txt
dove-divider-clock.txt
efm32-clock.txt
emev2-clock.txt
exynos4-clock.txt
exynos7-clock.txt
exynos3250-clock.txt
exynos5250-clock.txt
exynos5260-clock.txt
exynos5410-clock.txt
exynos5420-clock.txt
exynos5433-clock.txt clk: samsung: dt-bindings: Document Exynos5433 IMEM CMU 2019-02-01 14:36:47 +01:00
fixed-clock.yaml dt-bindings: clock: Convert fixed-clock binding to json-schema 2019-01-24 14:51:16 -08:00
fixed-factor-clock.yaml dt-bindings: clock: Convert fixed-factor-clock to json-schema 2019-01-24 14:52:27 -08:00
fixed-mmio-clock.txt dt-bindings: clk: Add bindings for Fixed MMIO clock 2019-01-09 11:30:19 -08:00
fujitsu,mb86s70-crg11.txt
gpio-gate-clock.txt
gpio-mux-clock.txt
hi3620-clock.txt
hi3660-clock.txt
hi3670-clock.txt
hi6220-clock.txt
hisi-crg.txt
hix5hd2-clock.txt
idt,versaclock5.txt
img,boston-clock.txt
imx1-clock.txt
imx5-clock.txt
imx6q-clock.txt clk: imx6q: optionally get CCM inputs via standard clock handles 2018-12-10 11:37:07 -08:00
imx6sl-clock.txt
imx6sll-clock.txt
imx6sx-clock.txt
imx6ul-clock.txt
imx7d-clock.txt
imx7ulp-clock.txt dt-bindings: clock: add imx7ulp clock binding doc 2018-12-03 11:31:36 -08:00
imx8mm-clock.txt dt-bindings: imx: Add clock binding doc for imx8mm 2019-02-21 12:41:16 -08:00
imx8mq-clock.txt dt-bindings: Add binding for i.MX8MQ CCM 2018-12-03 10:12:50 -08:00
imx8qxp-lpcg.txt dt-bindings: clock: add imx8qxp lpcg clock binding 2018-12-13 22:12:46 -08:00
imx21-clock.txt
imx23-clock.txt
imx25-clock.txt
imx27-clock.txt
imx28-clock.txt
imx31-clock.txt
imx35-clock.txt
ingenic,cgu.txt
intc_stratix10.txt
keystone-gate.txt
keystone-pll.txt
lpc1850-ccu.txt
lpc1850-cgu.txt
lpc1850-creg-clk.txt
lsi,axm5516-clks.txt
marvell,berlin.txt
marvell,mmp2.txt dt-bindings: marvell,mmp2: fix typos in bindings doc 2019-01-11 14:13:33 -06:00
marvell,pxa168.txt
marvell,pxa910.txt
marvell,pxa1928.txt
maxim,max9485.txt
maxim,max77686.txt
microchip,pic32.txt
moxa,moxart-clock.txt
mvebu-core-clock.txt
mvebu-corediv-clock.txt
mvebu-cpu-clock.txt
mvebu-gated-clock.txt
nspire-clock.txt
nuvoton,npcm750-clk.txt
nvidia,tegra20-car.txt
nvidia,tegra30-car.txt
nvidia,tegra114-car.txt
nvidia,tegra124-car.txt
nvidia,tegra124-dfll.txt dt-bindings: clock: tegra124-dfll: add Tegra210 support 2019-02-06 14:27:21 +01:00
nvidia,tegra210-car.txt
nxp,lpc3220-clk.txt
nxp,lpc3220-usb-clk.txt
oxnas,stdclk.txt
pistachio-clock.txt
prima2-clock.txt
pwm-clock.txt
pxa-clock.txt
qca,ath79-pll.txt
qcom,a53pll.txt
qcom,camcc.txt
qcom,dispcc.txt
qcom,gcc.txt dt-bindings: clock: Introduce QCOM LPASS clock bindings 2018-12-03 09:25:01 -08:00
qcom,gpucc.txt dt-bindings: clock: qcom: Fix the xo parent in gpucc example 2018-11-28 13:26:10 -08:00
qcom,hfpll.txt
qcom,krait-cc.txt
qcom,lcc.txt
qcom,lpasscc.txt dt-bindings: clock: Introduce QCOM LPASS clock bindings 2018-12-03 09:25:01 -08:00
qcom,mmcc.txt
qcom,rpmcc.txt clk: qcom: smd: Add support for MSM8998 rpm clocks 2019-01-09 11:46:42 -08:00
qcom,rpmh-clk.txt
qcom,spmi-clkdiv.txt
qcom,videocc.txt dt-bindings: clock: Require #reset-cells in sdm845-videocc 2018-11-30 01:01:21 -08:00
qoriq-clock.txt clk: qoriq: add more compatibles strings 2018-12-21 21:00:07 -06:00
renesas,cpg-div6-clocks.txt
renesas,cpg-mssr.txt
renesas,cpg-mstp-clocks.txt
renesas,h8s2678-pll-clock.txt
renesas,h8300-div-clock.txt
renesas,r8a73a4-cpg-clocks.txt
renesas,r8a7740-cpg-clocks.txt
renesas,r8a7778-cpg-clocks.txt
renesas,r8a7779-cpg-clocks.txt
renesas,r9a06g032-sysctrl.txt
renesas,rcar-gen2-cpg-clocks.txt
renesas,rcar-usb2-clock-sel.txt
renesas,rz-cpg-clocks.txt
renesas,sh73a0-cpg-clocks.txt
rockchip,px30-cru.txt
rockchip,rk3036-cru.txt
rockchip,rk3128-cru.txt
rockchip,rk3188-cru.txt
rockchip,rk3228-cru.txt
rockchip,rk3288-cru.txt
rockchip,rk3328-cru.txt
rockchip,rk3368-cru.txt
rockchip,rk3399-cru.txt
rockchip,rv1108-cru.txt
samsung,s2mps11.txt
samsung,s3c64xx-clock.txt
samsung,s3c2410-clock.txt
samsung,s3c2412-clock.txt
samsung,s3c2443-clock.txt
samsung,s5pv210-clock.txt
silabs,si514.txt
silabs,si544.txt
silabs,si570.txt
silabs,si5351.txt
snps,hsdk-pll-clock.txt
snps,pll-clock.txt
sprd.txt
st,nomadik.txt
st,stm32-rcc.txt
st,stm32h7-rcc.txt
st,stm32mp1-rcc.txt
ste-u300-syscon-clock.txt
stericsson,abx500.txt
sun8i-de2.txt
sun9i-de.txt
sun9i-usb.txt
sunxi-ccu.txt dt-bindings: clock: Add Allwinner suniv F1C100s CCU 2018-12-04 08:41:13 +01:00
sunxi.txt
tango4-clock.txt
ti-clkctrl.txt
ti-keystone-pllctrl.txt
ti,cdce706.txt
ti,cdce925.txt
ti,sci-clk.txt
uniphier-clock.txt
ux500.txt
vf610-clock.txt
vt8500.txt
xgene.txt
zx296702-clk.txt
zx296718-clk.txt
zynq-7000.txt