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

dt-bindings: clock: add i.MX8M Anatop

i.MX8M Family features an anatop module the produces PLL to clock
control module(CCM) root clock. Add the missing yaml file.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>

authored by

Peng Fan and committed by
Shawn Guo
1a3e9381 248a180c

+51
+51
Documentation/devicetree/bindings/clock/fsl,imx8m-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,imx8m-anatop.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: NXP i.MX8M Family Anatop Module 8 + 9 + maintainers: 10 + - Peng Fan <peng.fan@nxp.com> 11 + 12 + description: | 13 + NXP i.MX8M Family anatop PLL module which generates PLL to CCM root. 14 + 15 + properties: 16 + compatible: 17 + oneOf: 18 + - enum: 19 + - fsl,imx8mm-anatop 20 + - fsl,imx8mq-anatop 21 + - items: 22 + - enum: 23 + - fsl,imx8mn-anatop 24 + - fsl,imx8mp-anatop 25 + - const: fsl,imx8mm-anatop 26 + 27 + reg: 28 + maxItems: 1 29 + 30 + interrupts: 31 + maxItems: 1 32 + 33 + '#clock-cells': 34 + const: 1 35 + 36 + required: 37 + - compatible 38 + - reg 39 + - '#clock-cells' 40 + 41 + additionalProperties: false 42 + 43 + examples: 44 + - | 45 + anatop: clock-controller@30360000 { 46 + compatible = "fsl,imx8mn-anatop", "fsl,imx8mm-anatop"; 47 + reg = <0x30360000 0x10000>; 48 + #clock-cells = <1>; 49 + }; 50 + 51 + ...