1# Copyright (c) 2023 TOKITA Hiroshi
2# SPDX-License-Identifier: Apache-2.0
3
4description: |
5  The representation of Raspberry Pi Pico's PLL.
6
7compatible: "raspberrypi,pico-pll"
8
9include: [base.yaml, fixed-factor-clock.yaml]
10
11properties:
12  fb-div:
13    type: int
14    required: true
15    description: |
16      The feedback divider value.
17      The valid range is 16 to 320.
18
19  post-div1:
20    type: int
21    required: true
22    description: |
23      The post clock divider.
24      The valid range is 1 to 49.
25
26  post-div2:
27    type: int
28    required: true
29    description: |
30      The post clock divider.
31      The valid range is 1 to 49.
32