2019-05-28 20:52:33 +08:00
|
|
|
# Copyright (c) 2019 Derek Hageman <hageman@inthat.cloud>
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-11-19 15:39:11 +08:00
|
|
|
description: Generic fixed-rate clock provider
|
2019-05-28 20:52:33 +08:00
|
|
|
|
2019-08-20 02:32:25 +08:00
|
|
|
compatible: "fixed-clock"
|
|
|
|
|
2019-08-22 07:10:12 +08:00
|
|
|
include: clock-controller.yaml
|
2019-08-09 23:27:28 +08:00
|
|
|
|
2019-05-28 20:52:33 +08:00
|
|
|
properties:
|
|
|
|
label:
|
|
|
|
type: string
|
2019-08-28 06:22:01 +08:00
|
|
|
required: false
|
2019-05-28 20:52:33 +08:00
|
|
|
description: Human readable string describing the device (used by Zephyr for API name)
|
|
|
|
|
|
|
|
clock-frequency:
|
|
|
|
type: int
|
|
|
|
description: output clock frequency (Hz)
|
2019-08-28 06:22:01 +08:00
|
|
|
required: true
|
2019-05-28 20:52:33 +08:00
|
|
|
|
|
|
|
clocks:
|
|
|
|
type: array
|
2019-08-28 06:22:01 +08:00
|
|
|
required: false
|
2019-05-28 20:52:33 +08:00
|
|
|
description: input clock source
|
|
|
|
|
|
|
|
"#clock-cells":
|
2019-08-10 03:54:26 +08:00
|
|
|
const: 0
|