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

ziirave-wdt.txt (441B)


      1Zodiac RAVE Watchdog Timer
      2
      3Required properties:
      4- compatible: must be "zii,rave-wdt"
      5- reg: i2c slave address of device, usually 0x38
      6
      7Optional Properties:
      8- timeout-sec: Watchdog timeout value in seconds.
      9- reset-duration-ms: Duration of the pulse generated when the watchdog times
     10  out. Value in milliseconds.
     11
     12Example:
     13
     14	watchdog@38 {
     15		compatible = "zii,rave-wdt";
     16		reg = <0x38>;
     17		timeout-sec = <30>;
     18		reset-duration-ms = <30>;
     19	};