Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) |
| 2 | %YAML 1.2 |
| 3 | --- |
| 4 | $id: http://devicetree.org/schemas/clock/silabs,si5351.yaml# |
| 5 | $schema: http://devicetree.org/meta-schemas/core.yaml# |
| 6 | |
| 7 | title: Silicon Labs Si5351A/B/C programmable I2C clock generators |
| 8 | |
| 9 | description: | |
| 10 | The Silicon Labs Si5351A/B/C are programmable I2C clock generators with up to |
| 11 | 8 outputs. Si5351A also has a reduced pin-count package (10-MSOP) where only 3 |
| 12 | output clocks are accessible. The internal structure of the clock generators |
| 13 | can be found in [1]. |
| 14 | |
| 15 | [1] Si5351A/B/C Data Sheet |
| 16 | https://www.skyworksinc.com/-/media/Skyworks/SL/documents/public/data-sheets/Si5351-B.pdf |
| 17 | |
| 18 | maintainers: |
| 19 | - Alvin Šipraga <alsi@bang-olufsen.dk> |
| 20 | |
| 21 | properties: |
| 22 | compatible: |
| 23 | enum: |
| 24 | - silabs,si5351a # Si5351A, 20-QFN package |
| 25 | - silabs,si5351a-msop # Si5351A, 10-MSOP package |
| 26 | - silabs,si5351b # Si5351B, 20-QFN package |
| 27 | - silabs,si5351c # Si5351C, 20-QFN package |
| 28 | |
| 29 | reg: |
| 30 | enum: |
| 31 | - 0x60 |
| 32 | - 0x61 |
| 33 | |
| 34 | "#address-cells": |
| 35 | const: 1 |
| 36 | |
| 37 | "#size-cells": |
| 38 | const: 0 |
| 39 | |
| 40 | "#clock-cells": |
| 41 | const: 1 |
| 42 | |
| 43 | clocks: |
| 44 | minItems: 1 |
| 45 | maxItems: 2 |
| 46 | |
| 47 | clock-names: |
| 48 | minItems: 1 |
| 49 | items: |
| 50 | - const: xtal |
| 51 | - const: clkin |
| 52 | |
| 53 | silabs,pll-source: |
| 54 | $ref: /schemas/types.yaml#/definitions/uint32-matrix |
| 55 | description: | |
| 56 | A list of cell pairs containing a PLL index and its source. Allows to |
| 57 | overwrite clock source of the internal PLLs. |
| 58 | items: |
| 59 | items: |
| 60 | - description: PLL A (0) or PLL B (1) |
| 61 | enum: [ 0, 1 ] |
| 62 | - description: PLL source, XTAL (0) or CLKIN (1, Si5351C only). |
| 63 | enum: [ 0, 1 ] |
| 64 | |
| 65 | silabs,pll-reset-mode: |
| 66 | $ref: /schemas/types.yaml#/definitions/uint32-matrix |
| 67 | minItems: 1 |
| 68 | maxItems: 2 |
| 69 | description: A list of cell pairs containing a PLL index and its reset mode. |
| 70 | items: |
| 71 | items: |
| 72 | - description: PLL A (0) or PLL B (1) |
| 73 | enum: [ 0, 1 ] |
| 74 | - description: | |
| 75 | Reset mode for the PLL. Mode can be one of: |
| 76 | |
| 77 | 0 - reset whenever PLL rate is adjusted (default mode) |
| 78 | 1 - do not reset when PLL rate is adjusted |
| 79 | |
| 80 | In mode 1, the PLL is only reset if the silabs,pll-reset is |
| 81 | specified in one of the clock output child nodes that also sources |
| 82 | the PLL. This mode may be preferable if output clocks are expected |
| 83 | to be adjusted without glitches. |
| 84 | enum: [ 0, 1 ] |
| 85 | |
| 86 | patternProperties: |
| 87 | "^clkout@[0-7]$": |
| 88 | type: object |
| 89 | |
| 90 | additionalProperties: false |
| 91 | |
| 92 | properties: |
| 93 | reg: |
| 94 | description: Clock output number. |
| 95 | |
| 96 | clock-frequency: true |
| 97 | |
| 98 | silabs,clock-source: |
| 99 | $ref: /schemas/types.yaml#/definitions/uint32 |
| 100 | description: | |
| 101 | Source clock of the this output's divider stage. |
| 102 | |
| 103 | 0 - use multisynth N for this output, where N is the output number |
| 104 | 1 - use either multisynth 0 (if output number is 0-3) or multisynth 4 |
| 105 | (otherwise) for this output |
| 106 | 2 - use XTAL for this output |
| 107 | 3 - use CLKIN for this output (Si5351C only) |
| 108 | |
| 109 | silabs,drive-strength: |
| 110 | $ref: /schemas/types.yaml#/definitions/uint32 |
| 111 | enum: [ 2, 4, 6, 8 ] |
| 112 | description: Output drive strength in mA. |
| 113 | |
| 114 | silabs,multisynth-source: |
| 115 | $ref: /schemas/types.yaml#/definitions/uint32 |
| 116 | enum: [ 0, 1 ] |
| 117 | description: |
| 118 | Source PLL A (0) or B (1) for the corresponding multisynth divider. |
| 119 | |
| 120 | silabs,pll-master: |
| 121 | type: boolean |
| 122 | description: | |
| 123 | The frequency of the source PLL is allowed to be changed by the |
| 124 | multisynth when setting the rate of this clock output. |
| 125 | |
| 126 | silabs,pll-reset: |
| 127 | type: boolean |
| 128 | description: Reset the source PLL when enabling this clock output. |
| 129 | |
| 130 | silabs,disable-state: |
| 131 | $ref: /schemas/types.yaml#/definitions/uint32 |
| 132 | enum: [ 0, 1, 2, 3 ] |
| 133 | description: | |
| 134 | Clock output disable state. The state can be one of: |
| 135 | |
| 136 | 0 - clock output is driven LOW when disabled |
| 137 | 1 - clock output is driven HIGH when disabled |
| 138 | 2 - clock output is FLOATING (HIGH-Z) when disabled |
| 139 | 3 - clock output is never disabled |
| 140 | |
| 141 | allOf: |
| 142 | - if: |
| 143 | properties: |
| 144 | compatible: |
| 145 | contains: |
| 146 | const: silabs,si5351a-msop |
| 147 | then: |
| 148 | properties: |
| 149 | reg: |
| 150 | maximum: 2 |
| 151 | else: |
| 152 | properties: |
| 153 | reg: |
| 154 | maximum: 7 |
| 155 | |
| 156 | - if: |
| 157 | properties: |
| 158 | compatible: |
| 159 | contains: |
| 160 | const: silabs,si5351c |
| 161 | then: |
| 162 | properties: |
| 163 | silabs,clock-source: |
| 164 | enum: [ 0, 1, 2, 3 ] |
| 165 | else: |
| 166 | properties: |
| 167 | silabs,clock-source: |
| 168 | enum: [ 0, 1, 2 ] |
| 169 | |
| 170 | required: |
| 171 | - reg |
| 172 | |
| 173 | allOf: |
| 174 | - if: |
| 175 | properties: |
| 176 | compatible: |
| 177 | contains: |
| 178 | enum: |
| 179 | - silabs,si5351a |
| 180 | - silabs,si5351a-msop |
| 181 | - silabs,si5351b |
| 182 | then: |
| 183 | properties: |
| 184 | clocks: |
| 185 | maxItems: 1 |
| 186 | clock-names: |
| 187 | maxItems: 1 |
| 188 | |
| 189 | required: |
| 190 | - reg |
| 191 | - "#address-cells" |
| 192 | - "#size-cells" |
| 193 | - "#clock-cells" |
| 194 | - clocks |
| 195 | - clock-names |
| 196 | |
| 197 | unevaluatedProperties: false |
| 198 | |
| 199 | examples: |
| 200 | - | |
| 201 | i2c { |
| 202 | #address-cells = <1>; |
| 203 | #size-cells = <0>; |
| 204 | |
| 205 | clock-generator@60 { |
| 206 | compatible = "silabs,si5351a-msop"; |
| 207 | reg = <0x60>; |
| 208 | #address-cells = <1>; |
| 209 | #size-cells = <0>; |
| 210 | #clock-cells = <1>; |
| 211 | |
| 212 | /* Connect XTAL input to 25MHz reference */ |
| 213 | clocks = <&ref25>; |
| 214 | clock-names = "xtal"; |
| 215 | |
| 216 | /* Use XTAL input as source of PLL0 and PLL1 */ |
| 217 | silabs,pll-source = <0 0>, <1 0>; |
| 218 | |
| 219 | /* Don't reset PLL1 on rate adjustment */ |
| 220 | silabs,pll-reset-mode = <1 1>; |
| 221 | |
| 222 | /* |
| 223 | * Overwrite CLK0 configuration with: |
| 224 | * - 8 mA output drive strength |
| 225 | * - PLL0 as clock source of multisynth 0 |
| 226 | * - Multisynth 0 as clock source of output divider |
| 227 | * - Multisynth 0 can change PLL0 |
| 228 | * - Set initial clock frequency of 74.25MHz |
| 229 | */ |
| 230 | clkout@0 { |
| 231 | reg = <0>; |
| 232 | silabs,drive-strength = <8>; |
| 233 | silabs,multisynth-source = <0>; |
| 234 | silabs,clock-source = <0>; |
| 235 | silabs,pll-master; |
| 236 | clock-frequency = <74250000>; |
| 237 | }; |
| 238 | |
| 239 | /* |
| 240 | * Overwrite CLK1 configuration with: |
| 241 | * - 4 mA output drive strength |
| 242 | * - PLL1 as clock source of multisynth 1 |
| 243 | * - Multisynth 1 as clock source of output divider |
| 244 | * - Multisynth 1 can change PLL1 |
| 245 | * - Reset PLL1 when enabling this clock output |
| 246 | */ |
| 247 | clkout@1 { |
| 248 | reg = <1>; |
| 249 | silabs,drive-strength = <4>; |
| 250 | silabs,multisynth-source = <1>; |
| 251 | silabs,clock-source = <0>; |
| 252 | silabs,pll-master; |
| 253 | silabs,pll-reset; |
| 254 | }; |
| 255 | |
| 256 | /* |
| 257 | * Overwrite CLK2 configuration with: |
| 258 | * - XTAL as clock source of output divider |
| 259 | */ |
| 260 | clkout@2 { |
| 261 | reg = <2>; |
| 262 | silabs,clock-source = <2>; |
| 263 | }; |
| 264 | }; |
| 265 | }; |