Based on kernel version 6.13
. Page generated on 2025-01-21 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/sound/rockchip,rk3036-codec.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Rockchip RK3036 internal codec maintainers: - Heiko Stuebner <heiko@sntech.de> allOf: - $ref: dai-common.yaml# properties: compatible: const: rockchip,rk3036-codec reg: maxItems: 1 clocks: items: - description: clock for audio codec clock-names: items: - const: acodec_pclk rockchip,grf: $ref: /schemas/types.yaml#/definitions/phandle description: The phandle of the syscon node for the GRF register. "#sound-dai-cells": const: 0 required: - compatible - reg - clocks - clock-names - rockchip,grf - "#sound-dai-cells" unevaluatedProperties: false examples: - | #include <dt-bindings/clock/rk3036-cru.h> acodec: audio-codec@20030000 { compatible = "rockchip,rk3036-codec"; reg = <0x20030000 0x4000>; rockchip,grf = <&grf>; clock-names = "acodec_pclk"; clocks = <&cru ACLK_VCODEC>; #sound-dai-cells = <0>; }; |