Now that we have a graph schema, rework the display related schemas to use it. Mostly this is adding a reference to graph.yaml and dropping duplicate parts from schemas. In panel-common.yaml, 'ports' is dropped. Any binding using 'ports' should be one with more than 1 port node, and the binding must define what each port is. Note that ti,sn65dsi86.yaml, ti,tfp410,yaml and toshiba,tc358768.yaml will need further updates to use video-interfaces.yaml once that lands. Cc: Thierry Reding <thierry.reding@gmail.com> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Cc: Maxime Ripard <mripard@kernel.org> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Thomas Zimmermann <tzimmermann@suse.de> Signed-off-by: Rob Herring <robh@kernel.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210104180724.2275098-1-robh@kernel.org
95 lines
2.0 KiB
YAML
95 lines
2.0 KiB
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/display/bridge/anx6345.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Analogix ANX6345 eDP Transmitter Device Tree Bindings
|
|
|
|
maintainers:
|
|
- Torsten Duwe <duwe@lst.de>
|
|
|
|
description: |
|
|
The ANX6345 is an ultra-low power Full-HD eDP transmitter designed for
|
|
portable devices.
|
|
|
|
properties:
|
|
compatible:
|
|
const: analogix,anx6345
|
|
|
|
reg:
|
|
maxItems: 1
|
|
description: base I2C address of the device
|
|
|
|
reset-gpios:
|
|
maxItems: 1
|
|
description: GPIO connected to active low reset
|
|
|
|
dvdd12-supply:
|
|
description: Regulator for 1.2V digital core power.
|
|
|
|
dvdd25-supply:
|
|
description: Regulator for 2.5V digital core power.
|
|
|
|
ports:
|
|
$ref: /schemas/graph.yaml#/properties/ports
|
|
|
|
properties:
|
|
port@0:
|
|
$ref: /schemas/graph.yaml#/properties/port
|
|
description:
|
|
Video port for LVTTL input
|
|
|
|
port@1:
|
|
$ref: /schemas/graph.yaml#/properties/port
|
|
description:
|
|
Video port for eDP output (panel or connector).
|
|
May be omitted if EDID works reliably.
|
|
|
|
required:
|
|
- port@0
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- reset-gpios
|
|
- dvdd12-supply
|
|
- dvdd25-supply
|
|
- ports
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
i2c0 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
anx6345: anx6345@38 {
|
|
compatible = "analogix,anx6345";
|
|
reg = <0x38>;
|
|
reset-gpios = <&pio42 1 /* GPIO_ACTIVE_LOW */>;
|
|
dvdd25-supply = <®_dldo2>;
|
|
dvdd12-supply = <®_fldo1>;
|
|
|
|
ports {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
anx6345_in: port@0 {
|
|
reg = <0>;
|
|
anx6345_in_tcon0: endpoint {
|
|
remote-endpoint = <&tcon0_out_anx6345>;
|
|
};
|
|
};
|
|
|
|
anx6345_out: port@1 {
|
|
reg = <1>;
|
|
anx6345_out_panel: endpoint {
|
|
remote-endpoint = <&panel_in_edp>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|