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

atmel-at91_cf.txt (534B)


      1Atmel AT91RM9200 CompactFlash
      2
      3Required properties:
      4- compatible : "atmel,at91rm9200-cf".
      5- reg : should specify localbus address and size used.
      6- gpios : specifies the gpio pins to control the CF device. Detect
      7  and reset gpio's are mandatory while irq and vcc gpio's are
      8  optional and may be set to 0 if not present.
      9
     10Example:
     11compact-flash@50000000 {
     12	compatible = "atmel,at91rm9200-cf";
     13	reg = <0x50000000 0x30000000>;
     14	gpios = <&pioC 13 0	/* irq */
     15		 &pioC 15 0 	/* detect */
     16		 0		/* vcc */
     17		 &pioC  5 0	/* reset */
     18		>;
     19};