git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
18 lines
454 B
Plaintext
18 lines
454 B
Plaintext
* Microchip PIC32 Random Number Generator
|
|
|
|
The PIC32 RNG provides a pseudo random number generator which can be seeded by
|
|
another true random number generator.
|
|
|
|
Required properties:
|
|
- compatible : should be "microchip,pic32mzda-rng"
|
|
- reg : Specifies base physical address and size of the registers.
|
|
- clocks: clock phandle.
|
|
|
|
Example:
|
|
|
|
rng: rng@1f8e6000 {
|
|
compatible = "microchip,pic32mzda-rng";
|
|
reg = <0x1f8e6000 0x1000>;
|
|
clocks = <&PBCLK5>;
|
|
};
|