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

dt-bindings: crypto: fsl-imx-sahara: Document the clocks

Describe the clocks (ipg and ahb) needed by Sahara block to operate.

Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Fabio Estevam and committed by
Herbert Xu
dcd7a896 137e6c52

+17
+17
Documentation/devicetree/bindings/crypto/fsl-imx-sahara.yaml
··· 21 21 interrupts: 22 22 maxItems: 1 23 23 24 + clocks: 25 + items: 26 + - description: Sahara IPG clock 27 + - description: Sahara AHB clock 28 + 29 + clock-names: 30 + items: 31 + - const: ipg 32 + - const: ahb 33 + 24 34 required: 25 35 - compatible 26 36 - reg 27 37 - interrupts 38 + - clocks 39 + - clock-names 28 40 29 41 additionalProperties: false 30 42 31 43 examples: 32 44 - | 45 + #include <dt-bindings/clock/imx27-clock.h> 46 + 33 47 crypto@10025000 { 34 48 compatible = "fsl,imx27-sahara"; 35 49 reg = <0x10025000 0x800>; 36 50 interrupts = <75>; 51 + clocks = <&clks IMX27_CLK_SAHARA_IPG_GATE>, 52 + <&clks IMX27_CLK_SAHARA_AHB_GATE>; 53 + clock-names = "ipg", "ahb"; 37 54 };