forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: input: Convert mpr121 binding to json-schema
Convert the mpr121 binding to DT schema format using json-schema. Signed-off-by: Michal Vokáč <[email protected]> Reviewed-by: Rob Herring <[email protected]> Signed-off-by: Dmitry Torokhov <[email protected]>
- Loading branch information
Showing
2 changed files
with
66 additions
and
30 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
Documentation/devicetree/bindings/input/fsl,mpr121-touchkey.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/input/fsl,mpr121-touchkey.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Freescale MPR121 capacitive touch sensor controller | ||
|
||
maintainers: | ||
- Dmitry Torokhov <[email protected]> | ||
|
||
description: | | ||
The MPR121 supports up to 12 completely independent electrodes/capacitance | ||
sensing inputs in which 8 are multifunctional for LED driving and GPIO. | ||
https://www.nxp.com/docs/en/data-sheet/MPR121.pdf | ||
allOf: | ||
- $ref: input.yaml# | ||
|
||
properties: | ||
compatible: | ||
const: fsl,mpr121-touchkey | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
vdd-supply: | ||
maxItems: 1 | ||
|
||
linux,keycodes: | ||
minItems: 1 | ||
maxItems: 12 | ||
|
||
wakeup-source: | ||
description: Use any event on keypad as wakeup event. | ||
type: boolean | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
- vdd-supply | ||
- linux,keycodes | ||
|
||
examples: | ||
- | | ||
#include "dt-bindings/input/input.h" | ||
i2c { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
mpr121@5a { | ||
compatible = "fsl,mpr121-touchkey"; | ||
reg = <0x5a>; | ||
interrupt-parent = <&gpio1>; | ||
interrupts = <28 2>; | ||
autorepeat; | ||
vdd-supply = <&ldo4_reg>; | ||
linux,keycodes = <KEY_0>, <KEY_1>, <KEY_2>, <KEY_3>, | ||
<KEY_4>, <KEY_5>, <KEY_6>, <KEY_7>, | ||
<KEY_8>, <KEY_9>, <KEY_A>, <KEY_B>; | ||
}; | ||
}; |
30 changes: 0 additions & 30 deletions
30
Documentation/devicetree/bindings/input/mpr121-touchkey.txt
This file was deleted.
Oops, something went wrong.