1*7d0873ebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*7d0873ebSEmmanuel Vadot%YAML 1.2 3*7d0873ebSEmmanuel Vadot--- 4*7d0873ebSEmmanuel Vadot$id: http://devicetree.org/schemas/clock/nxp,imx95-blk-ctl.yaml# 5*7d0873ebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*7d0873ebSEmmanuel Vadot 7*7d0873ebSEmmanuel Vadottitle: NXP i.MX95 Block Control 8*7d0873ebSEmmanuel Vadot 9*7d0873ebSEmmanuel Vadotmaintainers: 10*7d0873ebSEmmanuel Vadot - Peng Fan <peng.fan@nxp.com> 11*7d0873ebSEmmanuel Vadot 12*7d0873ebSEmmanuel Vadotproperties: 13*7d0873ebSEmmanuel Vadot compatible: 14*7d0873ebSEmmanuel Vadot items: 15*7d0873ebSEmmanuel Vadot - enum: 16*7d0873ebSEmmanuel Vadot - nxp,imx95-lvds-csr 17*7d0873ebSEmmanuel Vadot - nxp,imx95-display-csr 18*7d0873ebSEmmanuel Vadot - nxp,imx95-camera-csr 19*7d0873ebSEmmanuel Vadot - nxp,imx95-vpu-csr 20*7d0873ebSEmmanuel Vadot - const: syscon 21*7d0873ebSEmmanuel Vadot 22*7d0873ebSEmmanuel Vadot reg: 23*7d0873ebSEmmanuel Vadot maxItems: 1 24*7d0873ebSEmmanuel Vadot 25*7d0873ebSEmmanuel Vadot power-domains: 26*7d0873ebSEmmanuel Vadot maxItems: 1 27*7d0873ebSEmmanuel Vadot 28*7d0873ebSEmmanuel Vadot clocks: 29*7d0873ebSEmmanuel Vadot maxItems: 1 30*7d0873ebSEmmanuel Vadot 31*7d0873ebSEmmanuel Vadot '#clock-cells': 32*7d0873ebSEmmanuel Vadot const: 1 33*7d0873ebSEmmanuel Vadot description: 34*7d0873ebSEmmanuel Vadot The clock consumer should specify the desired clock by having the clock 35*7d0873ebSEmmanuel Vadot ID in its "clocks" phandle cell. See 36*7d0873ebSEmmanuel Vadot include/dt-bindings/clock/nxp,imx95-clock.h 37*7d0873ebSEmmanuel Vadot 38*7d0873ebSEmmanuel Vadotrequired: 39*7d0873ebSEmmanuel Vadot - compatible 40*7d0873ebSEmmanuel Vadot - reg 41*7d0873ebSEmmanuel Vadot - '#clock-cells' 42*7d0873ebSEmmanuel Vadot - power-domains 43*7d0873ebSEmmanuel Vadot - clocks 44*7d0873ebSEmmanuel Vadot 45*7d0873ebSEmmanuel VadotadditionalProperties: false 46*7d0873ebSEmmanuel Vadot 47*7d0873ebSEmmanuel Vadotexamples: 48*7d0873ebSEmmanuel Vadot - | 49*7d0873ebSEmmanuel Vadot syscon@4c410000 { 50*7d0873ebSEmmanuel Vadot compatible = "nxp,imx95-vpu-csr", "syscon"; 51*7d0873ebSEmmanuel Vadot reg = <0x4c410000 0x10000>; 52*7d0873ebSEmmanuel Vadot #clock-cells = <1>; 53*7d0873ebSEmmanuel Vadot clocks = <&scmi_clk 114>; 54*7d0873ebSEmmanuel Vadot power-domains = <&scmi_devpd 21>; 55*7d0873ebSEmmanuel Vadot }; 56*7d0873ebSEmmanuel Vadot... 57