Skip to content

Commit 3b42b9a

Browse files
glneodtor
authored andcommitted
dt-bindings: input: ti,nspire-keypad: convert to YAML format
Convert TI-NSPIRE Keypad controller bindings to DT schema. Signed-off-by: Andrew Davis <afd@ti.com> Reviewed-by: Conor Dooley <conor.dooley@microchip.com> Link: https://lore.kernel.org/r/20240612150711.26706-1-afd@ti.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
1 parent f275b3a commit 3b42b9a

2 files changed

Lines changed: 74 additions & 60 deletions

File tree

Documentation/devicetree/bindings/input/ti,nspire-keypad.txt

Lines changed: 0 additions & 60 deletions
This file was deleted.
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/input/ti,nspire-keypad.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: TI-NSPIRE Keypad
8+
9+
maintainers:
10+
- Andrew Davis <afd@ti.com>
11+
12+
allOf:
13+
- $ref: input.yaml#
14+
- $ref: matrix-keymap.yaml#
15+
16+
properties:
17+
compatible:
18+
enum:
19+
- ti,nspire-keypad
20+
21+
reg:
22+
maxItems: 1
23+
24+
interrupts:
25+
maxItems: 1
26+
27+
clocks:
28+
maxItems: 1
29+
30+
scan-interval:
31+
$ref: /schemas/types.yaml#/definitions/uint32
32+
description: How often to scan in us. Based on a APB speed of 33MHz, the
33+
maximum and minimum delay time is ~2000us and ~500us respectively
34+
35+
row-delay:
36+
$ref: /schemas/types.yaml#/definitions/uint32
37+
description: How long to wait between scanning each row in us.
38+
39+
active-low:
40+
description: Specify that the keypad is active low.
41+
42+
required:
43+
- compatible
44+
- reg
45+
- interrupts
46+
- clocks
47+
- scan-interval
48+
- row-delay
49+
- linux,keymap
50+
51+
unevaluatedProperties: false
52+
53+
examples:
54+
- |
55+
#include <dt-bindings/input/input.h>
56+
keypad@900e0000 {
57+
compatible = "ti,nspire-keypad";
58+
reg = <0x900e0000 0x1000>;
59+
interrupts = <16>;
60+
61+
clocks = <&apb_pclk>;
62+
63+
scan-interval = <1000>;
64+
row-delay = <200>;
65+
66+
linux,keymap = <
67+
MATRIX_KEY(0, 0, KEY_ENTER)
68+
MATRIX_KEY(0, 1, KEY_ENTER)
69+
MATRIX_KEY(0, 4, KEY_SPACE)
70+
MATRIX_KEY(0, 5, KEY_Z)
71+
MATRIX_KEY(0, 6, KEY_Y)
72+
MATRIX_KEY(0, 7, KEY_0)
73+
>;
74+
};

0 commit comments

Comments
 (0)