Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Documentation/devicetree/bindings/arm/qcom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ properties:
- items:
- enum:
- fairphone,fp5
- nexcomputer,nexphone
- particle,tachyon
- qcom,qcm6490-idp
- qcom,qcs6490-rb3gen2
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/display/panel/focaltech,ft8722.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Focaltech FT8722 LCD panel controller

maintainers:
- Luka Panio <lukapanio@gmail.com>

allOf:
- $ref: panel-common.yaml#

properties:
compatible:
const: txd,txdi660jbpv

reg:
maxItems: 1

backlight: true
port: true
reset-gpios: true

vddio-supply:
description: power IC supply regulator

vddpos-supply:
description: positive boost supply regulator

vddneg-supply:
description: negative boost supply regulator

required:
- compatible
- reg
- port
- vddio-supply
- vddpos-supply
- vddneg-supply
- reset-gpios

additionalProperties: false

examples:
- |
#include <dt-bindings/gpio/gpio.h>

dsi {
#address-cells = <1>;
#size-cells = <0>;

panel@0 {
compatible = "txd,txdi660jbpv";
reg = <0>;
vddio-supply = <&vreg_l12c>;
vddpos-supply = <&lab>;
vddneg-supply = <&ibb>;
reset-gpios = <&tlmm 44 GPIO_ACTIVE_HIGH>;

backlight = <&aw99703_backlight>;
pinctrl-0 = <&sde_dsi_active &sde_te_active_sleep>;
pinctrl-1 = <&sde_dsi_sleep &sde_te_active_sleep>;
pinctrl-names = "default", "sleep";

port {
panel_in: endpoint {
remote-endpoint = <&mdss_dsi0_out>;
};
};
};
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/leds/backlight/awinic,aw99703.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Awinic AW99703 3-channel WLED Backlight Driver

maintainers:
- Luka Panio <lukapanio0@gmail.com>

allOf:
- $ref: common.yaml#

properties:
compatible:
const: awinic,aw99703

reg:
maxItems: 1

enable-gpios:
description: GPIO to use to enable/disable the backlight (HWEN pin).
maxItems: 1

required:
- compatible
- reg
- enable-gpios

unevaluatedProperties: false

examples:
- |
#include <dt-bindings/gpio/gpio.h>

i2c {
#address-cells = <1>;
#size-cells = <0>;

backlight@36 {
compatible = "awinic,aw99703";
reg = <0x36>;
enable-gpios = <&pm8350c_gpios 7 GPIO_ACTIVE_HIGH>;
};
};

...
2 changes: 2 additions & 0 deletions Documentation/devicetree/bindings/vendor-prefixes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1134,6 +1134,8 @@ patternProperties:
description: New Vision Display (Shenzhen) Co., Ltd.
"^nexbox,.*":
description: Nexbox
"^nexcomputer,.*":
description: Nex Computer LLC
"^nextthing,.*":
description: Next Thing Co.
"^ni,.*":
Expand Down
1 change: 1 addition & 0 deletions arch/arm64/boot/dts/qcom/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ dtb-$(CONFIG_ARCH_QCOM) += msm8998-sony-xperia-yoshino-poplar.dtb
dtb-$(CONFIG_ARCH_QCOM) += msm8998-xiaomi-sagit.dtb
dtb-$(CONFIG_ARCH_QCOM) += qcm6490-fairphone-fp5.dtb
dtb-$(CONFIG_ARCH_QCOM) += qcm6490-idp.dtb
dtb-$(CONFIG_ARCH_QCOM) += qcm6490-nexcomputer-nexphone.dtb
dtb-$(CONFIG_ARCH_QCOM) += qcm6490-particle-tachyon.dtb
dtb-$(CONFIG_ARCH_QCOM) += qcm6490-shift-otter.dtb
dtb-$(CONFIG_ARCH_QCOM) += qcs404-evb-1000.dtb
Expand Down
Loading