The Devicetree bindings document does not have to say in the title that it is a "Devicetree binding", but instead just describe the hardware. Drop trailing "Devicetree bindings" in various forms (also with trailing full stop): find Documentation/devicetree/bindings/ -type f -name '*.yaml' \ -not -name 'trivial-devices.yaml' \ -exec sed -i -e 's/^title: \(.*\) [dD]evice[ -]\?[tT]ree [bB]indings\?\.\?$/title: \1/' {} \; find Documentation/devicetree/bindings/ -type f -name '*.yaml' \ -not -name 'trivial-devices.yaml' \ -exec sed -i -e 's/^title: \(.*\) [dD]evice[ -]\?[nN]ode [bB]indings\?\.\?$/title: \1/' {} \; find Documentation/devicetree/bindings/ -type f -name '*.yaml' \ -not -name 'trivial-devices.yaml' \ -exec sed -i -e 's/^title: \(.*\) [dD][tT] [bB]indings\?\.\?$/title: \1/' {} \; Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> # IIO Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # MMC Acked-by: Stephen Boyd <sboyd@kernel.org> # clk Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> # input Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> # media Acked-by: Sebastian Reichel <sre@kernel.org> # power Link: https://lore.kernel.org/r/20221216163815.522628-5-krzysztof.kozlowski@linaro.org Signed-off-by: Rob Herring <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
|
|
|
|
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>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|