Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/input/google,goldfish-events-keypad.yaml
121834 views
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
7
title: Android Goldfish Events Keypad
8
9
maintainers:
10
- Kuan-Wei Chiu <visitorckw@gmail.com>
11
12
allOf:
13
- $ref: input.yaml#
14
15
description:
16
Android goldfish events keypad device generated by android emulator.
17
18
properties:
19
compatible:
20
const: google,goldfish-events-keypad
21
22
reg:
23
maxItems: 1
24
25
interrupts:
26
maxItems: 1
27
28
required:
29
- compatible
30
- reg
31
- interrupts
32
33
unevaluatedProperties: false
34
35
examples:
36
- |
37
keypad@9040000 {
38
compatible = "google,goldfish-events-keypad";
39
reg = <0x9040000 0x1000>;
40
interrupts = <5>;
41
};
42
43