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

Configure Feed

Select the types of activity you want to include in your feed.

at v4.18-rc6 21 lines 474 B view raw
1Amlogic Meson Random number generator 2===================================== 3 4Required properties: 5 6- compatible : should be "amlogic,meson-rng" 7- reg : Specifies base physical address and size of the registers. 8 9Optional properties: 10 11- clocks : phandle to the following named clocks 12- clock-names: Name of core clock, must be "core" 13 14Example: 15 16rng { 17 compatible = "amlogic,meson-rng"; 18 reg = <0x0 0xc8834000 0x0 0x4>; 19 clocks = <&clkc CLKID_RNG0>; 20 clock-names = "core"; 21};