mirror of
https://github.com/torvalds/linux.git
synced 2024-12-24 11:51:27 +00:00
f8e4f9a0a8
Document the bindings used by Northstar Plus(NSP) SoC random number generator. Signed-off-by: Yendapally Reddy Dhananjaya Reddy <yendapally.reddy@broadcom.com> Acked-by: Eric Anholt <eric@anholt.net> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
19 lines
362 B
Plaintext
19 lines
362 B
Plaintext
BCM2835 Random number generator
|
|
|
|
Required properties:
|
|
|
|
- compatible : should be "brcm,bcm2835-rng" or "brcm,bcm-nsp-rng"
|
|
- reg : Specifies base physical address and size of the registers.
|
|
|
|
Example:
|
|
|
|
rng {
|
|
compatible = "brcm,bcm2835-rng";
|
|
reg = <0x7e104000 0x10>;
|
|
};
|
|
|
|
rng@18033000 {
|
|
compatible = "brcm,bcm-nsp-rng";
|
|
reg = <0x18033000 0x14>;
|
|
};
|