Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause %YAML 1.2 --- $id: http://devicetree.org/schemas/display/samsung/samsung,exynos5-dp.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Samsung Exynos5250/Exynos5420 SoC Display Port maintainers: - Inki Dae <inki.dae@samsung.com> - Seung-Woo Kim <sw0312.kim@samsung.com> - Kyungmin Park <kyungmin.park@samsung.com> - Krzysztof Kozlowski <krzk@kernel.org> properties: compatible: const: samsung,exynos5-dp reg: maxItems: 1 clocks: maxItems: 1 clock-names: items: - const: dp display-timings: $ref: /schemas/display/panel/display-timings.yaml# interrupts: maxItems: 1 hpd-gpios: description: Hotplug detect GPIO. Indicates which GPIO should be used for hotplug detection phys: maxItems: 1 phy-names: items: - const: dp power-domains: maxItems: 1 interlaced: type: boolean deprecated: true description: Interlace scan mode. Progressive if defined, interlaced if not defined. vsync-active-high: type: boolean deprecated: true description: VSYNC polarity configuration. High if defined, low if not defined hsync-active-high: type: boolean deprecated: true description: HSYNC polarity configuration. High if defined, low if not defined ports: $ref: /schemas/graph.yaml#/properties/ports properties: port: $ref: /schemas/graph.yaml#/properties/port description: Port node with one endpoint connected to a dp-connector node. required: - port samsung,hpd-gpios: maxItems: 1 deprecated: true samsung,ycbcr-coeff: $ref: /schemas/types.yaml#/definitions/uint32 deprecated: true description: Deprecated prop that can parsed from drm_display_mode. samsung,dynamic-range: $ref: /schemas/types.yaml#/definitions/uint32 deprecated: true description: Deprecated prop that can parsed from drm_display_mode. samsung,color-space: $ref: /schemas/types.yaml#/definitions/uint32 deprecated: true description: Deprecated prop that can parsed from drm_display_info. samsung,color-depth: $ref: /schemas/types.yaml#/definitions/uint32 deprecated: true description: Deprecated prop that can parsed from drm_display_info. samsung,link-rate: $ref: /schemas/types.yaml#/definitions/uint32 deprecated: true description: Deprecated prop that can reading from monitor by dpcd method. samsung,lane-count: $ref: /schemas/types.yaml#/definitions/uint32 deprecated: true description: Deprecated prop that can reading from monitor by dpcd method. required: - compatible - reg - clocks - clock-names - interrupts - phys - phy-names additionalProperties: false examples: - | #include <dt-bindings/clock/exynos5250.h> #include <dt-bindings/gpio/gpio.h> #include <dt-bindings/interrupt-controller/arm-gic.h> dp-controller@145b0000 { compatible = "samsung,exynos5-dp"; reg = <0x145b0000 0x1000>; clocks = <&clock CLK_DP>; clock-names = "dp"; interrupts = <10 3>; interrupt-parent = <&combiner>; phys = <&dp_phy>; phy-names = "dp"; pinctrl-0 = <&dp_hpd>; pinctrl-names = "default"; power-domains = <&pd_disp1>; samsung,color-space = <0>; samsung,color-depth = <1>; samsung,link-rate = <0x0a>; samsung,lane-count = <2>; hpd-gpios = <&gpx0 7 GPIO_ACTIVE_HIGH>; ports { port { dp_out: endpoint { remote-endpoint = <&bridge_in>; }; }; }; }; |