Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: clock: Add binding documentation for TI Audio REFCLK

Add DT bindings for TI's audio reference clocks (REFCLK) present on AM62
SoC.

Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Jai Luthra <j-luthra@ti.com>
Link: https://lore.kernel.org/r/20230515-refclk-v3-1-37c0b550f406@ti.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by

Jai Luthra and committed by
Stephen Boyd
daecb57c 06b84c59

+43
+43
Documentation/devicetree/bindings/clock/ti,am62-audio-refclk.yaml
··· 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,am62-audio-refclk.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: TI Audio Reference Clock 8 + 9 + maintainers: 10 + - Jai Luthra <j-luthra@ti.com> 11 + 12 + properties: 13 + compatible: 14 + items: 15 + - const: ti,am62-audio-refclk 16 + 17 + reg: 18 + maxItems: 1 19 + 20 + "#clock-cells": 21 + const: 0 22 + 23 + clocks: 24 + maxItems: 1 25 + 26 + required: 27 + - compatible 28 + - reg 29 + - "#clock-cells" 30 + - clocks 31 + 32 + additionalProperties: false 33 + 34 + examples: 35 + - | 36 + audio_refclk0: clock@82e0 { 37 + compatible = "ti,am62-audio-refclk"; 38 + reg = <0x82e0 0x4>; 39 + clocks = <&k3_clks 157 0>; 40 + assigned-clocks = <&k3_clks 157 0>; 41 + assigned-clock-parents = <&k3_clks 157 8>; 42 + #clock-cells = <0>; 43 + };