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

Configure Feed

Select the types of activity you want to include in your feed.

at v5.6 63 lines 1.2 kB view raw
1# SPDX-License-Identifier: GPL-2.0-only 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/clock/qcom,sc7180-videocc.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Qualcomm Video Clock & Reset Controller Binding for SC7180 8 9maintainers: 10 - Taniya Das <tdas@codeaurora.org> 11 12description: | 13 Qualcomm video clock control module which supports the clocks, resets and 14 power domains on SC7180. 15 16 See also dt-bindings/clock/qcom,videocc-sc7180.h. 17 18properties: 19 compatible: 20 const: qcom,sc7180-videocc 21 22 clocks: 23 items: 24 - description: Board XO source 25 26 clock-names: 27 items: 28 - const: bi_tcxo 29 30 '#clock-cells': 31 const: 1 32 33 '#reset-cells': 34 const: 1 35 36 '#power-domain-cells': 37 const: 1 38 39 reg: 40 maxItems: 1 41 42required: 43 - compatible 44 - reg 45 - clocks 46 - clock-names 47 - '#clock-cells' 48 - '#reset-cells' 49 - '#power-domain-cells' 50 51examples: 52 - | 53 #include <dt-bindings/clock/qcom,rpmh.h> 54 clock-controller@ab00000 { 55 compatible = "qcom,sc7180-videocc"; 56 reg = <0 0x0ab00000 0 0x10000>; 57 clocks = <&rpmhcc RPMH_CXO_CLK>; 58 clock-names = "bi_tcxo"; 59 #clock-cells = <1>; 60 #reset-cells = <1>; 61 #power-domain-cells = <1>; 62 }; 63...