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

meson-ir.txt (558B)


      1* Amlogic Meson IR remote control receiver
      2
      3Required properties:
      4 - compatible	: depending on the platform this should be one of:
      5		  - "amlogic,meson6-ir"
      6		  - "amlogic,meson8b-ir"
      7		  - "amlogic,meson-gxbb-ir"
      8 - reg		: physical base address and length of the device registers
      9 - interrupts	: a single specifier for the interrupt from the device
     10
     11Optional properties:
     12 - linux,rc-map-name:	see rc.txt file in the same directory.
     13
     14Example:
     15
     16	ir-receiver@c8100480 {
     17		compatible= "amlogic,meson6-ir";
     18		reg = <0xc8100480 0x20>;
     19		interrupts = <0 15 1>;
     20	};