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

gpio-ir-tx.txt (456B)


      1Device tree bindings for IR LED connected through gpio pin which is used as
      2remote controller transmitter.
      3
      4Required properties:
      5	- compatible: should be "gpio-ir-tx".
      6	- gpios :  Should specify the IR LED GPIO, see "gpios property" in
      7	  Documentation/devicetree/bindings/gpio/gpio.txt.  Active low LEDs
      8	  should be indicated using flags in the GPIO specifier.
      9
     10Example:
     11	irled@0 {
     12		compatible = "gpio-ir-tx";
     13		gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>;
     14	};