Path: blob/main/sys/contrib/device-tree/Bindings/display/bridge/analogix_dp.txt
48406 views
Analogix Display Port bridge bindings12Required properties for dp-controller:3-compatible:4platform specific such as:5* "samsung,exynos5-dp"6* "rockchip,rk3288-dp"7* "rockchip,rk3399-edp"8-reg:9physical base address of the controller and length10of memory mapped region.11-interrupts:12interrupt combiner values.13-clocks:14from common clock binding: handle to dp clock.15-clock-names:16from common clock binding: Shall be "dp".17-phys:18from general PHY binding: the phandle for the PHY device.19-phy-names:20from general PHY binding: Should be "dp".2122Optional properties for dp-controller:23-force-hpd:24Indicate driver need force hpd when hpd detect failed, this25is used for some eDP screen which don't have hpd signal.26-hpd-gpios:27Hotplug detect GPIO.28Indicates which GPIO should be used for hotplug detection29-port@[X]: SoC specific port nodes with endpoint definitions as defined30in Documentation/devicetree/bindings/media/video-interfaces.txt,31please refer to the SoC specific binding document:32* Documentation/devicetree/bindings/display/exynos/exynos_dp.txt33* Documentation/devicetree/bindings/display/rockchip/analogix_dp-rockchip.txt3435[1]: Documentation/devicetree/bindings/media/video-interfaces.txt36-------------------------------------------------------------------------------3738Example:3940dp-controller {41compatible = "samsung,exynos5-dp";42reg = <0x145b0000 0x10000>;43interrupts = <10 3>;44interrupt-parent = <&combiner>;45clocks = <&clock 342>;46clock-names = "dp";4748phys = <&dp_phy>;49phy-names = "dp";50};515253