1*c66ec88fSEmmanuel VadotAPM X-Gene SoC random number generator. 2*c66ec88fSEmmanuel Vadot 3*c66ec88fSEmmanuel VadotRequired properties: 4*c66ec88fSEmmanuel Vadot 5*c66ec88fSEmmanuel Vadot- compatible : should be "apm,xgene-rng" 6*c66ec88fSEmmanuel Vadot- reg : specifies base physical address and size of the registers map 7*c66ec88fSEmmanuel Vadot- clocks : phandle to clock-controller plus clock-specifier pair 8*c66ec88fSEmmanuel Vadot- interrupts : specify the fault interrupt for the RNG device 9*c66ec88fSEmmanuel Vadot 10*c66ec88fSEmmanuel VadotExample: 11*c66ec88fSEmmanuel Vadot 12*c66ec88fSEmmanuel Vadot rng: rng@10520000 { 13*c66ec88fSEmmanuel Vadot compatible = "apm,xgene-rng"; 14*c66ec88fSEmmanuel Vadot reg = <0x0 0x10520000 0x0 0x100>; 15*c66ec88fSEmmanuel Vadot interrupts = <0x0 0x41 0x4>; 16*c66ec88fSEmmanuel Vadot clocks = <&rngpkaclk 0>; 17*c66ec88fSEmmanuel Vadot }; 18