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

ti,opa362.txt (595B)


      1OPA362 analog video amplifier
      2
      3Required properties:
      4- compatible: "ti,opa362"
      5- enable-gpios: enable/disable output gpio
      6
      7Required node:
      8- Video port 0 for opa362 input
      9- Video port 1 for opa362 output
     10
     11Example:
     12
     13tv_amp: opa362 {
     14	compatible = "ti,opa362";
     15	enable-gpios = <&gpio1 23 0>;  /* GPIO to enable video out amplifier */
     16
     17	ports {
     18		#address-cells = <1>;
     19		#size-cells = <0>;
     20
     21		port@0 {
     22			reg = <0>;
     23			opa_in: endpoint@0 {
     24				remote-endpoint = <&venc_out>;
     25			};
     26		};
     27
     28		port@1 {
     29			reg = <1>;
     30			opa_out: endpoint@0 {
     31				remote-endpoint = <&tv_connector_in>;
     32			};
     33		};
     34	};
     35};
     36
     37
     38