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-can.txt (400B)


      1* AT91 CAN *
      2
      3Required properties:
      4  - compatible: Should be "atmel,at91sam9263-can", "atmel,at91sam9x5-can" or
      5    "microchip,sam9x60-can"
      6  - reg: Should contain CAN controller registers location and length
      7  - interrupts: Should contain IRQ line for the CAN controller
      8
      9Example:
     10
     11	can0: can@f000c000 {
     12		compatible = "atmel,at91sam9x5-can";
     13		reg = <0xf000c000 0x300>;
     14		interrupts = <40 4 5>
     15	};