1
0
Fork 0
alistair23-linux/include/dt-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
..
actions,s500-cmu.h dt-bindings: clock: Add DT bindings for Actions Semi S500 CMU 2019-02-22 00:01:08 -08:00
actions,s700-cmu.h dt-bindings: clock: Add S700 support for Actions Semi Soc's 2018-07-25 16:40:53 -07:00
actions,s900-cmu.h dt-bindings: clock: Add Actions S900 clock bindings 2018-03-19 17:59:38 -07:00
alphascale,asm9260.h
am3.h dt-bindings: clock: am33xx: add clkctrl indices for new data layout 2018-10-03 15:02:26 +03:00
am4.h dt-bindings: clock: am43xx: add clkctrl indices for new data layout 2018-10-03 15:02:26 +03:00
aspeed-clock.h clk: aspeed: Fix SDCLK name 2018-07-06 13:56:06 -07:00
at91.h clk: at91: add new DT lookup function 2018-10-17 10:44:33 -07:00
ath79-clk.h MIPS: ath79: export switch MDIO reference clock 2019-01-22 11:17:22 -08:00
axg-aoclkc.h dt-bindings: clk: meson: add ao slow clock path ids 2019-01-07 15:18:59 +01:00
axg-audio-clkc.h dt-bindings: clock: add meson axg audio clock controller bindings 2018-06-22 12:59:05 +02:00
axg-clkc.h clk: meson: expose GEN_CLK clkid 2018-07-09 13:37:31 +02:00
axis,artpec6-clkctrl.h
bcm-cygnus.h
bcm-ns2.h
bcm-nsp.h
bcm-sr.h dt-bindings: clk: Update Stingray binding doc 2018-06-01 23:26:36 -07:00
bcm281xx.h
bcm2835-aux.h clk: bcm2835: Switch to SPDX identifier 2018-11-14 14:42:45 -08:00
bcm2835.h clk: bcm2835: Switch to SPDX identifier 2018-11-14 14:42:45 -08:00
bcm21664.h
berlin2.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
berlin2q.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
boston-clock.h dt-bindings: Document img,boston-clock binding 2017-07-11 14:13:06 +02:00
clps711x-clock.h
cortina,gemini-clock.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
dm814.h dt-bindings: clk: add dm814 clkctrl definitions 2017-12-01 15:17:57 +02:00
dm816.h dt-bindings: clk: add dm816 clkctrl definitions 2017-12-01 15:18:04 +02:00
dra7.h dt-bindings: clock: dra7xx: add clkctrl indices for new data layout 2018-10-03 15:02:26 +03:00
efm32-cmu.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
exynos-audss-clk.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
exynos4.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos7-clk.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos3250.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5250.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5260-clk.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5410.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5420.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5433.h clk: samsung: exynos5433: Fix name typo in sssx 2019-02-01 14:36:47 +01:00
g12a-aoclkc.h dt-bindings: clk: add G12A AO Clock and Reset Bindings 2019-02-13 09:49:17 +01:00
g12a-clkc.h dt-bindings: clk: meson: add g12a periph clock controller bindings 2019-02-04 09:52:11 +01:00
gxbb-aoclkc.h dt-bindings: clk: meson: add ao slow clock path ids 2019-01-07 15:18:59 +01:00
gxbb-clkc.h dt-bindings: clk: meson-gxbb: Add Video clock bindings 2018-11-23 15:11:56 +01:00
hi3516cv300-clock.h
hi3519-clock.h
hi3620-clock.h
hi3660-clock.h dt-bindings: clk: Hi3660: Document stub clock 2017-12-06 22:54:37 -08:00
hi3670-clock.h dt-bindings: clk: hisilicon: Add bindings for Hi3670 clk 2018-10-16 14:46:56 -07:00
hi6220-clock.h clk: hi6220: add acpu clock 2017-06-19 19:02:42 -07:00
hip04-clock.h
histb-clock.h clk: hisilicon: add missing usb3 clocks for Hi3798CV200 SoC 2018-05-15 15:12:06 -07:00
hix5hd2-clock.h
imx1-clock.h
imx5-clock.h clk: imx5: add imx5_SCC2_IPG_GATE 2019-02-21 12:41:16 -08:00
imx6qdl-clock.h clk: imx6q: add DCICx clocks gate 2018-12-10 11:34:50 -08:00
imx6sl-clock.h clk: imx6sl: add mmdc ipg clocks 2018-10-17 11:15:51 -07:00
imx6sll-clock.h clk: imx6sll: add mmdc1 ipg clock 2018-10-17 11:15:44 -07:00
imx6sx-clock.h clk: imx6sx: add mmdc1 ipg clock 2018-10-17 11:15:32 -07:00
imx6ul-clock.h clk: imx6ul: add mmdc1 ipg clock 2018-10-17 11:15:20 -07:00
imx7d-clock.h clk: imx7d: correct enet clock CCGR registers 2018-06-01 12:15:21 -07:00
imx7ulp-clock.h dt-bindings: clock: imx7ulp: add HSRUN mode related clocks 2018-12-14 14:03:11 -08:00
imx8-clock.h clk: imx8qxp: make the name of clock ID generic 2018-12-28 10:43:57 -08:00
imx8mm-clock.h dt-bindings: imx: Add clock binding doc for imx8mm 2019-02-21 12:41:16 -08:00
imx8mq-clock.h dt-bindings: clock: imx8mq: Fix numbering overlaps and gaps 2019-03-12 13:40:10 -07:00
imx21-clock.h
imx27-clock.h
jz4725b-cgu.h dt-bindings: clock: Add jz4725b-cgu.h header 2018-10-16 15:19:43 -07:00
jz4740-cgu.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
jz4770-cgu.h dt-bindings: clock: Add jz4770-cgu.h header 2018-01-18 22:05:42 +00:00
jz4780-cgu.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
lpc18xx-ccu.h
lpc18xx-cgu.h
lpc32xx-clock.h
lsi,axm5516-clks.h
marvell,mmp2.h dt-bindings: marvell,mmp2: Add clock id for the LCDC clock 2019-02-21 13:52:00 -08:00
marvell,pxa168.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
marvell,pxa910.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
marvell,pxa1928.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
maxim,max9485.h dts: clk: add devicetree bindings for MAX9485 2018-07-06 11:27:24 -07:00
maxim,max77620.h
maxim,max77686.h clk: max77686: Add SPDX license identifiers 2018-08-27 14:16:51 -07:00
maxim,max77802.h clk: max77686: Add SPDX license identifiers 2018-08-27 14:16:51 -07:00
meson8b-clkc.h dt-bindings: clock: meson8b: add APB clock definition 2019-02-13 09:50:16 +01:00
microchip,pic32-clock.h
mpc512x-clock.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
mt2701-clk.h Merge branches 'clk-hisi-usb', 'clk-silent-bulk', 'clk-mtk-hdmi', 'clk-mtk-mali' and 'clk-imx6ul-ccosr' into clk-next 2018-06-04 12:27:40 -07:00
mt2712-clk.h dt-bindings: clock: add clock for MT2712 2019-02-05 13:27:56 -08:00
mt6797-clk.h
mt7622-clk.h clk: mediatek: update missing clock data for MT7622 audsys 2018-03-19 13:40:57 -07:00
mt7629-clk.h clk: mediatek: add clock support for MT7629 SoC 2018-11-29 22:52:05 -08:00
mt8135-clk.h
mt8173-clk.h clk: mediatek: correct cpu clock name for MT8173 SoC 2019-02-26 10:17:40 -08:00
nuvoton,npcm7xx-clock.h dt-binding: clk: npcm750: Add binding for Nuvoton NPCM7XX Clock 2018-03-23 10:11:25 -07:00
omap4.h dt-bindings: clk: add omap4 clkctrl definitions 2017-06-15 10:47:59 +03:00
omap5.h dt-bindings: clk: add omap5 clkctrl definitions 2017-12-01 15:17:17 +02:00
oxsemi,ox810se.h
oxsemi,ox820.h
pistachio-clk.h
px30-cru.h clk: rockchip: add dt-binding header for px30 2018-07-03 20:49:09 +02:00
pxa-clock.h clk: pxa: export 32kHz PLL 2018-07-06 13:52:57 -07:00
qcom,camcc-sdm845.h dt-bindings: clock: Introduce QCOM Camera clock bindings 2018-08-30 18:26:45 -07:00
qcom,dispcc-sdm845.h dt-bindings: clock: Introduce QCOM Display clock bindings 2018-07-06 16:46:22 -07:00
qcom,gcc-apq8084.h
qcom,gcc-ipq806x.h
qcom,gcc-ipq4019.h
qcom,gcc-ipq8074.h dt-bindings: clock: qcom: add misc resets for PCIE and NSS 2017-12-21 16:03:38 -08:00
qcom,gcc-mdm9615.h
qcom,gcc-msm8660.h
qcom,gcc-msm8916.h
qcom,gcc-msm8960.h clk: qcom: Add MSM8960/APQ8064's HFPLLs 2018-10-17 13:14:45 -07:00
qcom,gcc-msm8974.h
qcom,gcc-msm8994.h
qcom,gcc-msm8996.h clk: qcom: Add some missing gcc clks for msm8996 2018-08-28 15:51:44 -07:00
qcom,gcc-msm8998.h clk: qcom: Add missing msm8998 resets 2018-12-11 13:25:24 -08:00
qcom,gcc-qcs404.h clk: qcom: gcc: Add global clock controller driver for QCS404 2018-10-16 15:13:54 -07:00
qcom,gcc-sdm660.h clk: qcom: Add Global Clock controller (GCC) driver for SDM660 2018-10-16 15:06:43 -07:00
qcom,gcc-sdm845.h dt-bindings: clock: Introduce QCOM LPASS clock bindings 2018-12-03 09:25:01 -08:00
qcom,gpucc-sdm845.h dt-bindings: clock: Introduce QCOM Graphics clock bindings 2018-11-27 16:24:44 -08:00
qcom,lcc-ipq806x.h
qcom,lcc-mdm9615.h
qcom,lcc-msm8960.h
qcom,lpass-sdm845.h dt-bindings: clock: Introduce QCOM LPASS clock bindings 2018-12-03 09:25:01 -08:00
qcom,mmcc-apq8084.h
qcom,mmcc-msm8960.h
qcom,mmcc-msm8974.h
qcom,mmcc-msm8996.h
qcom,rpmcc.h clk: qcom: smd: Add support for MSM8998 rpm clocks 2019-01-09 11:46:42 -08:00
qcom,rpmh.h clk: qcom: clk-rpmh: Add IPA clock support 2019-02-21 13:57:55 -08:00
qcom,videocc-sdm845.h dt-bindings: clock: Introduce QCOM Video clock bindings 2018-06-01 11:49:07 -07:00
r7s9210-cpg-mssr.h clk: renesas: cpg-mssr: Add R7S9210 support 2018-09-11 12:01:07 +02:00
r7s72100-clock.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a73a4-clock.h
r8a774a1-cpg-mssr.h clk: renesas: r8a774a1: Add missing CANFD clock 2019-01-21 14:01:57 +01:00
r8a774c0-cpg-mssr.h clk: renesas: r8a774c0: Add missing CANFD clock 2019-01-21 13:50:40 +01:00
r8a7740-clock.h
r8a7743-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7744-cpg-mssr.h clk: renesas: Add r8a7744 CPG Core Clock Definitions 2018-09-19 16:37:56 +02:00
r8a7745-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7778-clock.h ARM: dts: r8a7778: Add HSCIF0/1 support 2019-01-17 14:15:57 +01:00
r8a7779-clock.h
r8a7790-clock.h
r8a7790-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7791-clock.h
r8a7791-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7792-clock.h
r8a7792-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7793-clock.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7793-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7794-clock.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7794-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7795-cpg-mssr.h dt-bindings: clock: r8a7795: Remove CSIREF clock 2018-12-04 10:29:30 +01:00
r8a7796-cpg-mssr.h dt-bindings: clock: r8a7796: Remove CSIREF clock 2018-12-04 10:29:35 +01:00
r8a77470-cpg-mssr.h clk: renesas: Add r8a77470 CPG Core Clock Definitions 2018-04-16 13:39:38 +02:00
r8a77965-cpg-mssr.h clk: renesas: cpg-mssr: Add support for R-Car M3-N 2018-02-26 09:13:29 +01:00
r8a77970-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a77980-cpg-mssr.h dt-bindings: clock: add R8A77980 CPG core clock definitions 2018-02-20 13:38:32 +01:00
r8a77990-cpg-mssr.h clk: renesas: Add r8a77990 CPG Core Clock Definitions 2018-04-24 09:54:34 +02:00
r8a77995-cpg-mssr.h clk: renesas: r8a77995: Add missing CPEX clock 2018-12-04 10:30:05 +01:00
r9a06g032-sysctrl.h dt-bindings: clock: Add the r9a06g032-sysctrl.h file 2018-06-22 15:24:42 +02:00
renesas-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
rk3036-cru.h
rk3066a-cru.h
rk3128-cru.h clk: rockchip: add dt-binding header for rk3128 2017-06-02 14:17:05 +02:00
rk3188-cru-common.h clk: rockchip: add clock-id for HCLK_HDMI on rk3066 2018-10-11 14:57:25 +02:00
rk3188-cru.h
rk3228-cru.h clk: rockchip: add rk3228 sclk_sdio_src ID 2017-08-22 00:36:50 +02:00
rk3288-cru.h
rk3328-cru.h Merge branch 'v4.21-shared/clkids' into v4.21-clk/next 2018-11-26 14:20:55 +01:00
rk3368-cru.h clk: rockchip: add clock id for PCLK_EFUSE256 of RK3368 SoCs 2017-10-14 21:26:51 +02:00
rk3399-cru.h
rk3399-ddr.h dt-bindings: clock: add rk3399 DDR3 standard speed bins. 2018-07-18 13:58:30 +09:00
rockchip,rk808.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
rv1108-cru.h clk: rockchip: rename rv1108 macphy clock to mac 2017-08-22 02:53:55 +02:00
s3c2410.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
s3c2412.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
s3c2443.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
s5pv210-audss.h
s5pv210.h
samsung,s2mps11.h clk: s2mps11,s3c64xx: Add SPDX license identifiers 2018-08-27 14:17:03 -07:00
samsung,s3c64xx-clock.h clk: s2mps11,s3c64xx: Add SPDX license identifiers 2018-08-27 14:17:03 -07:00
sh73a0-clock.h
sprd,sc9860-clk.h dt-bindings: clocks: add APB RTC gate for SC9860 2018-03-16 15:53:31 -07:00
ste-ab8500.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stih407-clks.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stih410-clks.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stih416-clks.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stih418-clks.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stm32fx-clock.h clk: stm32: Add DSI clock for STM32F469 Board 2018-03-19 13:45:11 -07:00
stm32h7-clks.h clk: stm32h7: Add stm32h743 clock driver 2017-08-31 18:35:47 -07:00
stm32mp1-clks.h dt-bindings: clock: remove unused definition for stm32mp1 2019-02-21 14:16:27 -08:00
stratix10-clock.h dt-bindings: documentation: add clock bindings information for Stratix10 2018-04-06 09:54:59 -07:00
sun4i-a10-ccu.h clk: sunxi-ng: sun4i: Export video PLLs 2017-10-17 19:32:16 +02:00
sun4i-a10-pll2.h
sun5i-ccu.h clk: sunxi-ng: sun5i: Export video PLLs 2017-06-07 15:32:14 +02:00
sun6i-a31-ccu.h clk: sunxi-ng: sun6i: Export video PLLs 2017-09-29 10:46:10 +02:00
sun7i-a20-ccu.h clk: sunxi-ng: Add sun4i/sun7i CCU driver 2017-08-24 10:15:54 +02:00
sun8i-a23-a33-ccu.h
sun8i-a83t-ccu.h clk: sunxi-ng: Add driver for A83T CCU 2017-06-07 15:32:16 +02:00
sun8i-de2.h dt-bindings: clock: sun8i-de2: Add H6 DE3 clock description 2018-11-05 10:22:02 +01:00
sun8i-h3-ccu.h clk: sunxi-ng: h3: h5: export CLK_PLL_VIDEO 2018-03-02 08:42:30 +01:00
sun8i-r-ccu.h
sun8i-r40-ccu.h clk: sunxi-ng: r40: Export video PLLs 2018-06-27 19:06:56 +02:00
sun8i-tcon-top.h dt-bindings: display: sunxi-drm: Add TCON TOP description 2018-06-27 21:43:47 +02:00
sun8i-v3s-ccu.h
sun9i-a80-ccu.h
sun9i-a80-de.h
sun9i-a80-usb.h
sun50i-a64-ccu.h dt-bindings: clock: sun50i-a64-ccu: Add PLL_VIDEO0 macro 2018-09-05 09:19:59 +02:00
sun50i-h6-ccu.h clk: sunxi-ng: add missing hdmi-slow clock for H6 CCU 2018-03-21 12:27:13 +01:00
sun50i-h6-r-ccu.h clk: sunxi-ng: add support for H6 PRCM CCU 2018-05-04 17:05:46 +02:00
suniv-ccu-f1c100s.h dt-bindings: clock: Add Allwinner suniv F1C100s CCU 2018-12-04 08:41:13 +01:00
tegra20-car.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra30-car.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra114-car.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra124-car-common.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra124-car.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra186-clock.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra194-clock.h arm64: tegra: Add Tegra194 chip device tree 2018-03-08 14:31:13 +01:00
tegra210-car.h clk: tegra: Add la clock for Tegra210 2018-03-08 15:26:11 +01:00
vf610-clock.h
xlnx,zynqmp-clk.h dt-bindings: clock: Add bindings for ZynqMP clock driver 2018-10-09 13:26:34 +02:00
zx296702-clock.h
zx296718-clock.h clk: zx296718: export I2S mux clocks 2017-06-19 19:02:42 -07:00