54 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/clock/fixed-clock.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Simple fixed-rate clock sources8 9maintainers:10 - Michael Turquette <mturquette@baylibre.com>11 - Stephen Boyd <sboyd@kernel.org>12 13properties:14 $nodename:15 anyOf:16 - description:17 Preferred name is 'clock-<freq>' with <freq> being the output18 frequency as defined in the 'clock-frequency' property.19 pattern: "^clock-([0-9]+|[a-z0-9-]+)$"20 - description: Any name allowed21 deprecated: true22 23 compatible:24 const: fixed-clock25 26 "#clock-cells":27 const: 028 29 clock-frequency: true30 31 clock-accuracy:32 description: accuracy of clock in ppb (parts per billion).33 $ref: /schemas/types.yaml#/definitions/uint3234 35 clock-output-names:36 maxItems: 137 38required:39 - compatible40 - "#clock-cells"41 - clock-frequency42 43additionalProperties: false44 45examples:46 - |47 clock {48 compatible = "fixed-clock";49 #clock-cells = <0>;50 clock-frequency = <1000000000>;51 clock-accuracy = <100>;52 };53...54