Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: clock: support i.MX93 ANATOP clock module

Support i.MX93 ANATOP module which contains PLL and OSC for Clock
Controller Module

Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/r/20231121063446.155300-1-peng.fan@oss.nxp.com
[abel.vesa@linaro.org: renamed to ANATOP instead of Analog]
Signed-off-by: Abel Vesa <abel.vesa@linaro.org>

authored by

Peng Fan and committed by
Abel Vesa
144f1b70 b85ea95d

+42
+42
Documentation/devicetree/bindings/clock/fsl,imx93-anatop.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/clock/fsl,imx93-anatop.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: NXP i.MX93 ANATOP Clock Module 8 + 9 + maintainers: 10 + - Peng Fan <peng.fan@nxp.com> 11 + 12 + description: | 13 + NXP i.MX93 ANATOP module which contains PLL and OSC to Clock Controller 14 + Module. 15 + 16 + properties: 17 + compatible: 18 + items: 19 + - const: fsl,imx93-anatop 20 + 21 + reg: 22 + maxItems: 1 23 + 24 + '#clock-cells': 25 + const: 1 26 + 27 + required: 28 + - compatible 29 + - reg 30 + - '#clock-cells' 31 + 32 + additionalProperties: false 33 + 34 + examples: 35 + - | 36 + clock-controller@44480000 { 37 + compatible = "fsl,imx93-anatop"; 38 + reg = <0x44480000 0x2000>; 39 + #clock-cells = <1>; 40 + }; 41 + 42 + ...