# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/clock/qcom,shikra-audiocorecc.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Audio Core Clock Controller for Qualcomm Shikra SoC maintainers: - Imran Shaik description: | Audio core clock control module provides the clocks on Qualcomm Shikra SoC platform. See also: - include/dt-bindings/clock/qcom,shikra-audiocorecc.h properties: compatible: const: qcom,shikra-audiocorecc clocks: items: - description: Board XO source - description: Board sleep clock - description: Audio ref clock source reg: maxItems: 1 '#clock-cells': const: 1 required: - compatible - reg - clocks - '#clock-cells' additionalProperties: false examples: - | #include #include clock-controller@a0a0000 { compatible = "qcom,shikra-audiocorecc"; reg = <0x0a0a0000 0x10000>; clocks = <&rpmcc RPM_SMD_XO_CLK_SRC>, <&sleep_clk>, <&aud_ref_clk_src>; #clock-cells = <1>; }; ...