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

moxa,moxart-rtc.txt (395B)


      1MOXA ART real-time clock
      2
      3Required properties:
      4
      5- compatible : Should be "moxa,moxart-rtc"
      6- gpio-rtc-sclk : RTC sclk gpio, with zero flags
      7- gpio-rtc-data : RTC data gpio, with zero flags
      8- gpio-rtc-reset : RTC reset gpio, with zero flags
      9
     10Example:
     11
     12	rtc: rtc {
     13		compatible = "moxa,moxart-rtc";
     14		gpio-rtc-sclk = <&gpio 5 0>;
     15		gpio-rtc-data = <&gpio 6 0>;
     16		gpio-rtc-reset = <&gpio 7 0>;
     17	};