linux/include/dt-bindings/clock
Linus Torvalds 36001a2fa6 The clk core gains a new set of APIs that allow drivers to both acquire clks
and prepare and enable them at the same time. This also comes with devm support
 so that drivers can make a single call to get and prepare and enable the clk
 and have that all undone when their driver is removed. Many folks have
 requested this feature over the years, but we've had disagreements about how to
 implement it and if it was worthwhile to encourage drivers to use such an API.
 Now it's here, so let's see how it goes. I hope that by introducing this API we
 can identify drivers that would benefit from further consolidation of clk API
 usage, possibly by moving such logic to the bus layer and out of drivers
 altogether.
 
 Outside of that major API update, we have the usual collection of driver
 updates. A few new SoCs are supported, mostly Qualcomm and Renesas this time
 around. Then we have the long tail of non-critical fixes and minor feature
 additions to various clk drivers. And finally more clk provider migration to
 struct clk_parent_data, reducing boot times in the process.
 
 Core:
  - devm helpers for clk_get() + clk_prepare() and clk_enable()
 
 New Drivers:
  - Support for the camera clock controller in Qualcomm SM8450 and
    the display and gpu clock controllers in Qualcomm SM8350
  - Add support for the Renesas RZ/Five SoC
 
 Updates:
  - Various fixes, new clocks and USB GDSCs are introduced for Qualcomm IPQ8074
  - Fixes to Qualcomm MSM8939 for issues introduced by inheriting the MSM8916
    GCC driver
  - Support for a new type of voteable GDSCs used by Qualcomm SC8280XP PCIe
    GDSCs
  - Qualcomm SC8280XP pipe clocks transitioned to the new phy-mux implementation
  - Qualcomm MSM8996 GCC, RPM clock driver and some clocks in MSM8994 GCC are
    migrated to use clk_parent_data
  - Corrected the topology for Titan (camera) GDSCs on Qualcomm SDM845 and
    SM8250
  - Qualcomm MSM8916 gains more possible frequencies for its GP clocks.
  - The GCC and tsens handling on Qualcomm MSM8960 is reworked to mimic the
    design in IPQ8074 to allow the GCC driver to probe earlier.
  - The regulator based mmcx supply for Qualcomm dispcc and videocc is dropped,
    as the only upstream target that adapted this interface was transitioned
    several kernel versions ago
  - Qualcomm GDSCs found to be enabled at boot will now reflect in the enable
    count of the supply, as was done with the regulator supplies previously
  - Correct adc1, nic_media and edma1's parents for NXP i.MX93
  - rdiv, mfd values, the return rate in recalc_rate and add more frequencies in
    the table for fracn-gppll on i.MX
  - Remove Allwinner workaround logic/compatible in fixed factor code
  - MediaTek clk driver cleanups
  - Add reset support to more MediaTek clk drivers
  - deduplicate Allwinner ccu_clks arrays
  - Allwinner H6 GPU DFS support
  - Adjust Allwinner Kconfig to limit choice
  - Fix initconst confusion on Renesas R-Car Gen4
  - Add GPT/POEG (PWM) clocks and resets on Renesas RZ/G2L
  - Add PFC and WDT clocks and resets on Renesas RZ/V2M
  - Add thermal, SDHI, Z (CPU core), PCIe, and HSCIF (serial) clocks on
    Renesas R-Car S4-8
 -----BEGIN PGP SIGNATURE-----
 
 iQJFBAABCAAvFiEE9L57QeeUxqYDyoaDrQKIl8bklSUFAmLsVRsRHHNib3lkQGtl
 cm5lbC5vcmcACgkQrQKIl8bklSVo7g//WK8+RORL+I48Pzu21Al+eT4Thz3OQJJj
 v3Jk4UY8/7Hnj5jpXI/FguOyah14Jpjp6dJdIvJ/llIHGQHiwIjXlrGQghtOMMHO
 6Tkgc4MTPrkQ7asF/D22afG1yMv/qPne2HAtu7gRVebn6AOaje2tnbbQA0e11geD
 9wPWhzhgCdShLxxjifN9t1ucklW9BCij1dhczEsf13uACwkUwihC26s3JTzvMxF+
 PAXQ1YFzooFFBop6eT0+jQ8JB5V1HPZ55q7K144aFIMhbue4VzyFtTxL16wdzygX
 qeMT9cHy1agLEk8djyh/ZIGU/iUD2byE3zTU6xIITfj+oEMTrYdoQIv/chk4h/4u
 gz2ihCY4Tj2nBRblDuaXRn46E5XlAVlllJ7bFrK3SlpefyPEc3B6qF8tm1wBJ5pL
 dfP2DZACrFEqHVYxZpj6VTLDoR7c1fuyQT0SbPagnqAiboS2wlB4zyyogrOXZ/JO
 FqMC+qEkxm25ByY0+RgiKnZ7GSAyt6etZcFGnA3yz7jgoXT4PRYk3uQ40wxE/ttx
 eoUoc3QbW5mjSNLlcb8FcxVRkPoh2g+vGlkhQx2xJ5RMbk07pqylaCs5p6cbh0uu
 8wn8yIq3bqYTFDR0zurwWGKVRcnH4ukzKScnUfpbrvzXJ9bhHXVC3kAHtXlpOzRe
 5IVQPxEVd+8=
 =jUh+
 -----END PGP SIGNATURE-----

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

Pull clk updates from Stephen Boyd:
 "The clk core gains a new set of APIs that allow drivers to both
  acquire clks and prepare and enable them at the same time. This also
  comes with devm support so that drivers can make a single call to get
  and prepare and enable the clk and have that all undone when their
  driver is removed.

  Many folks have requested this feature over the years, but we've had
  disagreements about how to implement it and if it was worthwhile to
  encourage drivers to use such an API.

  Now it's here, so let's see how it goes.

  I hope that by introducing this API we can identify drivers that would
  benefit from further consolidation of clk API usage, possibly by
  moving such logic to the bus layer and out of drivers altogether.

  Outside of that major API update, we have the usual collection of
  driver updates. A few new SoCs are supported, mostly Qualcomm and
  Renesas this time around. Then we have the long tail of non-critical
  fixes and minor feature additions to various clk drivers.

  And finally more clk provider migration to struct clk_parent_data,
  reducing boot times in the process.

  Summary:

  Core:

   - devm helpers for clk_get() + clk_prepare() and clk_enable()

  New Drivers:

   - Support for the camera clock controller in Qualcomm SM8450 and the
     display and gpu clock controllers in Qualcomm SM8350

   - Add support for the Renesas RZ/Five SoC

  Updates:

   - Various fixes, new clocks and USB GDSCs are introduced for Qualcomm
     IPQ8074

   - Fixes to Qualcomm MSM8939 for issues introduced by inheriting the
     MSM8916 GCC driver

   - Support for a new type of voteable GDSCs used by Qualcomm SC8280XP
     PCIe GDSCs

   - Qualcomm SC8280XP pipe clocks transitioned to the new phy-mux
     implementation

   - Qualcomm MSM8996 GCC, RPM clock driver and some clocks in MSM8994
     GCC are migrated to use clk_parent_data

   - Corrected the topology for Titan (camera) GDSCs on Qualcomm SDM845
     and SM8250

   - Qualcomm MSM8916 gains more possible frequencies for its GP clocks.

   - The GCC and tsens handling on Qualcomm MSM8960 is reworked to mimic
     the design in IPQ8074 to allow the GCC driver to probe earlier.

   - The regulator based mmcx supply for Qualcomm dispcc and videocc is
     dropped, as the only upstream target that adapted this interface
     was transitioned several kernel versions ago

   - Qualcomm GDSCs found to be enabled at boot will now reflect in the
     enable count of the supply, as was done with the regulator supplies
     previously

   - Correct adc1, nic_media and edma1's parents for NXP i.MX93

   - rdiv, mfd values, the return rate in recalc_rate and add more
     frequencies in the table for fracn-gppll on i.MX

   - Remove Allwinner workaround logic/compatible in fixed factor code

   - MediaTek clk driver cleanups

   - Add reset support to more MediaTek clk drivers

   - deduplicate Allwinner ccu_clks arrays

   - Allwinner H6 GPU DFS support

   - Adjust Allwinner Kconfig to limit choice

   - Fix initconst confusion on Renesas R-Car Gen4

   - Add GPT/POEG (PWM) clocks and resets on Renesas RZ/G2L

   - Add PFC and WDT clocks and resets on Renesas RZ/V2M

   - Add thermal, SDHI, Z (CPU core), PCIe, and HSCIF (serial) clocks on
     Renesas R-Car S4-8"

* tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: (124 commits)
  clk: fixed-factor: Introduce *clk_hw_register_fixed_factor_parent_hw()
  clk: mux: Introduce devm_clk_hw_register_mux_parent_hws()
  clk: divider: Introduce devm_clk_hw_register_divider_parent_hw()
  clk: qcom: gcc-msm8994: use parent_hws for gpll0/4
  clk: qcom: clk-rpm: convert to parent_data API
  dt-bindings: clock: fix wrong clock documentation for qcom,rpmcc
  clk: qcom: gcc-msm8939: Add missing USB HS system clock frequencies
  clk: qcom: gcc-msm8939: Add missing MDSS MDP clock frequencies
  clk: qcom: gcc-msm8939: Add missing CAMSS CPP clock frequencies
  clk: qcom: gcc-msm8939: Fix venus0_vcodec0_clk frequency definitions
  clk: qcom: gcc-msm8939: Add missing CAMSS CCI bus clock
  clk: qcom: gcc-msm8939: Fix weird field spacing in ftbl_gcc_camss_cci_clk
  clk: qcom: gdsc: Bump parent usage count when GDSC is found enabled
  clk: qcom: Drop mmcx gdsc supply for dispcc and videocc
  clk: qcom: fix build error initializer element is not constant
  clk: sprd: Add dt-bindings include file for UMS512
  dt-bindings: clk: sprd: Add bindings for ums512 clock controller
  clk: sunxi-ng: sun50i: h6: Modify GPU clock configuration to support DFS
  dt-bindings: clock: qcom,gcc-msm8996: add more GCC clock sources
  clk: qcom: add support for SM8350 DISPCC
  ...
2022-08-04 18:40:08 -07:00
..
actions,s500-cmu.h dt-bindings: clock: Add NIC and ETHERNET bindings for Actions S500 SoC 2021-06-27 18:45:16 -07: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
agilex-clock.h dt-bindings: agilex: add NAND_X_CLK and NAND_ECC_CLK 2020-06-19 19:27:33 -07:00
alphascale,asm9260.h dt-bindings: clk: cleanup comments 2022-03-10 17:22:25 -06:00
am3.h clk: ti: Drop legacy compatibility clocks for am3 2022-03-15 14:07:27 -07:00
am4.h clk: ti: Drop legacy compatibility clocks for am4 2022-03-15 14:07:27 -07:00
aspeed-clock.h dt-bindings: clock: Add AST2500 RMII RCLK definitions 2019-11-01 15:01:10 +10:30
ast2600-clock.h dt-bindings: clock: Add AST2600 RMII RCLK gate definitions 2019-11-01 15:01:18 +10:30
at91.h ARM: dts: at91: sama7g5: Add NAND support 2022-03-04 15:03:53 +01:00
ath79-clk.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02: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: clk: axg-audio: add sm1 bindings 2019-10-08 09:28:07 +02:00
axg-clkc.h clk: meson-axg: remove CLKID_MIPI_ENABLE 2021-02-09 13:32:21 +01:00
axis,artpec6-clkctrl.h dt-bindings: clk: cleanup comments 2022-03-10 17:22:25 -06:00
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 treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_30.RULE (part 2) 2022-06-10 14:51:35 +02:00
bcm2835-aux.h clk: bcm2835: Switch to SPDX identifier 2018-11-14 14:42:45 -08:00
bcm2835.h dt-bindings: bcm2835-cprman: Add bcm2711 support 2019-09-17 09:55:30 -07:00
bcm3368-clock.h mips: bmips: add BCM3368 clock definitions 2020-06-19 17:03:23 -07:00
bcm6318-clock.h mips: bmips: add BCM6318 clock definitions 2020-06-19 17:03:23 -07:00
bcm6328-clock.h mips: bmips: add BCM6328 clock definitions 2020-06-19 17:03:23 -07:00
bcm6358-clock.h mips: bmips: add BCM6358 clock definitions 2020-06-19 17:03:23 -07:00
bcm6362-clock.h mips: bmips: add BCM6362 clock definitions 2020-06-19 17:03:23 -07:00
bcm6368-clock.h mips: bmips: add BCM6368 clock definitions 2020-06-19 17:03:24 -07:00
bcm21664.h treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_30.RULE (part 2) 2022-06-10 14:51:35 +02:00
bcm63268-clock.h mips: bmips: add BCM63268 clock definitions 2020-06-19 17:03:24 -07:00
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
bm1880-clock.h dt-bindings: clock: Add devicetree binding for BM1880 SoC 2019-11-22 15:58:04 -08:00
boston-clock.h dt-bindings: clk: cleanup comments 2022-03-10 17:22:25 -06:00
bt1-ccu.h dt-bindings: clk: Add Baikal-T1 CCU Dividers binding 2020-05-30 11:04:35 -07:00
cirrus,cs2000-cp.h dt-bindings: clock: cs2000-cp: document aux-output-source 2022-01-25 14:23:15 -08:00
clps711x-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
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 clk: ti: Fix dm814x clkctrl for ethernet 2020-03-17 09:45:24 -07:00
dm816.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
dra7.h clk: ti: Drop legacy compatibility clocks for dra7 2022-03-15 14:07:27 -07:00
en7523-clk.h dt-bindings: Add en7523-scu device tree binding documentation 2022-04-22 19:16:48 -07: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 IDs for some core clocks 2021-11-19 19:32:26 +01:00
exynos7-clk.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos850.h dt-bindings: clock: Add bindings for Exynos850 sysreg clocks 2021-12-19 23:25:28 +01: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 IDs for some core clocks 2021-11-19 19:32:26 +01:00
exynos5260-clk.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5410.h clk: samsung: dt-bindings: Add ADC clock ID to Exynos5410 2019-03-22 12:41:57 +01:00
exynos5420.h clk: samsung: Add clk ID definitions for the CPU parent clocks 2020-09-17 12:05:15 +02:00
exynos5433.h clk: samsung: exynos5433: Fix name typo in sssx 2019-02-01 14:36:47 +01:00
exynos7885.h dt-bindings: clock: Add indices for Exynos7885 TREX clocks 2022-06-20 13:57:20 +02:00
fsd-clk.h dt-bindings: clock: Add bindings definitions for FSD CMU blocks 2022-01-26 10:21:39 +01:00
fsl,qoriq-clockgen.h clk: qoriq: provide constants for the type 2020-12-07 16:53:30 -08:00
g12a-aoclkc.h dt-bindings: clock: g12a-aoclk: expose CLKID_AO_CTS_OSCIN 2019-04-01 10:45:11 +02:00
g12a-clkc.h dt-bindings: clk: g12a-clkc: add DSI Pixel clock bindings 2020-11-26 15:23:34 +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: add the gxl internal dac gate 2020-02-13 17:19:22 +01:00
hi3516cv300-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 13 2019-05-21 11:28:45 +02:00
hi3519-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 13 2019-05-21 11:28:45 +02:00
hi3559av100-clock.h dt-bindings: Document the hi3559a clock bindings 2021-06-27 20:05:41 -07:00
hi3620-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 1 2019-05-21 11:28:39 +02:00
hi3660-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
hi3670-clock.h dt-bindings: clk: hisilicon: Add bindings for Hi3670 clk 2018-10-16 14:46:56 -07:00
hi6220-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
hip04-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 1 2019-05-21 11:28:39 +02:00
histb-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 13 2019-05-21 11:28:45 +02:00
hix5hd2-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 422 2019-06-05 17:37:15 +02:00
imx1-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
imx5-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
imx6qdl-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
imx6sl-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
imx6sll-clock.h clk: imx6sll: add mmdc1 ipg clock 2018-10-17 11:15:44 -07:00
imx6sx-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
imx6ul-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
imx7d-clock.h clk: imx7d: Add PXP clock 2020-03-16 08:56:59 +08:00
imx7ulp-clock.h clk: imx7ulp: make it easy to change ARM core clk 2020-04-14 21:35:58 +08:00
imx8-clock.h clk: imx: scu: remove legacy scu clock binding support 2021-06-14 12:33:14 +03:00
imx8-lpcg.h dt-bindings: clock: imx-lpcg: add support to parse clocks from device tree 2020-10-26 10:51:29 +08:00
imx8mm-clock.h clk: imx8mm: add clkout1/2 support 2021-01-30 21:35:30 +08:00
imx8mn-clock.h dt-bindings: imx: add clock bindings for i.MX8MN GPT 2022-04-12 13:55:36 +03:00
imx8mp-clock.h clk: imx8mp: add clkout1/2 support 2022-05-02 12:38:10 +03:00
imx8mq-clock.h clk: imx8mq: remove SYS PLL 1/2 clock gates 2021-06-14 17:05:45 +03:00
imx8ulp-clock.h dt-bindings: clock: Add imx8ulp clock support 2021-09-30 16:22:55 +03:00
imx21-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
imx27-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
imx93-clock.h dt-bindings: clock: add i.MX93 clock definition 2022-03-04 17:06:29 +02:00
imxrt1050-clock.h dt-bindings: imx: Add clock binding for i.MXRT1050 2022-01-29 15:12:06 +02:00
ingenic,jz4725b-cgu.h dt-bindings: Rename Ingenic CGU headers to ingenic,*.h 2021-11-11 22:27:14 -06:00
ingenic,jz4740-cgu.h dt-bindings: Rename Ingenic CGU headers to ingenic,*.h 2021-11-11 22:27:14 -06:00
ingenic,jz4760-cgu.h dt-bindings: clk/ingenic: Add MDMA and BDMA clocks 2022-01-06 17:51:11 -08:00
ingenic,jz4770-cgu.h dt-bindings: clk/ingenic: Add MDMA and BDMA clocks 2022-01-06 17:51:11 -08:00
ingenic,jz4780-cgu.h dt-bindings: Rename Ingenic CGU headers to ingenic,*.h 2021-11-11 22:27:14 -06:00
ingenic,sysost.h dt-bindings: timer: Add ABIs for new Ingenic SoCs 2021-08-21 09:58:17 +02:00
ingenic,tcu.h dt-bindings: ingenic: Add DT bindings for TCU clocks 2019-08-08 15:30:05 -07:00
ingenic,x1000-cgu.h dt-bindings: Rename Ingenic CGU headers to ingenic,*.h 2021-11-11 22:27:14 -06:00
ingenic,x1830-cgu.h dt-bindings: Rename Ingenic CGU headers to ingenic,*.h 2021-11-11 22:27:14 -06:00
intel,lgm-clk.h dt-bindings: clk: intel: Add bindings document & header file for CGU 2020-05-26 18:47:20 -07:00
k210-clk.h riscv: Update Canaan Kendryte K210 device tree 2021-02-22 17:51:13 -08:00
lpc18xx-ccu.h
lpc18xx-cgu.h
lpc32xx-clock.h
lsi,axm5516-clks.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 233 2019-06-19 17:09:06 +02:00
marvell,mmp2-audio.h dt-bindings: clock: Add Marvell MMP Audio Clock Controller binding 2020-05-27 17:55:12 -07:00
marvell,mmp2.h dt-bindings: clk: cleanup comments 2022-03-10 17:22:25 -06:00
marvell,pxa168.h dt-bindings: clk: cleanup comments 2022-03-10 17:22:25 -06:00
marvell,pxa910.h dt-bindings: clk: cleanup comments 2022-03-10 17:22:25 -06: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 treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
maxim,max77620.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
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
meson8-ddr-clkc.h dt-bindings: clock: add the Amlogic Meson8 DDR clock controller binding 2019-12-11 14:06:27 +01:00
meson8b-clkc.h clk: meson: meson8b: Export the video clocks 2021-09-23 11:46:37 +02:00
microchip,lan966x.h dt-bindings: clock: lan966x: Extend includes with clock gates 2021-12-08 11:19:20 +01:00
microchip,mpfs-clock.h dt-bindings: clk: mpfs: add defines for two new clocks 2022-04-22 18:40:15 -07:00
microchip,pic32-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 445 2019-06-05 17:37:18 +02:00
microchip,sparx5.h dt-bindings: clock: sparx5: Add bindings include file 2020-07-28 18:17:52 -07:00
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
mstar-msc313-mpll.h dt-bindings: clk: mstar msc313 mpll binding header 2021-02-14 12:37:40 -08:00
mt2701-clk.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 174 2019-05-30 11:26:41 -07:00
mt2712-clk.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 174 2019-05-30 11:26:41 -07:00
mt6765-clk.h clk: mediatek: add mt6765 clock IDs 2020-05-28 21:23:04 -07:00
mt6779-clk.h clk: mediatek: Add dt-bindings for MT6779 clocks 2019-09-09 09:37:29 -07:00
mt6797-clk.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 174 2019-05-30 11:26:41 -07:00
mt7621-clk.h dt-bindings: clock: add dt binding header for mt7621 clocks 2021-04-09 10:42:50 -07:00
mt7622-clk.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 174 2019-05-30 11:26:41 -07:00
mt7629-clk.h clk: mediatek: add clock support for MT7629 SoC 2018-11-29 22:52:05 -08:00
mt7986-clk.h clk: mediatek: add mt7986 clock IDs 2022-01-06 18:30:58 -08:00
mt8135-clk.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 174 2019-05-30 11:26:41 -07:00
mt8167-clk.h dt-bindings: clock: mediatek: add bindings for MT8167 clocks 2020-10-13 15:46:01 -07:00
mt8173-clk.h clk: mediatek: remove deprecated CLK_INFRA_CA57SEL for MT8173 SoC 2021-06-04 09:24:26 +05:30
mt8183-clk.h clk: mediatek: add pericfg clocks for MT8183 2019-09-17 10:17:41 -07:00
mt8186-clk.h dt-bindings: ARM: MediaTek: Add new document bindings of MT8186 clock 2022-04-25 16:59:38 -07:00
mt8192-clk.h clk: mediatek: Add dt-bindings of MT8192 clocks 2021-07-27 10:53:06 -07:00
mt8195-clk.h clk: mediatek: Add dt-bindings of MT8195 clocks 2021-09-14 15:05:37 -07:00
mt8516-clk.h dt-bindings: mediatek: audsys: add support for MT8516 2019-06-06 15:56:09 -07:00
nuvoton,npcm7xx-clock.h dt-bindings: clk: cleanup comments 2022-03-10 17:22:25 -06:00
nuvoton,npcm845-clk.h dt-binding: clk: npcm845: Add binding for Nuvoton NPCM8XX Clock 2022-07-19 15:39:50 +02:00
omap4.h ARM: dts: Add missing omap4 secure clocks 2020-01-23 08:20:17 -08:00
omap5.h clk: ti: omap5: Add missing gpmc and ocmc clkctrl 2021-03-10 13:59:18 +02:00
oxsemi,ox810se.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 201 2019-05-30 11:29:52 -07:00
oxsemi,ox820.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 201 2019-05-30 11:29:52 -07:00
pistachio-clk.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 422 2019-06-05 17:37:15 +02:00
px30-cru.h clk: rockchip: Add div50 clock-ids for sdmmc on px30 and nandc 2019-11-05 20:53:26 +01:00
pxa-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
qcom,apss-ipq.h clk: qcom: Add DT bindings for ipq6018 apss clock controller 2020-06-22 00:21:59 -07:00
qcom,camcc-sc7180.h dt-bindings: clock: Add YAML schemas for the QCOM Camera clock bindings. 2020-11-04 18:26:56 -08:00
qcom,camcc-sc7280.h dt-bindings: clock: Add YAML schemas for CAMCC clocks on SC7280 2021-10-13 15:24:54 -07:00
qcom,camcc-sdm845.h dt-bindings: clock: Introduce QCOM Camera clock bindings 2018-08-30 18:26:45 -07:00
qcom,camcc-sm8250.h dt-bindings: clock: add QCOM SM8250 camera clock bindings 2021-06-27 17:12:55 -07:00
qcom,dispcc-qcm2290.h dt-bindings: clock: Add qualcomm QCM2290 DISPCC bindings 2022-02-10 17:56:10 -06:00
qcom,dispcc-sc7180.h dt-bindings: clock: Introduce QCOM sc7180 display clock bindings 2019-12-23 22:30:10 -08:00
qcom,dispcc-sc7280.h dt-bindings: clock: Add SC7280 DISPCC clock binding 2021-07-20 13:46:32 -07:00
qcom,dispcc-sdm845.h clk: qcom: dispcc: Add support for display port clocks 2019-12-18 21:24:13 -08:00
qcom,dispcc-sm6125.h dt-bindings: clock: add QCOM SM6125 display clock bindings 2022-03-09 08:53:29 -06:00
qcom,dispcc-sm6350.h dt-bindings: clock: add QCOM SM6350 display clock bindings 2022-03-08 16:16:47 -06:00
qcom,dispcc-sm8150.h dt-bindings: clock: add QCOM SM8150 and SM8250 display clock bindings 2020-10-13 18:18:06 -07:00
qcom,dispcc-sm8250.h clk: qcom: dispcc-sm8250: Add EDP clocks 2021-06-02 00:35:29 -07:00
qcom,dispcc-sm8350.h dt-bindings: clock: Add Qcom SM8350 DISPCC bindings 2022-07-06 15:15:15 -05:00
qcom,gcc-apq8084.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,gcc-ipq806x.h dt-bindings: clock: add ipq8064 ce5 clk define 2022-03-08 16:19:31 -06:00
qcom,gcc-ipq4019.h
qcom,gcc-ipq6018.h clk: qcom: Add DT bindings for ipq6018 gcc clock controller 2020-01-09 12:42:54 -08:00
qcom,gcc-ipq8074.h Merge branch '20220515210048.483898-8-robimarko@gmail.com' into clk-for-5.20 2022-06-30 18:24:35 -05:00
qcom,gcc-mdm9607.h dt-bindings: clock: Add MDM9607 GCC clock bindings 2021-06-01 23:50:39 -07:00
qcom,gcc-mdm9615.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,gcc-msm8660.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,gcc-msm8916.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,gcc-msm8939.h clk: qcom: gcc-msm8939: Add missing SYSTEM_MM_NOC_BFDCD_CLK_SRC 2022-06-29 22:47:15 -05:00
qcom,gcc-msm8953.h dt-bindings: clock: add Qualcomm MSM8953 GCC driver bindings 2021-08-26 11:51:18 -07:00
qcom,gcc-msm8960.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,gcc-msm8974.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,gcc-msm8976.h dt-bindings: clk: qcom: gcc-msm8976: Add modem reset 2022-05-05 22:22:27 -05:00
qcom,gcc-msm8994.h clk: qcom: gcc-msm8994: Add modem reset 2021-10-13 15:20:23 -07:00
qcom,gcc-msm8996.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,gcc-msm8998.h dt-bindings: clock: gcc-msm8998: Add definitions of SSC-related clocks 2022-04-19 12:04:02 -05:00
qcom,gcc-qcm2290.h clk: qcom: Add Global Clock Controller driver for QCM2290 2021-10-13 12:43:02 -07:00
qcom,gcc-qcs404.h clk: qcom: Add WCSS gcc clock control for QCS404 2019-08-08 08:10:05 -07:00
qcom,gcc-sc7180.h dt-bindings: clock: Add YAML schemas for LPASS clocks on SC7180 2020-07-24 13:08:02 -07:00
qcom,gcc-sc7280.h dt-bindings: clock: qcom: Update license for GCC SC7280 2021-07-20 13:46:32 -07:00
qcom,gcc-sc8180x.h dt-bindings: clock: Add SC8180x GCC binding 2021-02-08 09:54:11 -08:00
qcom,gcc-sc8280xp.h dt-bindings: clock: Add Qualcomm SC8280XP GCC bindings 2022-05-19 16:41:32 -05:00
qcom,gcc-sdm660.h clk: qcom: gcc-sdm660: Add missing modem reset 2020-07-27 15:16:17 -07:00
qcom,gcc-sdm845.h dt-bindings: clock: Introduce QCOM LPASS clock bindings 2018-12-03 09:25:01 -08:00
qcom,gcc-sdx55.h dt-bindings: clock: Add GDSC in SDX55 GCC 2020-12-07 17:00:14 -08:00
qcom,gcc-sdx65.h dt-bindings: clock: Add SDX65 GCC clock bindings 2021-12-14 20:53:19 -06:00
qcom,gcc-sm6115.h dt-bindings: clk: qcom: gcc-sm6115: Document SM6115 GCC 2021-08-28 20:54:20 -07:00
qcom,gcc-sm6125.h dt-bindings: clk: qcom: gcc-sm6125: Document SM6125 GCC driver 2021-06-27 16:53:25 -07:00
qcom,gcc-sm6350.h dt-bindings: clock: Add SM6350 GCC clock bindings 2021-08-28 21:03:03 -07:00
qcom,gcc-sm8150.h clk: qcom: gcc: Add emac GDSC support for SM8150 2022-03-09 08:53:29 -06:00
qcom,gcc-sm8250.h dt-bindings: clock: Add SM8250 GCC clock bindings 2020-03-09 15:14:56 -07:00
qcom,gcc-sm8350.h clk: qcom: gcc-sm8350: add gdsc 2021-02-14 12:56:55 -08:00
qcom,gcc-sm8450.h dt-bindings: clock: Add SM8450 GCC clock bindings 2021-12-14 21:19:13 -06:00
qcom,gpucc-msm8998.h dt-bindings: clock: Document gpucc for msm8998 2019-06-06 16:27:43 -07:00
qcom,gpucc-sc7180.h dt-bindings: clk: qcom: Add support for GPU GX GDSCR 2020-02-12 15:04:10 -08:00
qcom,gpucc-sc7280.h dt-bindings: clock: Add SC7280 GPUCC clock binding 2021-07-20 13:46:32 -07:00
qcom,gpucc-sdm660.h clk: qcom: Add SDM660 GPU Clock Controller (GPUCC) driver 2021-02-14 12:56:54 -08:00
qcom,gpucc-sdm845.h dt-bindings: clock: Introduce QCOM Graphics clock bindings 2018-11-27 16:24:44 -08:00
qcom,gpucc-sm6350.h dt-bindings: clock: add SM6350 QCOM Graphics clock bindings 2022-03-08 16:16:47 -06:00
qcom,gpucc-sm8150.h dt-bindings: clock: add SM8150 QCOM Graphics clock bindings 2020-07-24 01:51:20 -07:00
qcom,gpucc-sm8250.h dt-bindings: clock: add SM8250 QCOM Graphics clock bindings 2020-07-24 01:51:23 -07:00
qcom,gpucc-sm8350.h dt-bindings: clock: Add Qcom SM8350 GPUCC bindings 2022-07-06 15:15:15 -05:00
qcom,lcc-ipq806x.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,lcc-mdm9615.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,lcc-msm8960.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,lpass-sc7280.h dt-bindings: clock: Add YAML schemas for LPASS clocks on SC7280 2021-10-13 15:22:49 -07:00
qcom,lpass-sdm845.h dt-bindings: clock: Introduce QCOM LPASS clock bindings 2018-12-03 09:25:01 -08:00
qcom,lpassaudiocc-sc7280.h dt-bindings: clock: Add YAML schemas for LPASS clocks on SC7280 2022-04-12 21:16:48 -05:00
qcom,lpasscorecc-sc7180.h dt-bindings: clock: Add YAML schemas for LPASS clocks on SC7180 2020-07-24 13:08:02 -07:00
qcom,lpasscorecc-sc7280.h dt-bindings: clock: Add YAML schemas for LPASS clocks on SC7280 2022-04-12 21:16:48 -05:00
qcom,mmcc-apq8084.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,mmcc-msm8960.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,mmcc-msm8974.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,mmcc-msm8994.h clk: qcom: Add msm8994 MMCC driver 2021-08-26 11:58:14 -07:00
qcom,mmcc-msm8996.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 2019-06-05 17:36:37 +02:00
qcom,mmcc-msm8998.h dt-bindings: clock: Add support for the MSM8998 mmcc 2019-12-18 21:37:40 -08:00
qcom,mmcc-sdm660.h clk: qcom: Add SDM660 Multimedia Clock Controller (MMCC) driver 2021-02-14 12:56:54 -08:00
qcom,mss-sc7180.h dt-bindings: clock: Add YAML schemas for the QCOM MSS clock bindings 2020-03-20 16:27:58 -07:00
qcom,q6sstopcc-qcs404.h clk: qcom: Add Q6SSTOP clock controller for QCS404 2019-11-07 13:10:36 -08:00
qcom,rpmcc.h dt-bindings: clock: qcom: rpmcc: Add RPM Modem SubSystem (MSS) clocks 2022-03-08 16:21:30 -06:00
qcom,rpmh.h clk: qcom: rpmh: Add support for RPMH clocks on SM6350 2021-08-28 21:01:21 -07:00
qcom,sm8250-lpass-aoncc.h dt-bindings: clock: Add support for LPASS Always ON Controller 2020-11-04 18:34:54 -08:00
qcom,sm8250-lpass-audiocc.h dt-bindings: clock: Add support for LPASS Audio Clock Controller 2020-11-04 18:34:54 -08:00
qcom,sm8450-camcc.h dt-bindings: clock: add QCOM SM8450 camera clock bindings 2022-07-06 15:18:32 -05:00
qcom,turingcc-qcs404.h dt-bindings: clock: Introduce Qualcomm Turing Clock controller 2019-04-11 13:34:10 -07:00
qcom,videocc-sc7180.h dt-bindings: clock: Introduce SC7180 QCOM Video clock bindings 2020-01-04 23:25:01 -08:00
qcom,videocc-sc7280.h dt-bindings: clock: Add SC7280 VideoCC clock binding 2021-07-20 13:46:32 -07:00
qcom,videocc-sdm845.h dt-bindings: clock: Introduce QCOM Video clock bindings 2018-06-01 11:49:07 -07:00
qcom,videocc-sm8150.h dt-bindings: clock: add SM8150 QCOM video clock bindings 2020-10-13 18:05:03 -07:00
qcom,videocc-sm8250.h dt-bindings: clock: Add missing SM8250 videoc clock indices 2021-02-08 10:12:29 -08: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 treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
r8a774a1-cpg-mssr.h clk: renesas: r8a774a1: Add missing CANFD clock 2019-01-21 14:01:57 +01:00
r8a774b1-cpg-mssr.h dt-bindings: clk: Add r8a774b1 CPG Core Clock Definitions 2019-10-01 09:49:40 +02:00
r8a774c0-cpg-mssr.h clk: renesas: r8a774c0: Add missing CANFD clock 2019-01-21 13:50:40 +01:00
r8a774e1-cpg-mssr.h clk: renesas: Add r8a774e1 CPG Core Clock Definitions 2020-07-13 10:18:05 +02:00
r8a779a0-cpg-mssr.h dt-bindings: clock: Add r8a779a0 CPG Core Clock Definitions 2020-09-10 16:58:13 +02:00
r8a779f0-cpg-mssr.h dt-bindings: clock: Add r8a779f0 CPG Core Clock Definitions 2021-12-07 16:29:25 +01:00
r8a779g0-cpg-mssr.h dt-bindings: clock: Add r8a779g0 CPG Core Clock Definitions 2022-04-25 10:34:19 +02:00
r8a7740-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
r8a7742-cpg-mssr.h clk: renesas: Add r8a7742 CPG Core Clock Definitions 2020-04-28 09:54:25 +02:00
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 treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
r8a7779-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
r8a7790-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
r8a7790-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7791-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
r8a7791-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7792-clock.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
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
r8a77961-cpg-mssr.h dt-bindings: clock: Add r8a77961 CPG Core Clock Definitions 2019-11-01 11:48:22 +01: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: r9a06g032: Add the definition of the watchdog clock 2022-02-24 13:48:08 +01:00
r9a07g043-cpg.h dt-bindings: clock: r9a07g043-cpg: Add Renesas RZ/Five CPG Clock and Reset Definitions 2022-07-05 09:15:52 +02:00
r9a07g044-cpg.h dt-bindings: clock: r9a07g044-cpg: Add entry for P0_DIV2 core clock 2021-07-26 14:10:59 +02:00
r9a07g054-cpg.h dt-bindings: clock: Add R9A07G054 CPG Clock and Reset Definitions 2022-02-02 09:06:22 +01:00
r9a09g011-cpg.h dt-bindings: clock: Add r9a09g011 CPG Clock Definitions 2022-05-05 12:04:58 +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 clk: rockchip: add dt-binding clkid for hclk_sfc on rk3036 2021-07-16 00:33:16 +02:00
rk3066a-cru.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 2019-05-30 11:26:37 -07:00
rk3128-cru.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 2019-05-30 11:26:37 -07:00
rk3188-cru-common.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 2019-05-30 11:26:37 -07:00
rk3188-cru.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 2019-05-30 11:26:37 -07:00
rk3228-cru.h This round of clk driver and framework updates is heavy on the driver update 2019-07-17 10:07:48 -07:00
rk3288-cru.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 2019-05-30 11:26:37 -07:00
rk3308-cru.h clk: rockchip: Add dt-binding header for rk3308 2019-09-05 11:32:25 +02:00
rk3328-cru.h This round of clk driver and framework updates is heavy on the driver update 2019-07-17 10:07:48 -07:00
rk3368-cru.h clk: rockchip: add clock id for SCLK_VIP_OUT on rk3368 2021-02-06 01:05:04 +01:00
rk3399-cru.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 2019-05-30 11:26:37 -07:00
rk3399-ddr.h dt-bindings: clock: add rk3399 DDR3 standard speed bins. 2018-07-18 13:58:30 +09:00
rk3568-cru.h clk: rockchip: add dt-binding header for rk3568 2021-03-21 11:10:24 +01: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 treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 2019-05-30 11:26:37 -07: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 treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
s5pv210.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
samsung,exynosautov9.h dt-bindings: clock: exynosautov9: correct count of NR_CLK 2022-05-20 20:29:13 -07:00
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 treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
sifive-fu540-prci.h dt-bindings: change the macro name of prci in header files and example 2022-03-15 15:56:28 -07:00
sifive-fu740-prci.h dt-bindings: change the macro name of prci in header files and example 2022-03-15 15:56:28 -07:00
sprd,sc9860-clk.h dt-bindings: clocks: add APB RTC gate for SC9860 2018-03-16 15:53:31 -07:00
sprd,sc9863a-clk.h clk: sprd: add dt-bindings include for mipi_csi_xx clocks 2020-05-26 23:41:14 -07:00
sprd,ums512-clk.h clk: sprd: Add dt-bindings include file for UMS512 2022-07-11 12:59:19 -07:00
starfive-jh7100-audio.h dt-bindings: clock: Add JH7100 audio clock definitions 2022-03-10 18:17:32 -08:00
starfive-jh7100.h dt-bindings: clock: starfive: Add JH7100 clock definitions 2021-12-16 17:22:35 +01: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
ste-db8500-clkout.h dt-bindings: clock: u8500: Add clkout clock bindings 2022-04-25 16:17:24 -07: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 dt-bindings: clk: cleanup comments 2022-03-10 17:22:25 -06:00
stm32h7-clks.h clk: stm32h7: Add stm32h743 clock driver 2017-08-31 18:35:47 -07:00
stm32mp1-clks.h dt-bindings: clock: stm32mp15: rename CK_SCMI define 2022-05-04 11:00:53 +02:00
stm32mp13-clks.h dt-bindings: rcc: stm32: add new compatible for STM32MP13 SoC 2022-05-20 21:07:48 -07:00
stratix10-clock.h dt-bindings: clk: cleanup comments 2022-03-10 17:22:25 -06: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 treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 2019-05-30 11:26:37 -07:00
sun6i-a31-ccu.h clk: sunxi: a31: Export the MIPI PLL 2020-01-04 09:45:09 +01:00
sun6i-rtc.h dt-bindings: rtc: sun6i: Add H616, R329, and D1 support 2022-02-15 23:14:59 +01: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 clk: sunxi: a23/a33: Export the MIPI PLL 2020-01-04 09:45:19 +01:00
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 dt-bindings: clock: sunxi: Export CLK_DRAM for devfreq 2021-11-23 11:29:35 +01:00
sun8i-r-ccu.h clk: sunxi-ng: add support for PRCM CCUs 2017-04-04 17:43:52 +02:00
sun8i-r40-ccu.h clk: sunxi-ng: r40: Export MBUS clock 2020-01-03 10:37:14 +01: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 clk: sunxi-ng: v3s: add Allwinner V3 support 2019-08-12 10:05:48 +02:00
sun9i-a80-ccu.h clk: sunxi-ng: Add A80 CCU 2017-01-30 08:37:30 +01:00
sun9i-a80-de.h clk: sunxi-ng: Add A80 Display Engine CCU 2017-01-30 08:38:30 +01:00
sun9i-a80-usb.h clk: sunxi-ng: Add A80 USB CCU 2017-01-30 08:37:51 +01:00
sun20i-d1-ccu.h dt-bindings: clk: Add compatibles for D1 CCUs 2021-11-23 10:29:05 +01:00
sun20i-d1-r-ccu.h dt-bindings: clk: Add compatibles for D1 CCUs 2021-11-23 10:29:05 +01:00
sun50i-a64-ccu.h dt-bindings: clock: sunxi: Export CLK_DRAM for devfreq 2021-11-23 11:29:35 +01:00
sun50i-a100-ccu.h clk: sunxi-ng: add support for the Allwinner A100 CCU 2020-08-25 10:52:18 +02:00
sun50i-a100-r-ccu.h clk: sunxi-ng: add support for the Allwinner A100 CCU 2020-08-25 10:52:18 +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: h6-r: Add RTC gate clock 2022-05-06 18:02:40 +02:00
sun50i-h616-ccu.h clk: sunxi-ng: h616: Add PLL derived 32KHz clock 2022-05-06 18:03:52 +02:00
suniv-ccu-f1c100s.h dt-bindings: clock: Add Allwinner suniv F1C100s CCU 2018-12-04 08:41:13 +01:00
sunplus,sp7021-clkc.h dt-bindings: clock: Add bindings for SP7021 clock driver 2022-07-08 14:23:39 +02:00
tegra20-car.h dt-bindings: clock: tegra: Remove PMC clock IDs 2020-05-12 22:47:14 +02:00
tegra30-car.h dt-bindings: clock: tegra: Remove PMC clock IDs 2020-05-12 22:47:14 +02:00
tegra114-car.h dt-bindings: clock: tegra: Remove PMC clock IDs 2020-05-12 22:47:14 +02:00
tegra124-car-common.h dt-bindings: clock: tegra: Remove PMC clock IDs 2020-05-12 22:47:14 +02: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 dt-bindings: clock: tegra: Add clock ID TEGRA210_CLK_QSPI_PM 2021-01-27 00:10:14 +01:00
tegra234-clock.h dt-bindings: Add headers for Host1x and VIC on Tegra234 2022-07-08 16:17:04 +02:00
ti-dra7-atl.h treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_320.RULE 2022-06-10 14:51:36 +02:00
toshiba,tmpv770x.h dt-bindings: clock: Add DT bindings for SMU of Toshiba Visconti TMPV770x SoC 2022-01-05 17:05:21 -08:00
vf610-clock.h clk: imx: vf610: Add CRC clock 2020-08-23 10:08:35 +08:00
xlnx-vcu.h ARM: dts: vcu: define indexes for output clocks 2021-02-08 18:31:24 -08:00
xlnx-versal-clk.h dt-bindings: clock: Add bindings for versal clock driver 2020-01-23 13:21:50 -08:00
xlnx-zynqmp-clk.h include: dt-binding: clock: Rename zynqmp header file 2019-03-18 13:41:17 +01:00