2
0
mirror of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git synced 2025-09-04 20:19:47 +08:00
linux/Documentation/devicetree/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
..
sifive dt-bindings: clock: fu740-prci: add reset-cells 2021-11-02 14:39:56 -07:00
st devicetree/bindings: correct possessive "its" typos 2022-08-01 09:13:06 -06:00
ti devicetree/bindings: correct possessive "its" typos 2022-08-01 09:13:06 -06:00
actions,owl-cmu.txt dt-bindings: clock: Add DT bindings for Actions Semi S500 CMU 2019-02-22 00:01:08 -08:00
adi,axi-clkgen.yaml dt-bindings: clock: adi,axi-clkgen: add compatible string for ZynqMP support 2021-02-08 18:13:13 -08:00
airoha,en7523-scu.yaml dt-bindings: Add en7523-scu device tree binding documentation 2022-04-22 19:16:48 -07:00
allwinner,sun4i-a10-ahb-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-apb0-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-apb1-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-axi-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-ccu.yaml dt-bindings: clk: Add compatibles for D1 CCUs 2021-11-23 10:29:05 +01:00
allwinner,sun4i-a10-cpu-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-display-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-gates-clk.yaml dt-bindings: Clean-up schema indentation formatting 2020-04-16 16:59:22 -05:00
allwinner,sun4i-a10-mbus-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-mmc-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-mod0-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-mod1-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-osc-clk.yaml dt-bindings: Fix dtc warnings in examples 2020-02-28 14:15:52 -06:00
allwinner,sun4i-a10-pll1-clk.yaml dt-bindings: Clean-up undocumented compatible strings 2021-03-23 15:27:51 -06:00
allwinner,sun4i-a10-pll3-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-pll5-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-pll6-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-tcon-ch0-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-usb-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun4i-a10-ve-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun5i-a13-ahb-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun6i-a31-pll6-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun7i-a20-gmac-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun7i-a20-out-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun8i-a83t-de2-clk.yaml dt-bindings: clock: Add compatible for D1 DE2 clocks 2022-06-20 20:03:45 +02:00
allwinner,sun8i-h3-bus-gates-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun9i-a80-ahb-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun9i-a80-apb0-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun9i-a80-cpus-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun9i-a80-de-clks.yaml dt-bindings: clocks: Convert Allwinner A80 DE clocks to a schema 2019-12-16 18:07:06 +01:00
allwinner,sun9i-a80-gt-clk.yaml dt-bindings: Fix dtc warnings in examples 2020-02-28 14:15:52 -06:00
allwinner,sun9i-a80-mmc-config-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun9i-a80-pll4-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun9i-a80-usb-clks.yaml dt-bindings: Fix undocumented compatible strings in examples 2021-02-04 09:07:43 -06:00
allwinner,sun9i-a80-usb-mod-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
allwinner,sun9i-a80-usb-phy-clk.yaml dt-bindings: clocks: Convert Allwinner legacy clocks to schemas 2019-12-24 14:17:52 -07:00
alphascale,acc.txt dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
altr_socfpga.txt
amlogic,axg-audio-clkc.txt dt-bindings: clk: axg-audio: add sm1 bindings 2019-10-08 09:28:07 +02:00
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 sm1 periph clock controller bindings 2019-08-26 11:00:15 +02:00
amlogic,meson8-ddr-clkc.yaml dt-bindings: clock: add the Amlogic Meson8 DDR clock controller binding 2019-12-11 14:06:27 +01:00
amlogic,meson8b-clkc.txt dt-bindings: clock: meson8b: add the clock inputs 2019-12-11 14:06:28 +01:00
apple,nco.yaml dt-bindings: clock: Add Apple NCO 2022-03-11 20:44:05 -08:00
arm,syscon-icst.yaml dt-bindings: clock: arm,syscon-icst: Use 'reg' instead of 'vco-offset' for VCO register address 2021-09-14 18:11:19 -07:00
armada3700-periph-clock.txt dt-bindings: clk: armada3700: document the PCIe clock 2019-10-03 14:00:20 -07:00
armada3700-tbg-clock.txt devicetree: bindings: clock: Minor typo fix in the file armada3700-tbg-clock.txt 2021-03-25 19:53:04 -06:00
armada3700-xtal-clock.txt
artpec6.txt
at91-clock.txt dt-bindings: clk: at91: add bindings for SAM9X60's slow clock controller 2019-06-26 11:33:20 -07:00
axs10x-i2s-pll-clock.txt
baikal,bt1-ccu-div.yaml dt-bindings: Use 'additionalProperties' instead of 'unevaluatedProperties' 2020-10-07 11:28:30 -05:00
baikal,bt1-ccu-pll.yaml dt-bindings: Use 'additionalProperties' instead of 'unevaluatedProperties' 2020-10-07 11:28:30 -05:00
bitmain,bm1880-clk.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
brcm,bcm63xx-clocks.txt dt-bindings: clock: bcm63xx: add 6318 gated clock bindings 2020-06-19 17:02:08 -07:00
brcm,bcm2711-dvp.yaml dt-bindings: clock: Add BCM2711 DVP binding 2020-06-19 17:13:49 -07:00
brcm,bcm2835-aux-clock.txt dt-bindings: Remove leading 0x from bindings notation 2017-12-06 14:56:33 -06:00
brcm,bcm2835-cprman.txt dt-bindings: bcm2835-cprman: Add bcm2711 support 2019-09-17 09:55:30 -07:00
brcm,bcm53573-ilp.txt
brcm,iproc-clocks.yaml Merge branches 'clk-kirkwood', 'clk-imx', 'clk-doc', 'clk-zynq' and 'clk-ralink' into clk-next 2021-09-01 15:27:07 -07:00
brcm,kona-ccu.txt dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
calxeda.yaml dt-bindings: clock: Convert Calxeda clock bindings to json-schema 2020-05-03 11:10:41 -05:00
canaan,k210-clk.yaml dt-bindings: Add missing array size constraints 2021-01-11 17:42:25 -06:00
cirrus,cs2000-cp.yaml dt-bindings: clock: cs2000-cp: document cirrus,dynamic-mode 2022-01-25 14:23:15 -08:00
cirrus,lochnagar.yaml clk: lochnagar: Move binding over to dtschema 2020-05-27 19:30:25 -06:00
clk-palmas-clk32kg-clocks.txt
clock-bindings.txt dt-bindings: clock: Replace common binding with link to schema 2022-05-19 16:16:17 -07:00
clps711x-clock.txt
dove-divider-clock.txt dt-bindings: Remove leading zeros from bindings notation 2017-11-09 17:05:05 -06: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: fixed-factor: Drop Allwinner A10 compatible 2022-06-09 15:40:23 -07:00
fixed-mmio-clock.yaml dt-bindings: clk: fixed-mmio-clock: Convert to YAML 2021-09-14 18:18:30 -07:00
fsl,flexspi-clock.yaml dt-bindings: clock: document the fsl-flexspi-clk device 2020-12-07 16:55:08 -08:00
fsl,plldig.yaml dt-bindings: Fix incorrect 'reg' property sizes 2020-05-14 14:43:27 -05:00
fsl,sai-clock.yaml dt-bindings: Fix paths in schema $id fields 2020-02-05 09:14:57 +00:00
fsl,scu-clk.yaml dt-bindings: clk: imx: Add fsl,scu-clk yaml file 2022-07-08 16:34:58 +08:00
fujitsu,mb86s70-crg11.txt
gpio-gate-clock.txt
gpio-mux-clock.yaml dt-bindings: clock: gpio-mux-clock: Convert to json-schema 2021-06-25 15:41:58 -07:00
hi3620-clock.txt
hi3660-clock.txt dt-bindings: clk: Hi3660: Document stub clock 2017-12-06 22:54:37 -08:00
hi3670-clock.txt dt-bindings: clk: hisilicon: Add bindings for Hi3670 clk 2018-10-16 14:46:56 -07:00
hi6220-clock.txt MAINTAINERS: fix broken doc refs due to yaml conversion 2020-10-28 11:41:15 -06:00
hisi-crg.txt
hisilicon,hi3559av100-clock.yaml dt-bindings: Document the hi3559a clock bindings 2021-06-27 20:05:41 -07:00
hix5hd2-clock.txt dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
idt,versaclock5.yaml dt-bindings: update Luca Ceresoli's e-mail address 2022-06-06 08:30:52 -05:00
img,boston-clock.txt
imx1-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx5-clock.yaml dt-bindings: clock: imx5: Drop clock consumer node from example 2022-01-11 11:54:35 -06:00
imx6q-clock.yaml dt-bindings: Another round of adding missing 'additionalProperties' 2020-10-06 10:55:25 -05:00
imx6sl-clock.yaml dt-bindings: Another round of adding missing 'additionalProperties' 2020-10-06 10:55:25 -05:00
imx6sll-clock.yaml dt-bindings: Another round of adding missing 'additionalProperties' 2020-10-06 10:55:25 -05:00
imx6sx-clock.yaml dt-bindings: Another round of adding missing 'additionalProperties' 2020-10-06 10:55:25 -05:00
imx6ul-clock.yaml dt-bindings: Another round of adding missing 'additionalProperties' 2020-10-06 10:55:25 -05:00
imx7d-clock.yaml dt-bindings: clock: Convert i.MX7D clock to json-schema 2020-05-28 14:54:42 -06:00
imx7ulp-pcc-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx7ulp-scg-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx8m-clock.yaml dt-bindings: Drop redundant 'maxItems/minItems' in if/then schemas 2022-05-04 16:19:03 -05:00
imx8qxp-lpcg.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx8ulp-cgc-clock.yaml dt-bindings: clock: Add imx8ulp clock support 2021-09-30 16:22:55 +03:00
imx8ulp-pcc-clock.yaml dt-bindings: clock: Add imx8ulp clock support 2021-09-30 16:22:55 +03:00
imx21-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx23-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx25-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx27-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx28-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx31-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx35-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
imx93-clock.yaml dt-bindings: clock: Add imx93 clock support 2022-03-04 17:06:29 +02:00
imxrt1050-clock.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
ingenic,cgu.yaml dt-bindings: Rename Ingenic CGU headers to ingenic,*.h 2021-11-11 22:27:14 -06:00
intel,agilex.yaml dt-bindings: documentation: add clock bindings information for Agilex 2020-05-26 19:13:05 -07:00
intel,cgu-lgm.yaml dt-bindings: Another round of adding missing 'additionalProperties' 2020-10-06 10:55:25 -05:00
intel,easic-n5x.yaml dt-bindings: documentation: add clock bindings information for eASIC N5X 2021-02-12 13:04:58 -08:00
intel,stratix10.yaml dt-bindings: clock: intel,stratix10: convert to dtschema 2022-02-09 10:43:02 -06:00
keystone-gate.txt
keystone-pll.txt
lpc1850-ccu.txt
lpc1850-cgu.txt
lpc1850-creg-clk.txt
lsi,axm5516-clks.txt
marvell,armada-3700-uart-clock.yaml dt-bindings: mvebu-uart: document DT bindings for marvell,armada-3700-uart-clock 2022-02-25 10:27:57 +01:00
marvell,berlin.txt
marvell,mmp2-audio-clock.yaml dt-bindings: clock: Add a missing include to MMP Audio Clock binding 2020-06-09 13:45:09 -07:00
marvell,mmp2-clock.yaml dt-bindings: clock: Make marvell,mmp2-clock a power controller 2020-05-27 17:55:12 -07:00
marvell,pxa168.txt
marvell,pxa910.txt
marvell,pxa1928.txt
maxim,max9485.txt dts: clk: add devicetree bindings for MAX9485 2018-07-06 11:27:24 -07:00
maxim,max77686.txt mfd: max77686: Do not enforce (incorrect) interrupt trigger type 2021-11-05 14:40:06 +00:00
mediatek,apmixedsys.yaml dt-bindings: arm: mediatek: apmixedsys: Convert to DT schema 2022-04-26 13:47:44 -05:00
mediatek,mt7621-sysc.yaml dt-bindings: clock: mediatek,mt7621-sysc: add '#reset-cells' property 2022-02-15 17:06:37 +01:00
mediatek,topckgen.yaml dt-bindings: arm: mediatek: topckgen: Convert to DT schema 2022-04-26 13:47:35 -05:00
microchip,lan966x-gck.yaml dt-bindings: clock: lan966x: Extend for clock gate support 2021-12-08 11:19:20 +01:00
microchip,mpfs.yaml dt-bindings: clk: mpfs document msspll dri registers 2022-04-22 18:40:11 -07:00
microchip,pic32.txt
microchip,sparx5-dpll.yaml dt-bindings: clock: sparx5: Add Sparx5 SoC DPLL clock 2020-07-22 22:28:43 +02:00
milbeaut-clock.yaml dt-bindings: Clean-up undocumented compatible strings 2021-03-23 15:27:51 -06:00
moxa,moxart-clock.txt
mstar,msc313-cpupll.yaml dt-bindings: clk: mstar msc313 cpupll binding description 2022-02-16 19:16:03 +01:00
mstar,msc313-mpll.yaml dt-bindings: clk: mstar msc313 mpll binding description 2021-02-14 12:37:45 -08:00
mvebu-core-clock.txt dt-bindings: clock: mvebu: Add compatible string for 98dx1135 core clock 2019-06-25 14:35:10 -07:00
mvebu-corediv-clock.txt
mvebu-cpu-clock.txt
mvebu-gated-clock.txt
nspire-clock.txt
nuvoton,npcm750-clk.txt dt-binding: clk: npcm750: Add binding for Nuvoton NPCM7XX Clock 2018-03-23 10:11:25 -07:00
nuvoton,npcm845-clk.yaml dt-binding: clk: npcm845: Add binding for Nuvoton NPCM8XX Clock 2022-07-19 15:39:50 +02:00
nvidia,tegra20-car.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
nvidia,tegra124-car.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
nvidia,tegra124-dfll.txt dt-bindings: clock: tegra124-dfll: add Tegra210 support 2019-02-06 14:27:21 +01:00
nxp,lpc3220-clk.txt
nxp,lpc3220-usb-clk.txt
oxnas,stdclk.txt
pistachio-clock.txt
pwm-clock.txt
pxa-clock.txt dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
qca,ath79-pll.txt
qcom,a7pll.yaml dt-bindings: clock: Add A7 PLL binding for SDX65 2022-03-08 16:17:40 -06:00
qcom,a53pll.yaml dt-bindings: clock: Update qcom,a53pll bindings for MSM8939 support 2021-08-05 18:52:11 -07:00
qcom,aoncc-sm8250.yaml dt-bindings: clock: Add support for LPASS Always ON Controller 2020-11-04 18:34:54 -08:00
qcom,audiocc-sm8250.yaml dt-bindings: clock: Add support for LPASS Audio Clock Controller 2020-11-04 18:34:54 -08:00
qcom,camcc-sm8250.yaml dt-bindings: clock: add QCOM SM8250 camera clock bindings 2021-06-27 17:12:55 -07:00
qcom,dispcc-sm8x50.yaml dt-bindings: clock: Add Qcom SM8350 DISPCC bindings 2022-07-06 15:15:15 -05:00
qcom,dispcc-sm6125.yaml dt-bindings: clock: add QCOM SM6125 display clock bindings 2022-03-09 08:53:29 -06:00
qcom,dispcc-sm6350.yaml dt-bindings: clock: add QCOM SM6350 display clock bindings 2022-03-08 16:16:47 -06:00
qcom,gcc-apq8064.yaml dt-bindings: clock: qcom,gcc-apq8064: split tsens to the child node 2022-07-04 21:58:39 -05:00
qcom,gcc-apq8084.yaml dt-bindings: clock: qcom,gcc-apq8064: Fix typo in compatible and split apq8084 2022-05-05 22:20:39 -05:00
qcom,gcc-ipq8064.yaml dt-bindings: clock: document qcom,gcc-ipq8064 binding 2022-03-08 16:19:31 -06:00
qcom,gcc-ipq8074.yaml dt-bindings: clocks: qcom,gcc-ipq8074: support power domains 2022-06-30 18:06:13 -05:00
qcom,gcc-msm8976.yaml dt-bindings: clk: qcom: Document MSM8976 Global Clock Controller 2021-12-16 13:17:23 -06:00
qcom,gcc-msm8994.yaml dt-bindings: clk: qcom: Add bindings for MSM8994 GCC driver 2021-10-13 15:20:22 -07:00
qcom,gcc-msm8996.yaml dt-bindings: clock: qcom,gcc-msm8996: add more GCC clock sources 2022-07-06 15:33:15 -05:00
qcom,gcc-msm8998.yaml dt-bindings: clocks: qcom,gcc-msm8998: Reflect actually referenced clks 2021-09-14 14:40:32 -07:00
qcom,gcc-other.yaml dt-bindings: clock: qcom,gcc-apq8064: move msm8960 compat from gcc-other.yaml 2022-07-04 21:58:39 -05:00
qcom,gcc-qcm2290.yaml dt-bindings: clk: qcom: Add QCM2290 Global Clock Controller bindings 2021-10-13 12:19:29 -07:00
qcom,gcc-qcs404.yaml dt-bindings: Add missing 'additionalProperties: false' 2020-03-31 09:03:17 -06:00
qcom,gcc-sc7180.yaml dt-bindings: Fix incorrect 'reg' property sizes 2020-05-14 14:43:27 -05:00
qcom,gcc-sc7280.yaml dt-bindings: clock: Add SC7280 GCC clock binding 2021-02-14 12:56:55 -08:00
qcom,gcc-sc8180x.yaml dt-bindings: clock: Add SC8180x GCC binding 2021-02-08 09:54:11 -08:00
qcom,gcc-sc8280xp.yaml dt-bindings: clock: Add Qualcomm SC8280XP GCC bindings 2022-05-19 16:41:32 -05:00
qcom,gcc-sdm845.yaml dt-bindings: clock: qcom,gcc-sdm845: add parent power domain 2022-06-27 16:53:47 -05:00
qcom,gcc-sdx55.yaml dt-bindings: Drop redundant minItems/maxItems 2021-06-21 13:56:46 -06:00
qcom,gcc-sdx65.yaml dt-bindings: clock: Add SDX65 GCC clock bindings 2021-12-14 20:53:19 -06:00
qcom,gcc-sm6115.yaml dt-bindings: clk: qcom: gcc-sm6115: Document SM6115 GCC 2021-08-28 20:54:20 -07:00
qcom,gcc-sm6125.yaml dt-bindings: clk: qcom: gcc-sm6125: Document SM6125 GCC driver 2021-06-27 16:53:25 -07:00
qcom,gcc-sm6350.yaml dt-bindings: clock: Add SM6350 GCC clock bindings 2021-08-28 21:03:03 -07:00
qcom,gcc-sm8150.yaml dt-bindings: Fix incorrect 'reg' property sizes 2020-05-14 14:43:27 -05:00
qcom,gcc-sm8250.yaml dt-bindings: Another round of adding missing 'additionalProperties' 2020-10-06 10:55:25 -05:00
qcom,gcc-sm8350.yaml dt-bindings: Drop redundant minItems/maxItems 2021-06-21 13:56:46 -06:00
qcom,gcc-sm8450.yaml dt-bindings: clock: Add SM8450 GCC clock bindings 2021-12-14 21:19:13 -06:00
qcom,gcc.yaml dt-bindings: clock: split qcom,gcc.yaml to common and specific schema 2022-03-08 16:19:30 -06:00
qcom,gpucc-sdm660.yaml dt-bindings: clock: Add QCOM SDM630 and SDM660 graphics clock bindings 2021-02-14 12:56:55 -08:00
qcom,gpucc-sm8350.yaml dt-bindings: clock: Add Qcom SM8350 GPUCC bindings 2022-07-06 15:15:15 -05:00
qcom,gpucc.yaml dt-bindings: clock: add SM6350 QCOM Graphics clock bindings 2022-03-08 16:16:47 -06:00
qcom,hfpll.txt dt-bindings: clock: Document qcom,hfpll 2018-10-17 13:14:42 -07:00
qcom,krait-cc.txt dt-bindings: clock: Document qcom,krait-cc 2018-10-17 13:15:01 -07:00
qcom,lcc.txt
qcom,lpasscc.txt dt-bindings: clock: Introduce QCOM LPASS clock bindings 2018-12-03 09:25:01 -08:00
qcom,mmcc.yaml dt-bindings: clock: Update my email address 2022-06-02 09:39:52 -05:00
qcom,msm8996-apcc.yaml dt-bindings: clock: Fix qcom,msm8996-apcc yaml syntax 2020-07-22 18:05:48 -07:00
qcom,msm8998-gpucc.yaml dt-bindings: Add missing 'additionalProperties: false' 2020-03-31 09:03:17 -06:00
qcom,q6sstopcc.yaml dt-bindings: clock: qcom: Add QCOM Q6SSTOP clock controller bindings 2019-10-17 14:50:40 -07:00
qcom,qcm2290-dispcc.yaml dt-bindings: clock: Add qualcomm QCM2290 DISPCC bindings 2022-02-10 17:56:10 -06:00
qcom,rpmcc.yaml dt-bindings: clock: fix wrong clock documentation for qcom,rpmcc 2022-07-18 19:13:27 -05:00
qcom,rpmhcc.yaml dt-bindings: clock: Add sc8280xp to the RPMh clock controller binding 2022-02-24 21:43:21 -06:00
qcom,sc7180-camcc.yaml dt-bindings: clock: Add YAML schemas for the QCOM Camera clock bindings. 2020-11-04 18:26:56 -08:00
qcom,sc7180-dispcc.yaml dt-bindings: Fix incorrect 'reg' property sizes 2020-05-14 14:43:27 -05:00
qcom,sc7180-lpasscorecc.yaml dt-bindings: clock: Fix YAML schemas for LPASS clocks on SC7180 2020-07-31 16:20:37 -07:00
qcom,sc7180-mss.yaml dt-bindings: Fix incorrect 'reg' property sizes 2020-05-14 14:43:27 -05:00
qcom,sc7280-camcc.yaml dt-bindings: clock: Add YAML schemas for CAMCC clocks on SC7280 2021-10-13 15:24:54 -07:00
qcom,sc7280-dispcc.yaml dt-bindings: clock: Add SC7280 DISPCC clock binding 2021-07-20 13:46:32 -07:00
qcom,sc7280-lpasscc.yaml dt-bindings: clock: Add YAML schemas for LPASS clocks on SC7280 2021-10-13 15:22:49 -07:00
qcom,sc7280-lpasscorecc.yaml dt-bindings: clock: Add YAML schemas for LPASS clocks on SC7280 2022-04-12 21:16:48 -05:00
qcom,sdm845-camcc.yaml dt-bindings: clocks: qcom,sdm845-camcc: add clocks/clock-names 2022-02-23 22:20:19 -06:00
qcom,sdm845-dispcc.yaml dt-bindings: Fix incorrect 'reg' property sizes 2020-05-14 14:43:27 -05:00
qcom,sm8450-camcc.yaml dt-bindings: clock: add QCOM SM8450 camera clock bindings 2022-07-06 15:18:32 -05:00
qcom,spmi-clkdiv.txt dt-bindings: Add qcom spmi_pmic clock divider bindings 2017-12-06 22:29:48 -08:00
qcom,turingcc.txt dt-bindings: clock: Introduce Qualcomm Turing Clock controller 2019-04-11 13:34:10 -07:00
qcom,videocc.yaml dt-bindings: clock: qcom,videocc: add mmcx power domain 2021-10-14 17:50:46 -07:00
qoriq-clock.txt dt-bindings: qoriq-clock: add missing compatible for lx2160a 2022-02-18 17:11:16 -06:00
renesas,9series.yaml dt-bindings: clk: rs9: Add Renesas 9-series I2C PCIe clock generator 2022-03-15 16:57:37 -07:00
renesas,cpg-clocks.yaml dt-bindings: Whitespace clean-ups in schema files 2020-08-14 08:55:58 -06:00
renesas,cpg-div6-clock.yaml dt-bindings: clock: renesas: Make example 'clocks' parsable 2022-03-24 19:24:10 -07:00
renesas,cpg-mssr.yaml dt-bindings: clock: renesas,cpg-mssr: Document r8a779g0 2022-04-25 10:45:15 +02:00
renesas,cpg-mstp-clocks.yaml dt-bindings: clock: renesas: mstp: Convert to json-schema 2020-05-20 14:08:15 +02:00
renesas,emev2-smu.yaml dt-bindings: clk: emev2: Convert to json-schema 2021-05-10 11:54:32 -05:00
renesas,r9a06g032-sysctrl.yaml dt-bindings: clock: r9a06g032-sysctrl: Reference the DMAMUX subnode 2022-05-19 22:34:51 +05:30
renesas,rcar-usb2-clock-sel.yaml dt-bindings: clock: renesas: rcar-usb2-clock-sel: Add support for RZ/G2 M/N/H 2021-01-12 12:35:13 +01:00
renesas,rzg2l-cpg.yaml dt-bindings: clock: renesas,rzg2l: Simplify header file references 2022-06-13 11:53:18 +02:00
rockchip,px30-cru.yaml dt-bindings: clock: convert rockchip,px30-cru.txt to YAML 2022-05-17 20:56:57 +02:00
rockchip,rk3036-cru.yaml dt-bindings: clock: convert rockchip,rk3036-cru.txt to YAML 2022-05-17 21:05:35 +02:00
rockchip,rk3128-cru.txt
rockchip,rk3188-cru.yaml dt-bindings: clock: convert rockchip,rk3188-cru.txt to YAML 2022-05-17 20:52:29 +02:00
rockchip,rk3228-cru.yaml dt-bindings: clock: convert rockchip,rk3228-cru.txt to YAML 2022-05-17 21:05:39 +02:00
rockchip,rk3288-cru.yaml dt-bindings: clock: convert rockchip,rk3288-cru.txt to YAML 2022-05-17 20:52:25 +02:00
rockchip,rk3308-cru.yaml dt-bindings: clock: convert rockchip,rk3308-cru.txt to YAML 2022-05-17 21:05:32 +02:00
rockchip,rk3328-cru.txt clk: rockchip: document hdmi_phy external input for rk3328 2018-02-12 15:00:58 +01:00
rockchip,rk3368-cru.yaml dt-bindings: clock: convert rockchip,rk3368-cru.txt to YAML 2022-05-17 21:05:43 +02:00
rockchip,rk3399-cru.yaml dt-bindings: clock: fix rk3399 cru clock issues 2022-04-10 19:05:48 +02:00
rockchip,rk3568-cru.yaml dt-binding: clock: Add missing rk3568 cru bindings 2022-05-14 12:40:41 +02:00
rockchip,rv1108-cru.yaml dt-bindings: clock: convert rockchip,rv1108-cru.txt to YAML 2022-05-15 22:38:30 +02:00
samsung,exynos7-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,exynos850-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,exynos4412-isp-clock.yaml Devicetree updates for v5.19: 2022-05-25 14:56:06 -07:00
samsung,exynos5260-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,exynos5410-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,exynos5433-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,exynos7885-clock.yaml dt-bindings: clock: Add bindings for Exynos7885 CMU_FSYS 2022-06-20 13:57:03 +02:00
samsung,exynos-audss-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,exynos-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,exynos-ext-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,exynosautov9-clock.yaml dt-bindings: clock: add Exynos Auto v9 SoC CMU bindings 2022-05-05 08:58:38 +02:00
samsung,s2mps11.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,s3c64xx-clock.txt dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
samsung,s3c2410-clock.txt dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
samsung,s3c2412-clock.txt dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
samsung,s3c2443-clock.txt dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
samsung,s5pv210-audss-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,s5pv210-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
silabs,si514.txt Replace HTTP links with HTTPS ones: Common CLK framework 2020-07-10 17:15:34 -07:00
silabs,si544.txt clk: Add driver for the si544 clock generator chip 2018-03-23 10:05:25 -07:00
silabs,si570.txt dt-bindings: clock: si570: Add 'silabs,skip-recall' property 2021-02-11 12:13:50 -08:00
silabs,si5341.txt dt-bindings: clock: clk-si5341: Add new attributes 2021-06-27 19:58:14 -07:00
silabs,si5351.txt clk: si5351: Update datasheet references 2021-11-02 14:29:17 -07:00
snps,hsdk-pll-clock.txt
snps,pll-clock.txt
socionext,uniphier-clock.yaml dt-bindings: clock: uniphier: Add clock binding for SoC-glue 2021-11-02 14:34:50 -07:00
sprd,sc9860-clk.txt dt-bindings: clk: sprd: rename the common file name sprd.txt to SoC specific 2020-03-24 19:03:56 -07:00
sprd,sc9863a-clk.yaml dt-bindings: Drop redundant minItems/maxItems 2021-06-21 13:56:46 -06:00
sprd,ums512-clk.yaml dt-bindings: clk: sprd: Add bindings for ums512 clock controller 2022-07-11 12:59:11 -07:00
st,nomadik.txt
st,stm32-rcc.txt clk: stm32: Introduce clocks of STM32F769 board 2019-04-25 11:46:36 -07:00
st,stm32h7-rcc.txt dt-bindings: clk: stm32h7: fix clock-cell size 2017-09-21 18:39:11 -05:00
st,stm32mp1-rcc.yaml dt-bindings: rcc: stm32: select the "secure" path for stm32mp13 2022-07-05 09:26:36 +02:00
starfive,jh7100-audclk.yaml dt-bindings: clock: Add starfive,jh7100-audclk bindings 2022-03-10 18:17:32 -08:00
starfive,jh7100-clkgen.yaml dt-bindings: clock: starfive: Add JH7100 bindings 2021-12-16 17:22:56 +01:00
stericsson,abx500.txt
stericsson,u8500-clks.yaml dt-bindings: clock: u8500: Add clkout clock bindings 2022-04-25 16:17:24 -07:00
sunplus,sp7021-clkc.yaml dt-bindings: clock: Add bindings for SP7021 clock driver 2022-07-08 14:23:39 +02:00
tesla,fsd-clock.yaml dt-bindings: clock: Document FSD CMU bindings 2022-01-26 10:21:57 +01:00
ti-clkctrl.txt dt-bindings: clock: ti: Add clock-output-names for clockctrl 2022-04-11 16:02:49 +03:00
ti-keystone-pllctrl.txt dt-bindings: Remove leading 0x from bindings notation 2017-12-06 14:56:33 -06:00
ti,am654-ehrpwm-tbclk.yaml dt-bindings: clock: ehrpwm: Add AM62 specific compatible 2022-04-22 19:04:47 -07:00
ti,cdce706.txt Replace HTTP links with HTTPS ones: Common CLK framework 2020-07-10 17:15:34 -07:00
ti,cdce925.txt Replace HTTP links with HTTPS ones: Common CLK framework 2020-07-10 17:15:34 -07:00
ti,lmk04832.yaml dt-bindings: clock: add ti,lmk04832 bindings 2021-06-27 17:58:26 -07:00
ti,sci-clk.yaml dt-bindings: clock: Convert ti,sci-clk to json schema 2021-05-10 11:54:31 -05:00
toshiba,tmpv770x-pipllct.yaml dt-bindings: clock: Add DT bindings for PLL of Toshiba Visconti TMPV770x SoC 2022-01-05 17:05:21 -08:00
toshiba,tmpv770x-pismu.yaml dt-bindings: clock: Add DT bindings for SMU of Toshiba Visconti TMPV770x SoC 2022-01-05 17:05:21 -08:00
vf610-clock.txt
vt8500.txt
xgene.txt
xlnx,versal-clk.yaml dt-bindings: Fix paths in schema $id fields 2020-02-05 09:14:57 +00:00
xlnx,zynqmp-clk.txt dt-bindings: xilinx: Separate clock binding from firmware doc 2019-03-18 13:41:31 +01:00
zynq-7000.txt