1*c66ec88fSEmmanuel VadotKeystone SoC Hardware Random Number Generator(HWRNG) Module 2*c66ec88fSEmmanuel Vadot 3*c66ec88fSEmmanuel VadotOn Keystone SoCs HWRNG module is a submodule of the Security Accelerator. 4*c66ec88fSEmmanuel Vadot 5*c66ec88fSEmmanuel Vadot- compatible: should be "ti,keystone-rng" 6*c66ec88fSEmmanuel Vadot- ti,syscon-sa-cfg: phandle to syscon node of the SA configuration registers. 7*c66ec88fSEmmanuel Vadot This registers are shared between hwrng and crypto drivers. 8*c66ec88fSEmmanuel Vadot- clocks: phandle to the reference clocks for the subsystem 9*c66ec88fSEmmanuel Vadot- clock-names: functional clock name. Should be set to "fck" 10*c66ec88fSEmmanuel Vadot- reg: HWRNG module register space 11*c66ec88fSEmmanuel Vadot 12*c66ec88fSEmmanuel VadotExample: 13*c66ec88fSEmmanuel Vadot/* K2HK */ 14*c66ec88fSEmmanuel Vadot 15*c66ec88fSEmmanuel Vadotrng@24000 { 16*c66ec88fSEmmanuel Vadot compatible = "ti,keystone-rng"; 17*c66ec88fSEmmanuel Vadot ti,syscon-sa-cfg = <&sa_config>; 18*c66ec88fSEmmanuel Vadot clocks = <&clksa>; 19*c66ec88fSEmmanuel Vadot clock-names = "fck"; 20*c66ec88fSEmmanuel Vadot reg = <0x24000 0x1000>; 21*c66ec88fSEmmanuel Vadot}; 22