linux/Documentation/devicetree/bindings/clock
Linus Torvalds 502d45774a Mostly the usual clk driver updates and new SoC additions plus non-critical
data fixes for things that weren't used yet. One thing that's new here in the
 core is SSC spread spectrum support (SSC) in the clk provider API. The idea is
 that DT authors will configure SSC for certain clks and they'll be configured
 at clk provider registration time or when a consumer device is probed, similar
 to how we handle assigned clk rates or parents.
 
 On the clk driver side we have Qualcomm adding almost half the diff because
 they add support for 4 different SoCs and then a long tail of other SoCs like
 Mediatek, Renesas, Rockchip, SpaceMiT, etc. add more SoC support this time
 around. Luckily it's mostly clk data for these new SoCs because the actual
 clk_ops are already there. Beyond the new drivers we get all the little fixups
 for more compilation coverage or usage of more modern APIs. That all looks
 normal.
 
 Finally, I kinda buried the lead, I'm bringing on Brian and Jerome to help out
 with maintaining the clk subsystem. The current working model is already
 semi-distributed in that silicon vendors typically take care of their drivers
 and send me pull requests but I'm becoming a bottleneck for new drivers and
 core framework review because this has become a 100% volunteer effort on my
 part. Mike is stepping down after all these years (thanks Mike!) and that jump
 started the conversation around finding co-maintainers. Brian and Jerome have
 graciously offered to help me with the work load, meaning in the future they'll
 be sending pull requests and committing directly to the clk.git tree. They've
 both been around on the list for a while, I've met them both in person, and
 they've been making changes to the core clk framework along with helping review
 patches so I'm pretty confident this will work well.
 
 Core:
  - devm_clk_bulk_get_enable() consumer API
  - devm_clk_hw_register_composite_pdata() provider API
  - Spread Spectrum Clock (SSC) support via DT bindings and provider APIs
  - Divider clk rounding improved (and tested)
 
 New Drivers:
  - Cix Sky1 audio subsystem (AUDSS)
  - UltraRISC DP1000
  - MediaTek MT8173 MFG_TOP
  - Si549
  - Aspeed AST2700 PECI
  - Airoha EN7523 PCIe
  - Rockchip RV1106
  - Mobileye EyeQ7H
  - Qualcomm Maili GCC, TCSR, RPMh, and video clks
  - Qualcomm Shikra GCC, RPM, GPU, display, and audio clks
  - Qualcomm Nord display and graphics clks
  - Qualcomm Glymur camera and EVA clks
  - Qualcomm Hawi video clks
  - Amlogic A9 AO and peripheral clks
  - Renesas R-Car X5H (R8A78000) CPG
 -----BEGIN PGP SIGNATURE-----
 
 iQJIBAABCAAyFiEE9L57QeeUxqYDyoaDrQKIl8bklSUFAmqPGK4UHHN3Ym95ZEBj
 aHJvbWl1bS5vcmcACgkQrQKIl8bklSXB+g/+O8McZyE7kqNPiz8nQNQq9YwzO9uB
 /5LkNUUvvxhzJ9YEcXx8HCkmUcAks+kMCHzrZ/gxAN6BQGv9qrTChZZD2ZmD8e50
 nj3IxyvN51PwRk5ley1PEsUILrnOqRpY6g83arnFppTP2aU/NxFFGjc5u+5qlIT4
 f0xj2sJ0H96Ykw+brSJgEj9MXJHMEKerEqBmaDd0boHavDV3YkT/HxRrjy3WH/sE
 FBAdq6sOAEX3qnNwsF9debrfg1nKJGH2U8ecb1JThlAufn8yHvC+mxr3P4USxdov
 xGhDkvKbS+9nkbxeL1LOhnoReOWqNBGQg9qmadQKTrPEu/BAOb8nG62xpucIgLSl
 6X3AACRzEE8u8Thaboz+cvQluQfOo667xz5X+bpTsQjfQuq4Yh0F4pO6pLmLd+LT
 NdOzbQctglbpwHbXIxXQftg+Fnk1bgERILW64DU9mUqXzSJJG9uzv+Ne5R0TTXJp
 TMRTp/o8o4Fclr1WB73wES523xpf7VltPfUw5XL9UN2xCCY5TI2bpHQwgfmkz/6J
 nHmxNBBK19qlNFzDovN1gfgwn9XVDLmT7YVSw0El24kINHs7rYXuGc++OX+LmUb3
 r19QxJXU8ESV89ZGJYhnaSOKrCj1d4W49AkVqovvJXXYxxlFTab1ox8xKnhUlxGH
 SGDC+kZah2zUl7A=
 =iYa8
 -----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:
 "Mostly the usual clk driver updates and new SoC additions plus
  non-critical data fixes for things that weren't used yet.

  One thing that's new here in the core is SSC spread spectrum support
  (SSC) in the clk provider API. The idea is that DT authors will
  configure SSC for certain clks and they'll be configured at clk
  provider registration time or when a consumer device is probed,
  similar to how we handle assigned clk rates or parents.

  On the clk driver side we have Qualcomm adding almost half the diff
  because they add support for 4 different SoCs and then a long tail of
  other SoCs like Mediatek, Renesas, Rockchip, SpaceMiT, etc. add more
  SoC support this time around. Luckily it's mostly clk data for these
  new SoCs because the actual clk_ops are already there. Beyond the new
  drivers we get all the little fixups for more compilation coverage or
  usage of more modern APIs. That all looks normal.

  Finally, I kinda buried the lede, I'm bringing on Brian and Jerome to
  help out with maintaining the clk subsystem. The current working model
  is already semi-distributed in that silicon vendors typically take
  care of their drivers and send me pull requests but I'm becoming a
  bottleneck for new drivers and core framework review because this has
  become a 100% volunteer effort on my part.

  Mike is stepping down after all these years (thanks Mike!) and that
  jump started the conversation around finding co-maintainers. Brian and
  Jerome have graciously offered to help me with the work load, meaning
  in the future they'll be sending pull requests and committing directly
  to the clk.git tree. They've both been around on the list for a while,
  I've met them both in person, and they've been making changes to the
  core clk framework along with helping review patches so I'm pretty
  confident this will work well.

  Core:
   - devm_clk_bulk_get_enable() consumer API
   - devm_clk_hw_register_composite_pdata() provider API
   - Spread Spectrum Clock (SSC) support via DT bindings and provider APIs
   - Divider clk rounding improved (and tested)

  New Drivers:
   - Cix Sky1 audio subsystem (AUDSS)
   - UltraRISC DP1000
   - MediaTek MT8173 MFG_TOP
   - Si549
   - Aspeed AST2700 PECI
   - Airoha EN7523 PCIe
   - Rockchip RV1106
   - Mobileye EyeQ7H
   - Qualcomm Maili GCC, TCSR, RPMh, and video clks
   - Qualcomm Shikra GCC, RPM, GPU, display, and audio clks
   - Qualcomm Nord display and graphics clks
   - Qualcomm Glymur camera and EVA clks
   - Qualcomm Hawi video clks
   - Amlogic A9 AO and peripheral clks
   - Renesas R-Car X5H (R8A78000) CPG"

* tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: (269 commits)
  clk: microchip: mpfs: fix regmap_update_bits() mask/val order
  clk: visconti: Make sure clk_init_data is fully initialized
  clk: ti: Make sure clk_init_data is fully initialized
  MAINTAINERS: Add Brian Masney and Jerome Brunet as co-maintainers for clk subsystem
  Drop Michael Turquette's clk maintainer entry
  clk: ti: composite: resolve parent clocks by DT index, not by name
  clk: ti: mux: resolve parent clocks by DT index, not by name
  clk: devres: fix cleanup in devm_clk_get_optional_enabled_with_rate()
  dt-bindings: clock: ti,keystone-gate: Convert to DT schema
  dt-bindings: clock: ti: Convert APLL clock to DT schema
  clk: zynq: pll: Fix kernel-doc after determine_rate() conversion
  dt-bindings: clock: ti,clockdomain: Convert to DT schema
  dt-bindings: clock: Correct white-space style
  clk: samsung: Don't include <linux/mod_devicetable.h>
  clk: at91: Read "reg" with helper
  clk: renesas: Add R-Car X5H CPG driver
  clk: rockchip: rk3576: fix source muxes for SPI0..SPI4
  clk: rockchip: Add clock controller for the RV1106
  dt-bindings: clock: rockchip: Add RV1106 CRU support
  dt-bindings: clock: Document Renesas R-Car X5H Clock Pulse Generator
  ...
2026-08-26 11:14:30 -07:00
..
sifive dt-bindings: drop Sagar Kadam from SiFive binding maintainership 2023-02-21 10:22:04 -06:00
st dt-bindings: clock: st: flexgen: remove deprecated compatibles 2025-09-21 09:52:31 -07:00
ti dt-bindings: clock: ti: Convert APLL clock to DT schema 2026-08-17 09:28:14 -07:00
actions,owl-cmu.yaml dt-bindings: clock: actions,owl-cmu: convert to YAML 2024-11-14 12:27:09 -08:00
adi,axi-clkgen.yaml dt-bindings: clock: adi,axi-clkgen: add clock-output-names property 2025-08-13 11:41:32 -07:00
airoha,en7523-scu.yaml dt-bindings: clock, reset: Add econet EN751221 2026-03-24 21:55:41 -07:00
allwinner,sun4i-a10-ahb-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-apb1-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-apb0-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-axi-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-ccu.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-cpu-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-display-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-gates-clk.yaml dt-bindings: Remove extra blank lines 2025-11-17 11:24:50 -06:00
allwinner,sun4i-a10-mbus-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-mmc-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-mod1-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-mod0-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-osc-clk.yaml dt-bindings: Fix typos 2023-08-18 11:32:25 -05:00
allwinner,sun4i-a10-pll1-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-pll3-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-pll5-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-pll6-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-tcon-ch0-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-usb-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun4i-a10-ve-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun5i-a13-ahb-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun6i-a31-pll6-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun7i-a20-gmac-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun7i-a20-out-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun8i-a83t-de2-clk.yaml dt-bindings: allwinner: add H616 DE33 clock binding 2025-05-12 23:55:06 +08:00
allwinner,sun8i-h3-bus-gates-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-ahb-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-apb0-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-cpus-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-de-clks.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-gt-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-mmc-config-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-pll4-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-usb-clks.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-usb-mod-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun9i-a80-usb-phy-clk.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
allwinner,sun55i-a523-ccu.yaml dt-bindings: clock: sun55i-a523-ccu: Add A523 MCU CCU clock controller 2025-09-13 13:49:09 +08:00
alphascale,asm9260-clock-controller.yaml dt-bindings: clock: Convert alphascale,asm9260-clock-controller to DT schema 2025-06-18 18:42:10 -07:00
amlogic,a1-peripherals-clkc.yaml dt-bindings: clock: meson: a1: peripherals: support sys_pll input 2024-06-10 12:16:45 +02:00
amlogic,a1-pll-clkc.yaml dt-bindings: clock: meson: a1: pll: introduce new syspll bindings 2024-06-10 12:16:45 +02:00
amlogic,a9-aoclkc.yaml dt-bindings: clock: Add Amlogic A9 AO clock controller 2026-06-29 11:15:18 +02:00
amlogic,a9-peripherals-clkc.yaml dt-bindings: clock: Add Amlogic A9 peripherals clock controller 2026-07-24 14:02:54 +02:00
amlogic,axg-audio-clkc.yaml dt-bindings: clock: meson: Convert axg-audio-clkc to YAML format 2024-06-03 13:57:45 +02:00
amlogic,c3-peripherals-clkc.yaml dt-bindings: clock: add Amlogic C3 peripherals clock controller 2024-06-04 10:27:23 +02:00
amlogic,c3-pll-clkc.yaml dt-bindings: clock: fix C3 PLL input parameter 2024-08-30 10:13:47 +02:00
amlogic,gxbb-aoclkc.yaml dt-bindings: clock: amlogic: convert amlogic,gxbb-aoclkc.txt to dt-schema 2023-08-08 16:09:29 +02:00
amlogic,gxbb-clkc.yaml dt-bindings: clock: amlogic: convert amlogic,gxbb-clkc.txt to dt-schema 2023-08-08 16:06:46 +02:00
amlogic,meson8-clkc.yaml dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema 2024-09-30 11:29:26 +02:00
amlogic,meson8-ddr-clkc.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
amlogic,s4-peripherals-clkc.yaml dt-bindings: clock: document Amlogic S4 SoC peripherals clock controller 2023-09-27 10:54:24 +02:00
amlogic,s4-pll-clkc.yaml dt-bindings: clock: document Amlogic S4 SoC PLL clock controller 2023-09-27 10:54:24 +02:00
amlogic,t7-peripherals-clkc.yaml dt-bindings: clock: amlogic: t7: Add missing mpll3 parent clock 2026-04-28 10:42:47 +02:00
amlogic,t7-pll-clkc.yaml dt-bindings: clock: amlogic: Fix redundant hyphen in "amlogic,t7-gp1--pll" string. 2026-04-28 10:42:47 +02:00
apm,xgene-device-clock.yaml dt-bindings: clock: Convert APM XGene clocks to DT schema 2025-06-18 18:35:16 -07:00
apm,xgene-socpll-clock.yaml dt-bindings: clock: Convert APM XGene clocks to DT schema 2025-06-18 18:35:16 -07:00
apple,nco.yaml dt-bindings: clock: apple,nco: Add t6020-nco compatible 2025-09-14 21:51:01 +02:00
arm,syscon-icst.yaml dt-bindings: clock: Drop unneeded quotes 2023-03-31 10:00:53 -05:00
atmel,at91rm9200-pmc.yaml dt-bindings: clocks: atmel,at91rm9200-pmc: add missing compatibles 2025-03-13 18:01:58 -07:00
atmel,at91sam9x5-sckc.yaml dt-bindings: clocks: atmel,at91sam9x5-sckc: add sama7d65 2024-12-17 10:10:20 +02:00
axis,artpec6-clkctrl.yaml dt-bindings: clock: Convert axis,artpec6-clkctrl to DT schema 2025-06-18 18:35:01 -07:00
axis,artpec8-clock.yaml dt-bindings: clock: Add ARTPEC-8 clock controller 2025-08-31 15:22:10 +02:00
axis,artpec9-clock.yaml dt-bindings: clock: Add ARTPEC-9 clock controller 2026-02-24 12:37:44 +01:00
axs10x-i2s-pll-clock.txt
bitmain,bm1880-clk.yaml dt-bindings: clock: drop useless consumer example 2022-03-24 19:29:11 -07:00
brcm,bcm63xx-clocks.yaml dt-bindings: clock: Convert brcm,bcm63xx-clocks to DT schema 2025-06-11 11:21:55 -05:00
brcm,bcm2711-dvp.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
brcm,bcm2835-aux-clock.yaml dt-bindings: clock: convert bcm2835-aux-clock to yaml 2025-05-06 14:13:01 -07:00
brcm,bcm2835-cprman.yaml dt-bindings: clock: Convert brcm,bcm2835-cprman to DT schema 2025-06-18 18:38:43 -07:00
brcm,bcm53573-ilp.yaml dt-bindings: clock: Convert brcm,bcm53573-ilp to DT schema 2025-06-18 18:25:43 -07:00
brcm,bcm63268-timer-clocks.yaml dt-bindings: Remove last usage of "binding" or "schema" in titles 2023-06-16 13:56:18 -06:00
brcm,iproc-clocks.yaml
brcm,kona-ccu.yaml dt-bindings: clock: brcm,kona-ccu: convert to YAML 2023-12-17 15:23:16 -08:00
calxeda.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
canaan,k210-clk.yaml dt-bindings: Change Damien Le Moal's contact email 2023-06-08 07:31:27 -06:00
canaan,k230-clk.yaml dt-bindings: clock: Add Canaan K230 clock controller 2026-05-21 10:55:12 +01:00
cirrus,cs2000-cp.yaml dt-bindings: clock: cirrus,cs2000-cp: Document CS2500 2026-05-31 10:40:42 +02:00
cirrus,ep7209-clk.yaml dt-bindings: clock: Convert cirrus,ep7209-clk to DT schema 2025-06-18 18:36:48 -07:00
cirrus,lochnagar.yaml dt-bindings: clock: cirrus,lochnagar: add top-level constraints 2024-08-28 10:01:25 -07: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
eswin,eic7700-clock.yaml dt-bindings: clock: eswin: Documentation for eic7700 SoC 2026-03-24 19:11:25 -07:00
eswin,eic7700-hspcrg.yaml dt-bindings: clock: Add ESWIN eic7700 HSP clock and reset generator 2026-06-29 13:18:20 -04:00
fixed-clock.yaml dt-bindings: clock: fixed: Define a preferred node name 2024-05-03 17:56:55 -07:00
fixed-factor-clock.yaml dt-bindings: clock: fixed: Define a preferred node name 2024-05-03 17:56:55 -07:00
fixed-mmio-clock.yaml dt-bindings: drop redundant part of title (beginning) 2022-12-16 11:41:49 -06:00
fsl,flexspi-clock.yaml
fsl,imx8-acm.yaml dt-bindings: clock: fsl,imx8-acm: Add audio clock mux support 2023-08-14 12:27:52 +03:00
fsl,imx8m-anatop.yaml dt-bindings: clock: add i.MX8M Anatop 2022-10-24 09:02:54 +08:00
fsl,imx8ulp-sim-lpav.yaml dt-bindings: clock: document 8ULP's SIM LPAV 2025-11-11 18:01:22 +02:00
fsl,imx93-anatop.yaml dt-bindings: clock: support i.MX93 ANATOP clock module 2023-12-05 16:04:10 +02:00
fsl,plldig.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
fsl,qoriq-clock-legacy.yaml dt-bindings: clock: qoriq-clock: convert to yaml format 2024-07-08 11:58:17 -07:00
fsl,qoriq-clock.yaml dt-bindings: clock: qoriq-clock: convert to yaml format 2024-07-08 11:58:17 -07:00
fsl,sai-clock.yaml dt-bindings: clock: fsl-sai: Document clock-cells = <1> support 2026-04-11 17:32:38 -07:00
fsl,scu-clk.yaml dt-bindings: drop redundant part of title (manual) 2022-12-16 12:51:43 -06:00
fsl,vf610-ccm.yaml dt-bindings: clock: convert vf610-clock.txt to yaml format 2025-04-29 14:05:14 -07:00
gated-fixed-clock.yaml dt-bindings: clocks: add binding for gated-fixed-clocks 2024-10-15 16:04:19 -07:00
google,gs101-clock.yaml Merge branch 'for-v6.20/dt-bindings-clk' into next/clk 2026-01-17 20:29:51 +01:00
gpio-gate-clock.yaml dt-bindings: clock: gpio-gate-clock: Convert to json-schema 2022-08-22 16:14:54 -07:00
gpio-mux-clock.yaml
hi3660-clock.txt
hi3670-clock.txt
hi6220-clock.txt
hisi-crg.txt
hisilicon,hi3559av100-clock.yaml
idt,versaclock5.yaml dt-bindings: clk: vc5: Make SD/OE pin configuration properties not required 2024-09-13 14:50:48 -05:00
img,boston-clock.txt
img,pistachio-clk.yaml dt-bindings: clock: Convert img,pistachio-clk to DT schema 2025-06-18 18:39:41 -07:00
imx1-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx5-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx6q-clock.yaml dt-bindings: clock: imx6q[ul]-clock: add optional clock enet[1]_ref_pad 2026-03-03 14:27:06 +02:00
imx6sl-clock.yaml dt-bindings: drop stale Anson Huang from maintainers 2024-07-09 07:40:17 -06:00
imx6sll-clock.yaml dt-bindings: drop stale Anson Huang from maintainers 2024-07-09 07:40:17 -06:00
imx6sx-clock.yaml dt-bindings: drop stale Anson Huang from maintainers 2024-07-09 07:40:17 -06:00
imx6ul-clock.yaml dt-bindings: clock: imx6q[ul]-clock: add optional clock enet[1]_ref_pad 2026-03-03 14:27:06 +02:00
imx7d-clock.yaml dt-bindings: drop stale Anson Huang from maintainers 2024-07-09 07:40:17 -06:00
imx7ulp-pcc-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx7ulp-scg-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx8m-clock.yaml dt-bindings: clock: imx8m: document nominal/overdrive properties 2025-03-03 19:02:06 +02:00
imx8mp-audiomix.yaml dt-bindings: clock: imx8mp: add axi clock 2025-03-03 18:49:42 +02:00
imx8qxp-lpcg.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
imx8ulp-cgc-clock.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
imx8ulp-pcc-clock.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
imx21-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx23-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx25-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx27-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx28-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx31-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx35-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
imx93-clock.yaml dt-bindings: clock: Add i.MX91 clock support 2024-10-23 22:48:30 +03:00
imxrt1050-clock.yaml dt-bindings: clock: drop redundant part of title 2022-12-16 11:41:49 -06:00
ingenic,cgu.yaml dt-bindings: clock: drop unneeded quotes and use absolute /schemas path 2023-06-15 10:35:33 -07:00
intel,agilex.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
intel,agilex5-clkmgr.yaml dt-bindings: clock: add Intel Agilex5 clock manager 2023-08-08 06:32:34 -05:00
intel,cgu-lgm.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
intel,easic-n5x.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
intel,stratix10.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
keystone-pll.txt dt-bindings: clock: keystone: remove unstable remark 2024-04-03 08:13:32 -05:00
loongson,ls1x-clk.yaml dt-bindings: clock: Add Loongson-1 clock 2023-03-21 16:25:49 -07:00
loongson,ls2k-clk.yaml dt-bindings: clock: loongson2: Add Loongson-2K0300 compatible 2025-09-21 12:48:30 -07:00
lsi,axm5516-clks.yaml dt-bindings: clock: Convert lsi,axm5516-clks to DT schema 2025-06-18 18:39:52 -07:00
lsi,nspire-cx-clock.yaml dt-bindings: clock: Convert TI-NSPIRE clocks to DT schema 2025-06-18 18:40:02 -07:00
marvell-armada-370-gating-clock.yaml dt-bindings: clock: Convert marvell-armada-370-gating-clock to DT schema 2025-06-18 18:40:24 -07:00
marvell,ap80x-clock.yaml dt-bindings: arm: Convert Marvell AP80x System Controller to DT schema 2025-11-17 11:24:49 -06:00
marvell,armada-370-corediv-clock.yaml dt-bindings: clock: Convert marvell,armada-370-corediv-clock to DT schema 2025-06-18 18:41:42 -07:00
marvell,armada-3700-periph-clock.yaml dt-bindings: clock: Convert marvell,armada-3700-periph-clock to DT schema 2025-06-18 18:41:30 -07:00
marvell,armada-3700-tbg-clock.yaml dt-bindings: clock: Convert marvell,armada-3700-tbg-clock to DT schema 2025-06-18 18:40:34 -07:00
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,armada-xp-cpu-clock.yaml dt-bindings: clock: Convert marvell,armada-xp-cpu-clock to DT schema 2025-06-18 18:40:14 -07:00
marvell,berlin2-clk.yaml dt-bindings: clock: Convert marvell,berlin2-clk to DT schema 2025-06-18 18:41:02 -07:00
marvell,cp110-clock.yaml dt-bindings: arm: Convert Marvell CP110 System Controller to DT schema 2025-11-17 11:24:49 -06:00
marvell,dove-divider-clock.yaml dt-bindings: clock: Convert marvell,dove-divider-clock to DT schema 2025-06-18 18:40:48 -07:00
marvell,mmp2-audio-clock.yaml
marvell,mmp2-clock.yaml
marvell,mvebu-core-clock.yaml dt-bindings: clock: Convert marvell,mvebu-core-clock to DT schema 2025-06-18 18:41:24 -07:00
marvell,pxa168.txt
marvell,pxa910.txt
marvell,pxa1908.yaml dt-bindings: clock: marvell,pxa1908: Add #reset-cells 2026-04-28 19:07:48 -07:00
marvell,pxa1928.txt
maxim,max9485.yaml dt-bindings: clock: Convert maxim,max9485 to DT schema 2025-07-24 14:11:26 -07:00
mediatek,apmixedsys.yaml dt-bindings: clock: Add MediaTek MT6735 clock and reset bindings 2024-10-17 12:24:35 -07:00
mediatek,ethsys.yaml dt-bindings: clock: mediatek: add clock controllers of MT7988 2024-01-03 15:55:17 -08:00
mediatek,infracfg.yaml dt-bindings: clock: Add MediaTek MT6735 clock and reset bindings 2024-10-17 12:24:35 -07:00
mediatek,mt2701-hifsys.yaml dt-bindings: clock: mediatek: convert hifsys to the json-schema clock 2024-02-21 20:56:37 -08:00
mediatek,mt6795-clock.yaml dt-bindings: clock: mediatek: Add clock driver bindings for MT6795 2022-09-26 11:13:09 +08:00
mediatek,mt7621-sysc.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
mediatek,mt7622-pciesys.yaml dt-bindings: clock: mediatek,mt7622-pciesys: Remove syscon compatible 2026-01-22 17:43:40 -08:00
mediatek,mt7622-ssusbsys.yaml dt-bindings: clock: mediatek: convert SSUSBSYS to the json-schema clock 2024-02-21 20:56:37 -08:00
mediatek,mt7988-ethwarp.yaml dt-bindings: clock: mediatek: add clock controllers of MT7988 2024-01-03 15:55:17 -08:00
mediatek,mt7988-xfi-pll.yaml dt-bindings: clock: mediatek: add clock controllers of MT7988 2024-01-03 15:55:17 -08:00
mediatek,mt8173-mfgtop.yaml dt-bindings: clock: mediatek: Add mt8173 mfgtop 2026-07-28 11:25:30 -04:00
mediatek,mt8186-clock.yaml dt-bindings: Move Mediatek clock controllers to "clock" directory 2024-08-12 13:51:15 -07:00
mediatek,mt8186-fhctl.yaml dt-bindings: clock: mediatek,mt8186-fhctl: Support MT6795, MT8173/92/95 2023-03-13 11:46:32 -07:00
mediatek,mt8186-sys-clock.yaml dt-bindings: Move Mediatek clock controllers to "clock" directory 2024-08-12 13:51:15 -07:00
mediatek,mt8188-clock.yaml dt-bindings: clock: mediatek: Add #reset-cells property for MT8188 2025-06-20 18:17:23 -07:00
mediatek,mt8188-sys-clock.yaml dt-bindings: clock: mediatek: Document reset cells for MT8188 sys 2024-07-08 12:07:51 -07:00
mediatek,mt8192-clock.yaml dt-bindings: Move Mediatek clock controllers to "clock" directory 2024-08-12 13:51:15 -07:00
mediatek,mt8192-sys-clock.yaml dt-bindings: Move Mediatek clock controllers to "clock" directory 2024-08-12 13:51:15 -07:00
mediatek,mt8195-clock.yaml dt-bindings: Move Mediatek clock controllers to "clock" directory 2024-08-12 13:51:15 -07:00
mediatek,mt8195-sys-clock.yaml dt-bindings: Move Mediatek clock controllers to "clock" directory 2024-08-12 13:51:15 -07:00
mediatek,mt8196-clock.yaml dt-bindings: clock: mediatek: Describe MT8196 clock controllers 2025-09-21 09:35:59 -07:00
mediatek,mt8196-sys-clock.yaml dt-bindings: clock: mediatek: Describe MT8196 clock controllers 2025-09-21 09:35:59 -07:00
mediatek,mt8365-clock.yaml dt-bindings: clock: mediatek: add bindings for MT8365 SoC 2022-09-30 15:07:43 -07:00
mediatek,mt8365-sys-clock.yaml dt-bindings: clock: mediatek: add bindings for MT8365 SoC 2022-09-30 15:07:43 -07:00
mediatek,mtmips-sysc.yaml dt-bindings: clock: mediatek,mtmips-sysc: Adapt compatible for MT7688 boards 2025-07-02 13:17:24 +02:00
mediatek,pericfg.yaml dt-bindings: clock: Correct white-space style 2026-08-17 09:28:10 -07:00
mediatek,syscon.yaml dt-bindings: clock: mediatek: Add power-domains property 2025-09-19 22:45:07 -07:00
mediatek,topckgen.yaml dt-bindings: clock: Add MediaTek MT6735 clock and reset bindings 2024-10-17 12:24:35 -07:00
microchip,lan966x-gck.yaml dt-bindings: clock: add support for lan969x 2024-10-13 19:18:58 +03:00
microchip,mpfs-ccc.yaml dt-bindings: clock: mpfs-ccc: Add pic64gx compatibility 2026-01-16 08:48:38 +02:00
microchip,mpfs-clkcfg.yaml dt-bindings: clock: mpfs-clkcfg: Add pic64gx compatibility 2026-01-16 08:48:38 +02:00
microchip,pic32mzda-clk.yaml dt-bindings: clock: Convert microchip,pic32mzda-clk to DT schema 2025-07-24 14:19:32 -07:00
microchip,sparx5-dpll.yaml
milbeaut-clock.yaml dt-bindings: clock: milbeaut: Drop providers and consumers from example 2024-06-03 16:32:04 -07:00
moxa,moxart-clock.yaml dt-bindings: clock: Convert moxa,moxart-clock to DT schema 2025-07-24 14:19:37 -07:00
mstar,msc313-cpupll.yaml dt-bindings: clk: mstar msc313 cpupll binding description 2022-02-16 19:16:03 +01:00
mstar,msc313-mpll.yaml
nuvoton,ma35d1-clk.yaml dt-bindings: clock: nuvoton: add binding for ma35d1 clock controller 2023-06-05 13:18:08 +02:00
nuvoton,npcm750-clk.yaml dt-bindings: clock: Convert nuvoton,npcm750-clk to DT schema 2025-07-24 14:19:42 -07:00
nuvoton,npcm845-clk.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
nvidia,tegra20-car.yaml dt-bindings: Fix inconsistent quoting 2025-11-17 11:24:50 -06:00
nvidia,tegra124-car.yaml dt-bindings: Fix inconsistent quoting 2025-11-17 11:24:50 -06:00
nvidia,tegra124-dfll.yaml dt-bindings: clock: tegra124-dfll: Convert to json-schema 2026-03-27 16:25:44 +01:00
nxp,imx95-blk-ctl.yaml dt-bindings: clock: Add support for i.MX94 LVDS/DISPLAY CSR 2025-07-21 10:33:54 +03:00
nxp,imx95-display-master-csr.yaml dt-bindings: clock: support i.MX95 Display Master CSR module 2024-04-22 12:58:10 +03:00
nxp,lpc1850-ccu.yaml dt-bindings: clock: convert lpc1850-ccu.txt to yaml format 2025-06-19 13:02:33 -07:00
nxp,lpc1850-cgu.yaml dt-bindings: clock: convert lpc1850-cgu.txt to yaml format 2025-07-24 14:26:01 -07:00
nxp,lpc3220-clk.yaml dt-bindings: clock: nxp,lpc3220-clk: Convert bindings to DT schema 2024-07-31 14:55:39 -07:00
nxp,lpc3220-usb-clk.yaml dt-bindings: clock: nxp,lpc3220-usb-clk: Convert bindings to dtschema 2024-07-31 15:01:28 -07:00
pwm-clock.yaml dt-bindings: clock: Convert pwm-clock to DT schema 2022-10-18 10:03:45 -05:00
pxa-clock.txt
qca,ath79-pll.yaml dt-bindings: clock: Convert qca,ath79-pll to DT schema 2025-07-24 14:19:46 -07:00
qcom,a7pll.yaml dt-bindings: clock: qcom: Clean-up titles and descriptions 2022-11-07 22:47:27 -06:00
qcom,a53pll.yaml dt-bindings: clock: qcom,a53pll: Add IPQ5210 compatible 2026-07-30 22:38:20 -05:00
qcom,aoncc-sm8250.yaml dt-bindings: clock: qcom: Clean-up titles and descriptions 2022-11-07 22:47:27 -06:00
qcom,audiocc-sm8250.yaml dt-bindings: clock: qcom: Clean-up titles and descriptions 2022-11-07 22:47:27 -06:00
qcom,camcc-sm8250.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,dispcc-sc8280xp.yaml dt-bindings: clock: qcom,dispcc-sc8280xp: reference qcom,gcc.yaml 2024-06-12 23:03:13 -05:00
qcom,dispcc-sm8x50.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,dispcc-sm6125.yaml dt-bindings: clock: qcom,sm6125-dispcc: reference qcom,gcc.yaml 2026-05-12 15:45:09 -05:00
qcom,dispcc-sm6350.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,eliza-dispcc.yaml dt-bindings: clock: qcom,eliza-dispcc: Add Eliza SoC display CC 2026-03-23 11:28:52 -05:00
qcom,gcc-apq8064.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-apq8084.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-ipq4019.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-ipq6018.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-ipq8064.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-ipq8074.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-mdm9607.yaml Mostly the usual clk driver updates and new SoC additions plus non-critical 2026-08-26 11:14:30 -07:00
qcom,gcc-mdm9615.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-msm8660.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-msm8909.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-msm8916.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-msm8953.yaml Devicetree updates for v7.3: 2026-08-19 10:32:34 -07:00
qcom,gcc-msm8974.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-msm8976.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-msm8994.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-msm8996.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-msm8998.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-qcm2290.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-qcs404.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sc7180.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sc7280.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sc8180x.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sc8280xp.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sdm660.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,gcc-sdm845.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sdx55.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sdx65.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sm6115.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sm6125.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sm6350.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sm8150.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sm8250.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sm8350.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc-sm8450.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,gcc.yaml dt-bindings: clock: qcom,gcc: sort out power-domains support 2024-05-31 18:07:30 -05:00
qcom,glymur-dispcc.yaml dt-bindings: clock: qcom,glymur-dispcc: De-acronymize SoC name 2026-02-23 10:27:49 -06:00
qcom,glymur-evacc.yaml dt-bindings: clock: qcom: Add EVA clock and reset controller for Glymur SoC 2026-07-06 21:57:13 -05:00
qcom,glymur-gcc.yaml dt-bindings: clock: qcom: glymur-gcc: Add missing CX power domain 2026-07-15 22:16:25 -05:00
qcom,glymur-tcsr.yaml dt-bindings: clock: qcom,glymur-tcsr: Add mahua support 2026-07-23 14:13:51 -05:00
qcom,gpucc-sdm660.yaml dt-bindings: clock: qcom,gpucc-sdm660: reference qcom,gcc.yaml 2024-06-12 23:03:13 -05:00
qcom,gpucc.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,hawi-gcc.yaml dt-bindings: clock: qcom: Add Maili global clock controller 2026-07-30 16:46:16 -05:00
qcom,hfpll.yaml dt-bindings: clock: qcom,hfpll: Convert to YAML 2024-04-23 14:14:46 -05:00
qcom,ipq5018-gcc.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,ipq5210-gcc.yaml dt-bindings: clock: add Qualcomm IPQ5210 GCC 2026-03-18 20:52:54 -05:00
qcom,ipq5332-gcc.yaml dt-bindings: clock: Add Qualcomm IPQ5424 GCC binding 2024-11-05 16:32:44 -08:00
qcom,ipq5424-apss-clk.yaml dt-bindings: clock: ipq5424-apss-clk: Add ipq5424 apss clock controller 2025-08-11 10:05:20 -05:00
qcom,ipq9574-cmn-pll.yaml This is all clk driver updates. Mostly new SoC support for 2026-06-25 12:48:57 -07:00
qcom,ipq9574-gcc.yaml Devicetree updates for v7.3: 2026-08-19 10:32:34 -07:00
qcom,ipq9574-nsscc.yaml dt-bindings: clock: Replace bouncing emails 2026-07-11 10:24:07 -05:00
qcom,ipq9650-gcc.yaml dt-bindings: clock: add Qualcomm IPQ9650 GCC 2026-05-11 18:13:21 -05:00
qcom,kaanapali-gxclkctl.yaml dt-bindings: clock: qcom,kaanapali-gxclkctl: Correctly use additionalProperties 2026-05-12 14:58:27 -05:00
qcom,kpss-acc-v1.yaml dt-bindings: Fix typos 2023-08-18 11:32:25 -05:00
qcom,kpss-gcc.yaml dt-bindings: arm: msm: Rework kpss-gcc driver Documentation to yaml 2023-03-15 16:40:49 -07:00
qcom,krait-cc.yaml dt-bindings: clock: Convert qcom,krait-cc to DT schema 2025-07-24 12:30:13 -07:00
qcom,lcc.yaml dt-bindings: clock: qcom,lcc.yaml: describe clocks for lcc,qcom-mdm9615 2023-07-31 14:23:19 -07:00
qcom,milos-camcc.yaml dt-bindings: clock: qcom,milos-camcc: Document interconnect path 2026-06-06 19:51:15 -05:00
qcom,milos-dispcc.yaml dt-bindings: clock: qcom: document the Milos Display Clock Controller 2025-07-16 23:17:05 -05:00
qcom,milos-gcc.yaml dt-bindings: clock: qcom: Add missing power-domains property 2026-03-30 08:27:32 -05:00
qcom,milos-gxclkctl.yaml dt-bindings: clock: qcom: document the Milos GX clock controller 2026-04-27 14:31:34 -05:00
qcom,milos-videocc.yaml dt-bindings: clock: qcom: document the Milos Video Clock Controller 2025-07-16 23:17:05 -05:00
qcom,mmcc.yaml dt-bindings: clock: qcom,mmcc: Reference qcom,gcc.yaml 2025-07-19 22:42:28 -05:00
qcom,msm8996-apcc.yaml dt-bindings: clock: qcom,msm8996-apcc: add sys_apcs_aux clock 2023-01-18 21:06:51 -06:00
qcom,msm8996-cbf.yaml dt-bindings: clock: qcom,msm8996-cbf: Add compatible for MSM8996 Pro 2023-07-31 14:29:05 -07:00
qcom,msm8998-gpucc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,nord-gcc.yaml dt-bindings: clock: qcom: Add Nord Global Clock Controller 2026-04-08 20:57:01 -05:00
qcom,nord-negcc.yaml dt-bindings: clock: qcom: Add Nord Global Clock Controller 2026-04-08 20:57:01 -05:00
qcom,nord-nwgcc.yaml dt-bindings: clock: qcom: Add Nord Global Clock Controller 2026-04-08 20:57:01 -05:00
qcom,q6sstopcc.yaml dt-bindings: clock: qcom: Fix @codeaurora email in Q6SSTOP 2024-02-02 17:15:13 -06:00
qcom,qca8k-nsscc.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,qcm2290-dispcc.yaml dt-bindings: clock: qcom: Add Qualcomm Shikra Display clock controller 2026-07-30 22:36:21 -05:00
qcom,qcm2290-gpucc.yaml Mostly the usual clk driver updates and new SoC additions plus non-critical 2026-08-26 11:14:30 -07:00
qcom,qcs404-turingcc.yaml dt-bindings: clock: qcom,qcs404-turingcc: convert to dtschema 2024-08-15 14:14:54 -05:00
qcom,qcs615-dispcc.yaml dt-bindings: clock: Add Qualcomm QCS615 Display clock controller 2025-07-16 23:12:06 -05:00
qcom,qcs615-gcc.yaml dt-bindings: clock: qcom: Add QCS615 GCC clocks 2024-12-01 22:04:24 -06:00
qcom,qcs615-gpucc.yaml dt-bindings: clock: Add Qualcomm QCS615 Graphics clock controller 2025-07-16 23:12:06 -05:00
qcom,qcs615-videocc.yaml dt-bindings: clock: Add Qualcomm QCS615 Video clock controller 2025-07-16 23:12:06 -05:00
qcom,qcs8300-gcc.yaml dt-bindings: clock: qcom: Add GCC clocks for QCS8300 2024-11-05 16:58:19 -08:00
qcom,qdu1000-ecpricc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,qdu1000-gcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,rpmcc.yaml Devicetree updates for v7.3: 2026-08-19 10:32:34 -07:00
qcom,rpmhcc.yaml dt-bindings: clock: qcom-rpmhcc: Add RPMH clock controller for Maili 2026-07-30 16:46:15 -05:00
qcom,sa8775p-camcc.yaml dt-bindings: clock: qcom,sm8450-camcc: Move sc8280xp camcc to sa8775p camcc 2025-06-10 12:59:19 -05:00
qcom,sa8775p-dispcc.yaml dt-bindings: clock: qcom: Add SA8775P display clock controllers 2024-10-22 17:23:55 -05:00
qcom,sa8775p-gcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sa8775p-videocc.yaml dt-bindings: clock: qcom: Add QCS8300 video clock controller 2025-02-14 11:32:25 -06:00
qcom,sar2130p-gcc.yaml dt-bindings: clock: qcom: document SAR2130P Global Clock Controller 2024-11-05 16:19:40 -08:00
qcom,sc7180-camcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sc7180-dispcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sc7180-lpasscorecc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sc7280-camcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sc7280-dispcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sc7280-lpasscc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sc7280-lpasscorecc.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,sc8180x-camcc.yaml dt-bindings: clock: Add Qualcomm SC8180X Camera clock controller 2025-06-10 22:14:31 -05:00
qcom,sc8280xp-lpasscc.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,sdm845-camcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sdm845-dispcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sdm845-lpasscc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sdx75-gcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,shikra-audiocorecc.yaml dt-bindings: clock: qcom: Add Qualcomm Shikra AudioCoreCC and AudioCoreCSR 2026-07-30 22:33:39 -05:00
qcom,shikra-gcc.yaml dt-bindings: clock: qcom: Add Qualcomm Shikra SoC Global Clock Controller 2026-07-07 22:01:23 -05:00
qcom,sm4450-camcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm4450-dispcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm4450-gcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm6115-dispcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm6115-gpucc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm6115-lpasscc.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,sm6125-gpucc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm6350-camcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm6375-dispcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm6375-gcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm6375-gpucc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm7150-camcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm7150-dispcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm7150-gcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm7150-videocc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm8150-camcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm8350-videocc.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,sm8450-camcc.yaml dt-bindings: clock: qcom,sm8450-camcc: Require required-opps on SM8750 2026-07-11 12:53:51 -05:00
qcom,sm8450-dispcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm8450-gpucc.yaml dt-bindings: clock: qcom: Document Nord GPU clock controllers 2026-07-30 22:32:18 -05:00
qcom,sm8450-videocc.yaml dt-bindings: clock: qcom: Add Qualcomm Maili video clock controller 2026-07-30 22:36:33 -05:00
qcom,sm8550-dispcc.yaml dt-bindings: clock: qcom: Document Nord display clock controller 2026-07-30 22:31:30 -05:00
qcom,sm8550-gcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm8550-tcsr.yaml dt-bindings: clock: qcom: Add Maili TCSR clock controller 2026-07-30 16:46:16 -05:00
qcom,sm8650-gcc.yaml dt-bindings: clock: qcom: Remove double colon from description 2025-07-24 12:24:08 -07:00
qcom,sm8750-gcc.yaml dt-bindings: clock: qcom: Add Kaanapali Global clock controller 2025-11-03 19:10:42 -06:00
qcom,spmi-clkdiv.yaml dt-bindings: clock: qcom,spmi-clkdiv: convert to DT schema 2023-01-10 22:41:37 -06:00
qcom,videocc.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
qcom,x1e80100-camcc.yaml dt-bindings: clock: qcom: Add Glymur camera clock controller 2026-07-11 10:19:09 -05:00
qcom,x1e80100-gcc.yaml dt-bindings: clock: qcom,x1e80100-gcc: Add missing UFS mux clocks 2026-01-03 08:39:35 -06:00
raspberrypi,rp1-clocks.yaml dt-bindings: clock: Add RaspberryPi RP1 clock bindings 2025-06-09 10:10:30 -07:00
renesas,5p35023.yaml dt-bindings: clock: versaclock3: Document 5L35023 Versa3 clock generator 2024-12-10 14:49:27 -08:00
renesas,9series.yaml dt-bindings: clk: rs9: Fix DIF pattern match 2026-02-02 16:36:14 -08:00
renesas,cpg-clocks.yaml dt-bindings: clock: renesas,cpg-clocks: Document ZT/ZTR trace clock on R-Mobile APE6 2026-05-15 11:26:26 +02:00
renesas,cpg-div6-clock.yaml dt-bindings: clock: renesas: div6: Use ZT/ZTR trace clock in R-Mobile APE6 example 2026-06-24 08:09:43 -05:00
renesas,cpg-mssr.yaml dt-bindings: Remove extra blank lines 2025-11-17 11:24:50 -06:00
renesas,cpg-mstp-clocks.yaml
renesas,emev2-smu.yaml
renesas,r8a78000-cpg.yaml dt-bindings: clock: Document Renesas R-Car X5H Clock Pulse Generator 2026-08-05 17:29:22 +02:00
renesas,r9a06g032-sysctrl.yaml dt-bindings: clock: drop unneeded quotes and use absolute /schemas path 2023-06-15 10:35:33 -07:00
renesas,r9a08g045-vbattb.yaml dt-bindings: clock: renesas,r9a08g045-vbattb: Document VBATTB 2024-11-03 11:43:21 +01:00
renesas,rcar-usb2-clock-sel.yaml dt-bindings: fix typos and brackets 2026-08-07 09:38:47 -05:00
renesas,rzg2l-cpg.yaml dt-bindings: clock: renesas,rzg2l-cpg: Document RZ/G3L SoC 2026-03-26 19:44:48 +01:00
renesas,rzv2h-cpg.yaml dt-bindings: clock: renesas: Add audio clock inputs for RZ/V2H family 2026-06-30 11:52:09 +02:00
renesas,versaclock7.yaml dt-bindings: clock: renesas,versaclock7: Update maintainer 2026-06-30 12:01:03 +02:00
riscv,rpmi-clock.yaml dt-bindings: clock: Add RPMI clock service controller bindings 2025-09-25 13:16:42 -06:00
riscv,rpmi-mpxy-clock.yaml dt-bindings: clock: Add RPMI clock service message proxy bindings 2025-09-25 13:16:13 -06:00
rockchip,px30-cru.yaml dt-bindings: clock: rockchip: change SPDX-License-Identifier 2022-09-23 20:48:01 +02:00
rockchip,rk3036-cru.yaml dt-bindings: clock: rockchip: change SPDX-License-Identifier 2022-09-23 20:48:01 +02:00
rockchip,rk3128-cru.yaml dt-bindings: clock: convert rockchip,rk3128-cru.txt to YAML 2022-09-23 12:28:49 +02:00
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: rockchip: change SPDX-License-Identifier 2022-09-23 20:48:01 +02:00
rockchip,rk3288-cru.yaml dt-bindings: clock: rockchip: change SPDX-License-Identifier 2022-09-23 20:48:01 +02:00
rockchip,rk3308-cru.yaml dt-bindings: clock: rockchip: change SPDX-License-Identifier 2022-09-23 20:48:01 +02:00
rockchip,rk3328-cru.yaml dt-bindings: clock: convert rockchip,rk3328-cru.txt to YAML 2024-10-08 21:11:29 +02:00
rockchip,rk3368-cru.yaml dt-bindings: clock: rockchip: change SPDX-License-Identifier 2022-09-23 20:48:01 +02:00
rockchip,rk3399-cru.yaml dt-bindings: clock: rockchip: change SPDX-License-Identifier 2022-09-23 20:48:01 +02:00
rockchip,rk3506-cru.yaml dt-bindings: clock: rockchip: Add RK3506 clock and reset unit 2025-11-23 22:56:49 +01:00
rockchip,rk3528-cru.yaml dt-bindings: clock: Document clock and reset unit of RK3528 2025-02-26 18:04:00 +01:00
rockchip,rk3562-cru.yaml dt-bindings: clock: Add RK3562 cru 2025-02-28 22:48:24 +01:00
rockchip,rk3568-cru.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
rockchip,rk3576-cru.yaml dt-bindings: clock, reset: Add support for rk3576 2024-08-29 10:28:16 +02:00
rockchip,rk3588-cru.yaml dt-bindings: clock: rockchip,rk3588-cru: drop unneeded assigned-clocks 2024-08-29 10:14:39 +02:00
rockchip,rv1106-cru.yaml dt-bindings: clock: rockchip: Add RV1106 CRU support 2026-08-05 22:45:11 +02:00
rockchip,rv1108-cru.yaml dt-bindings: clock: rockchip: change SPDX-License-Identifier 2022-09-23 20:48:01 +02:00
rockchip,rv1126-cru.yaml dt-bindings: clock: rockchip: Document RV1126 CRU 2022-09-17 16:29:17 +02:00
rockchip,rv1126b-cru.yaml dt-bindings: clock: rockchip: Add RV1103B CRU support 2026-03-02 12:51:26 +01: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: clock: samsung,exynos: add Exynos4212 clock compatible 2023-05-09 19:48:19 +02:00
samsung,exynos-ext-clock.yaml dt-bindings: update Krzysztof Kozlowski's email 2022-04-04 15:43:20 +02:00
samsung,exynos7-clock.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
samsung,exynos850-clock.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
samsung,exynos990-clock.yaml dt-bindings: clock: exynos990: Add PERIC0 and PERIC1 clock units 2025-09-07 11:10:55 +02:00
samsung,exynos2200-cmu.yaml dt-bindings: clock: add Exynos2200 SoC 2025-03-01 15:03:13 +01: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: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
samsung,exynos5410-clock.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
samsung,exynos5433-clock.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
samsung,exynos7870-cmu.yaml dt-bindings: clock: add clock definitions and documentation for exynos7870 CMU 2025-03-01 15:07:19 +01:00
samsung,exynos7885-clock.yaml dt-bindings: clock: Add bindings for Exynos7885 CMU_FSYS 2022-06-20 13:57:03 +02:00
samsung,exynos8895-clock.yaml dt-bindings: clock: samsung: Add Exynos8895 SoC 2024-10-26 13:58:33 +02:00
samsung,exynosautov9-clock.yaml Devicetree updates for v7.3: 2026-08-19 10:32:34 -07:00
samsung,exynosautov920-clock.yaml dt-bindings: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
samsung,s2mps11.yaml dt-bindings: clock: samsung,s2mps11: add s2mpg10 2025-09-21 10:43:16 -07:00
samsung,s3c6400-clock.yaml dt-bindings: clock: samsung,s3c6400-clock: convert to DT Schema 2024-03-26 10:04:24 +01: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: clock: Drop incorrect usage of double '::' 2026-06-30 08:14:01 -05:00
silabs,si544.yaml dt-bindings: clock: si544: add si549 compatible 2026-07-28 11:25:28 -04:00
silabs,si570.yaml dt-bindings: clock: Convert silabs,si570 to DT schema 2025-08-13 11:02:06 -07:00
silabs,si5341.yaml dt-bindings: clock: silabs,si5341: Add missing properties 2025-09-16 17:47:12 -07:00
silabs,si5351.yaml dt-bindings: clock: si5351: add PLL reset mode property 2023-12-17 22:31:36 -08:00
skyworks,si521xx.yaml dt-bindings: clk: si521xx: Add Skyworks Si521xx I2C PCIe clock generators 2023-03-27 10:44:29 -07:00
snps,hsdk-pll-clock.txt
snps,pll-clock.txt
socionext,uniphier-clock.yaml dt-bindings: clock: Fix node descriptions in uniphier-clock example 2022-12-26 16:09:28 -06:00
sophgo,cv1800-clk.yaml dt-bindings: clock: sophgo: Use precise compatible for CV1800 series SoC 2025-05-07 07:42:35 +08:00
sophgo,sg2042-clkgen.yaml dt-bindings: clock: sophgo: add clkgen for SG2042 2024-06-14 14:49:40 +08:00
sophgo,sg2042-pll.yaml dt-bindings: clock: sophgo: add pll clocks for SG2042 2024-06-14 14:49:40 +08:00
sophgo,sg2042-rpgate.yaml dt-bindings: clock: sophgo: add RP gate clocks for SG2042 2024-06-14 14:49:40 +08:00
sophgo,sg2044-clk.yaml dt-bindings: clock: sophgo: add clock controller for SG2044 2025-05-07 07:44:30 +08:00
spacemit,k1-pll.yaml dt-bindings: soc: spacemit: k3: add clock support 2026-01-09 10:27:10 +08:00
sprd,sc9860-clk.yaml dt-bindings: clock: sprd,sc9860-clk: Allow "reg" for gate clocks 2025-12-16 07:59:30 -06:00
sprd,sc9863a-clk.yaml dt-bindings: Fix typos 2023-08-18 11:32:25 -05:00
sprd,ums512-clk.yaml dt-bindings: clock: Drop unneeded quotes 2023-03-31 10:00:53 -05:00
st,nomadik.txt
st,stm32-rcc.yaml dt-bindings: clock: st,stm32-rcc: support spread spectrum clocking 2025-01-15 15:17:05 -08:00
st,stm32mp1-rcc.yaml dt-bindings: clock: st,stm32mp1-rcc: complete the reference path 2025-01-06 15:48:05 -08:00
st,stm32mp21-rcc.yaml dt-bindings: clock: Correct white-space style 2026-08-17 09:28:10 -07:00
st,stm32mp25-rcc.yaml dt-bindings: clock: Correct white-space style 2026-08-17 09:28:10 -07: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
starfive,jh7110-aoncrg.yaml dt-bindings: clock: Add StarFive JH7110 always-on clock and reset generator 2023-04-05 15:43:24 +01:00
starfive,jh7110-ispcrg.yaml dt-bindings: clock: Add StarFive JH7110 Image-Signal-Process clock and reset generator 2023-07-19 18:08:00 +01:00
starfive,jh7110-pll.yaml dt-bindings: clock: Add StarFive JH7110 PLL clock generator 2023-07-19 18:07:48 +01:00
starfive,jh7110-stgcrg.yaml dt-bindings: clock: Add StarFive JH7110 System-Top-Group clock and reset generator 2023-07-19 18:08:00 +01:00
starfive,jh7110-syscrg.yaml dt-bindings: clock: jh7110-syscrg: Add PLL clock inputs 2023-07-19 18:08:00 +01:00
starfive,jh7110-voutcrg.yaml dt-bindings: clock: Add StarFive JH7110 Video-Output clock and reset generator 2023-07-19 18:08:00 +01:00
stericsson,u8500-clks.yaml dt-bindings: Updates Linus Walleij's mail address 2025-12-16 10:17:59 -06:00
sunplus,sp7021-clkc.yaml dt-bindings: clock: Add bindings for SP7021 clock driver 2022-07-08 14:23:39 +02:00
tenstorrent,atlantis-prcm-rcpu.yaml dt-bindings: clk: tenstorrent: Add tenstorrent,atlantis-prcm-rcpu 2026-03-09 20:10:26 -07:00
tesla,fsd-clock.yaml dt-bindings: clock: tesla,fsd: Fix spelling mistake 2024-01-23 13:46:11 +01:00
thead,th1520-clk-ap.yaml dt-bindings: clock: thead: Add TH1520 VO clock controller 2025-05-07 10:08:10 -07:00
ti,am62-audio-refclk.yaml dt-bindings: clock: Add binding documentation for TI Audio REFCLK 2023-06-16 12:15:31 -07:00
ti,am654-ehrpwm-tbclk.yaml dt-bindings: clock: ehrpwm: Remove unneeded syscon compatible 2023-06-16 11:57:53 -07:00
ti,cdce706.txt
ti,cdce925.yaml dt-bindings: use capital "OR" for multiple licenses in SPDX 2023-08-23 15:00:31 -05:00
ti,clkctrl.yaml dt-bindings: clock: ti: Convert ti-clkctrl.txt to json-schema 2025-03-13 13:16:31 -07:00
ti,keystone,psc-clock.yaml dt-bindings: clock: ti,keystone-gate: Convert to DT schema 2026-08-17 09:28:15 -07:00
ti,lmk04832.yaml dt-bindings: Fix SPI and I2C bus node names in examples 2023-03-08 09:04:53 -06:00
ti,sci-clk.yaml dt-bindings: ti: fix TISCI protocol URL link 2024-06-27 17:44:48 -05:00
toshiba,tmpv770x-pipllct.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
toshiba,tmpv770x-pismu.yaml dt-bindings: Remove 'Device Tree Bindings' from end of title: 2022-08-25 14:06:57 -05:00
ultrarisc,dp1000-clk.yaml dt-bindings: clock: ultrarisc: Add DP1000 Clock Controller 2026-07-28 11:25:29 -04:00
vt8500.txt
xlnx,clocking-wizard.yaml dt-bindings: clock: Correct white-space style 2026-08-17 09:28:10 -07:00
xlnx,vcu.yaml dt-bindings: clock: xilinx: Add reset GPIO for VCU 2025-01-07 11:48:23 -08:00
xlnx,versal-clk.yaml dt-bindings: clock: versal-clk: Fix Versal NET clock validation 2026-07-21 09:53:48 +02:00
xlnx,zynqmp-clk.yaml dt-bindings: clock: Move xlnx,zynqmp-clk to its own schema 2026-07-21 09:53:48 +02:00
zynq-7000.txt