1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/clock/ti/ti,clockdomain.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Texas Instruments clockdomain 8 9maintainers: 10 - Tero Kristo <kristo@kernel.org> 11 12description: 13 This binding uses the common clock binding in consumer role. Every clock on TI 14 SoC belongs to one clockdomain, but software only needs this information for 15 specific clocks which require their parent clockdomain to be controlled when 16 the clock is enabled/disabled. This binding doesn't define a new clock binding 17 type, it is used to group existing clock nodes under hardware hierarchy. 18 19properties: 20 compatible: 21 const: ti,clockdomain 22 23 "#clock-cells": 24 const: 0 25 26 clocks: 27 minItems: 1 28 maxItems: 64 29 30 clock-output-names: 31 maxItems: 1 32 33required: 34 - compatible 35 - clocks 36 37additionalProperties: false 38 39examples: 40 - | 41 dss_clkdm { 42 compatible = "ti,clockdomain"; 43 clocks = <&dss1_alwon_fck_3430es2>, <&dss_ick_3430es2>; 44 }; 45