1Freescale RNGA/RNGB/RNGC (Random Number Generator Versions A, B and C)
2
3Required properties:
4- compatible : should be one of
5               "fsl,imx21-rnga"
6               "fsl,imx31-rnga" (backward compatible with "fsl,imx21-rnga")
7               "fsl,imx25-rngb"
8               "fsl,imx6sl-rngb" (backward compatible with "fsl,imx25-rngb")
9               "fsl,imx6sll-rngb" (backward compatible with "fsl,imx25-rngb")
10               "fsl,imx6ull-rngb" (backward compatible with "fsl,imx25-rngb")
11               "fsl,imx35-rngc"
12- reg : offset and length of the register set of this block
13- interrupts : the interrupt number for the RNG block
14- clocks : the RNG clk source
15
16Example:
17
18rng@53fb0000 {
19	compatible = "fsl,imx25-rngb";
20	reg = <0x53fb0000 0x4000>;
21	interrupts = <22>;
22	clocks = <&trng_clk>;
23};
24