xref: /freebsd/sys/contrib/device-tree/Bindings/input/google,goldfish-events-keypad.yaml (revision 0cd4430a9320c916a84617b6bbf400f5c64a09c7)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/input/google,goldfish-events-keypad.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Android Goldfish Events Keypad
8
9maintainers:
10  - Kuan-Wei Chiu <visitorckw@gmail.com>
11
12allOf:
13  - $ref: input.yaml#
14
15description:
16  Android goldfish events keypad device generated by android emulator.
17
18properties:
19  compatible:
20    const: google,goldfish-events-keypad
21
22  reg:
23    maxItems: 1
24
25  interrupts:
26    maxItems: 1
27
28required:
29  - compatible
30  - reg
31  - interrupts
32
33unevaluatedProperties: false
34
35examples:
36  - |
37    keypad@9040000 {
38        compatible = "google,goldfish-events-keypad";
39        reg = <0x9040000 0x1000>;
40        interrupts = <5>;
41    };
42