Path: blob/master/Documentation/devicetree/bindings/input/goodix,gt7375p.yaml
26308 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/input/goodix,gt7375p.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Goodix GT7375P touchscreen78maintainers:9- Douglas Anderson <dianders@chromium.org>1011description:12Supports the Goodix GT7375P touchscreen.13This touchscreen uses the i2c-hid protocol but has some non-standard14power sequencing required.1516allOf:17- $ref: /schemas/input/touchscreen/touchscreen.yaml#1819properties:20compatible:21oneOf:22- const: goodix,gt7375p23- items:24- const: goodix,gt7986u25- const: goodix,gt7375p2627reg:28enum:29- 0x5d30- 0x143132interrupts:33maxItems: 13435panel: true3637reset-gpios:38true3940vdd-supply:41description: The 3.3V supply to the touchscreen.4243mainboard-vddio-supply:44description:45The supply on the main board needed to power up IO signals going46to the touchscreen. This supply need not go to the touchscreen47itself as long as it allows the main board to make signals compatible48with what the touchscreen is expecting for its IO rails.4950goodix,no-reset-during-suspend:51description:52Set this to true to enforce the driver to not assert the reset GPIO53during suspend.54Due to potential touchscreen hardware flaw, back-powering could happen in55suspend if the power supply is on and with active-low reset GPIO asserted.56This property is used to avoid the back-powering issue.57type: boolean5859required:60- compatible61- reg62- interrupts63- reset-gpios64- vdd-supply6566additionalProperties: false6768examples:69- |70#include <dt-bindings/clock/qcom,rpmh.h>71#include <dt-bindings/gpio/gpio.h>72#include <dt-bindings/interrupt-controller/irq.h>7374i2c {75#address-cells = <1>;76#size-cells = <0>;7778ap_ts: touchscreen@5d {79compatible = "goodix,gt7375p";80reg = <0x5d>;8182interrupt-parent = <&tlmm>;83interrupts = <9 IRQ_TYPE_LEVEL_LOW>;8485reset-gpios = <&tlmm 8 GPIO_ACTIVE_LOW>;86vdd-supply = <&pp3300_ts>;87};88};899091