60 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/skyworks,si521xx.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Skyworks Si521xx I2C PCIe clock generators8 9description: |10 The Skyworks Si521xx are I2C PCIe clock generators providing11 from 4 to 9 output clocks.12 13maintainers:14 - Marek Vasut <marex@denx.de>15 16properties:17 compatible:18 enum:19 - skyworks,si5214420 - skyworks,si5214621 - skyworks,si5214722 23 reg:24 const: 0x6b25 26 '#clock-cells':27 const: 128 29 clocks:30 items:31 - description: XTal input clock32 33 skyworks,out-amplitude-microvolt:34 enum: [ 300000, 400000, 500000, 600000, 700000, 800000, 900000, 1000000 ]35 description: Output clock signal amplitude36 37required:38 - compatible39 - reg40 - clocks41 - '#clock-cells'42 43additionalProperties: false44 45examples:46 - |47 i2c {48 #address-cells = <1>;49 #size-cells = <0>;50 51 clock-generator@6b {52 compatible = "skyworks,si52144";53 reg = <0x6b>;54 #clock-cells = <1>;55 clocks = <&ref25m>;56 };57 };58 59...60