Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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,imx35-rngc"
9- reg : offset and length of the register set of this block
10- interrupts : the interrupt number for the RNG block
11- clocks : the RNG clk source
12
13Example:
14
15rng@53fb0000 {
16 compatible = "fsl,imx25-rngb";
17 reg = <0x53fb0000 0x4000>;
18 interrupts = <22>;
19 clocks = <&trng_clk>;
20};