cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

microchip,pic32-rng.txt (454B)


      1* Microchip PIC32 Random Number Generator
      2
      3The PIC32 RNG provides a pseudo random number generator which can be seeded by
      4another true random number generator.
      5
      6Required properties:
      7- compatible : should be "microchip,pic32mzda-rng"
      8- reg : Specifies base physical address and size of the registers.
      9- clocks: clock phandle.
     10
     11Example:
     12
     13	rng: rng@1f8e6000 {
     14		compatible = "microchip,pic32mzda-rng";
     15		reg = <0x1f8e6000 0x1000>;
     16		clocks = <&PBCLK5>;
     17	};