1*b87111daSDongjiu Geng# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*b87111daSDongjiu Geng%YAML 1.2 3*b87111daSDongjiu Geng--- 4*b87111daSDongjiu Geng$id: http://devicetree.org/schemas/clock/hisilicon,hi3559av100-clock.yaml# 5*b87111daSDongjiu Geng$schema: http://devicetree.org/meta-schemas/core.yaml# 6*b87111daSDongjiu Geng 7*b87111daSDongjiu Gengtitle: Hisilicon SOC Clock for HI3559AV100 8*b87111daSDongjiu Geng 9*b87111daSDongjiu Gengmaintainers: 10*b87111daSDongjiu Geng - Dongjiu Geng <gengdongjiu@huawei.com> 11*b87111daSDongjiu Geng 12*b87111daSDongjiu Gengdescription: | 13*b87111daSDongjiu Geng Hisilicon SOC clock control module which supports the clocks, resets and 14*b87111daSDongjiu Geng power domains on HI3559AV100. 15*b87111daSDongjiu Geng 16*b87111daSDongjiu Geng See also: 17*b87111daSDongjiu Geng dt-bindings/clock/hi3559av100-clock.h 18*b87111daSDongjiu Geng 19*b87111daSDongjiu Gengproperties: 20*b87111daSDongjiu Geng compatible: 21*b87111daSDongjiu Geng enum: 22*b87111daSDongjiu Geng - hisilicon,hi3559av100-clock 23*b87111daSDongjiu Geng - hisilicon,hi3559av100-shub-clock 24*b87111daSDongjiu Geng 25*b87111daSDongjiu Geng reg: 26*b87111daSDongjiu Geng minItems: 1 27*b87111daSDongjiu Geng maxItems: 2 28*b87111daSDongjiu Geng 29*b87111daSDongjiu Geng '#clock-cells': 30*b87111daSDongjiu Geng const: 1 31*b87111daSDongjiu Geng 32*b87111daSDongjiu Geng '#reset-cells': 33*b87111daSDongjiu Geng const: 2 34*b87111daSDongjiu Geng description: | 35*b87111daSDongjiu Geng First cell is reset request register offset. 36*b87111daSDongjiu Geng Second cell is bit offset in reset request register. 37*b87111daSDongjiu Geng 38*b87111daSDongjiu Gengrequired: 39*b87111daSDongjiu Geng - compatible 40*b87111daSDongjiu Geng - reg 41*b87111daSDongjiu Geng - '#clock-cells' 42*b87111daSDongjiu Geng - '#reset-cells' 43*b87111daSDongjiu Geng 44*b87111daSDongjiu GengadditionalProperties: false 45*b87111daSDongjiu Geng 46*b87111daSDongjiu Gengexamples: 47*b87111daSDongjiu Geng - | 48*b87111daSDongjiu Geng soc { 49*b87111daSDongjiu Geng #address-cells = <2>; 50*b87111daSDongjiu Geng #size-cells = <2>; 51*b87111daSDongjiu Geng 52*b87111daSDongjiu Geng clock-controller@12010000 { 53*b87111daSDongjiu Geng compatible = "hisilicon,hi3559av100-clock"; 54*b87111daSDongjiu Geng #clock-cells = <1>; 55*b87111daSDongjiu Geng #reset-cells = <2>; 56*b87111daSDongjiu Geng reg = <0x0 0x12010000 0x0 0x10000>; 57*b87111daSDongjiu Geng }; 58*b87111daSDongjiu Geng }; 59*b87111daSDongjiu Geng... 60