Path: blob/master/Documentation/devicetree/bindings/input/cypress,cyapa.yaml
26308 views
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause1%YAML 1.22---3$id: http://devicetree.org/schemas/input/cypress,cyapa.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Cypress All Points Addressable (APA) I2C Touchpad / Trackpad78maintainers:9- Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>1011properties:12compatible:13const: cypress,cyapa1415reg:16maxItems: 11718interrupts:19maxItems: 12021wakeup-source: true2223vcc-supply:24description: 3.3V power2526required:27- compatible28- reg29- interrupts3031additionalProperties: false3233examples:34- |35#include <dt-bindings/interrupt-controller/irq.h>3637i2c {38#address-cells = <1>;39#size-cells = <0>;4041trackpad@67 {42reg = <0x67>;43compatible = "cypress,cyapa";44interrupts = <2 IRQ_TYPE_EDGE_FALLING>;45interrupt-parent = <&gpx1>;46wakeup-source;47};48};495051