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

ps8622.txt (837B)


      1ps8622-bridge bindings
      2
      3Required properties:
      4	- compatible: "parade,ps8622" or "parade,ps8625"
      5	- reg: first i2c address of the bridge
      6	- sleep-gpios: OF device-tree gpio specification for PD_ pin.
      7	- reset-gpios: OF device-tree gpio specification for RST_ pin.
      8
      9Optional properties:
     10	- lane-count: number of DP lanes to use
     11	- use-external-pwm: backlight will be controlled by an external PWM
     12	- video interfaces: Device node can contain video interface port
     13			    nodes for panel according to [1].
     14
     15[1]: Documentation/devicetree/bindings/media/video-interfaces.txt
     16
     17Example:
     18	lvds-bridge@48 {
     19		compatible = "parade,ps8622";
     20		reg = <0x48>;
     21		sleep-gpios = <&gpc3 6 1 0 0>;
     22		reset-gpios = <&gpc3 1 1 0 0>;
     23		lane-count = <1>;
     24		ports {
     25			port@0 {
     26				bridge_out: endpoint {
     27					remote-endpoint = <&panel_in>;
     28				};
     29			};
     30		};
     31	};