brintos

brintos / linux-shallow public Read only

0
0
Text · 1.2 KiB · 4afdb1c Raw
64 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/clock/fixed-factor-clock.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Simple fixed factor 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          If the frequency is fixed, the preferred name is 'clock-<freq>' with18          <freq> being the output frequency.19        pattern: "^clock-([0-9]+|[0-9a-z-]+)$"20      - description: Any name allowed21        deprecated: true22 23  compatible:24    enum:25      - fixed-factor-clock26 27  "#clock-cells":28    const: 029 30  clocks:31    maxItems: 132 33  clock-div:34    description: Fixed divider35    $ref: /schemas/types.yaml#/definitions/uint3236    minimum: 137 38  clock-mult:39    description: Fixed multiplier40    $ref: /schemas/types.yaml#/definitions/uint3241 42  clock-output-names:43    maxItems: 144 45required:46  - compatible47  - clocks48  - "#clock-cells"49  - clock-div50  - clock-mult51 52additionalProperties: false53 54examples:55  - |56    clock {57      compatible = "fixed-factor-clock";58      clocks = <&parentclk>;59      #clock-cells = <0>;60      clock-div = <2>;61      clock-mult = <1>;62    };63...64