mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
*-supply properties are always a single phandle, so binding schemas don't need a type $ref nor 'maxItems'. A meta-schema check for this is pending once these existing cases are fixed. Cc: Jonathan Cameron <jic23@kernel.org> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: Mauro Carvalho Chehab <mchehab@kernel.org> Cc: Maxime Ripard <mripard@kernel.org> Cc: dri-devel@lists.freedesktop.org Cc: linux-iio@vger.kernel.org Cc: linux-input@vger.kernel.org Cc: linux-media@vger.kernel.org Acked-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com> Acked-by: Lee Jones <lee.jones@linaro.org> Acked-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20201221234659.824881-1-robh@kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
91 lines
2.1 KiB
YAML
91 lines
2.1 KiB
YAML
# 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 <dmitry.torokhov@gmail.com>
|
|
|
|
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#
|
|
|
|
anyOf:
|
|
- required: [ interrupts ]
|
|
- required: [ poll-interval ]
|
|
|
|
properties:
|
|
compatible:
|
|
const: fsl,mpr121-touchkey
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
vdd-supply: true
|
|
|
|
linux,keycodes:
|
|
minItems: 1
|
|
maxItems: 12
|
|
|
|
wakeup-source:
|
|
description: Use any event on keypad as wakeup event.
|
|
type: boolean
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- vdd-supply
|
|
- linux,keycodes
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
// Example with interrupts
|
|
#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>;
|
|
};
|
|
};
|
|
|
|
- |
|
|
// Example with polling
|
|
#include "dt-bindings/input/input.h"
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
mpr121@5a {
|
|
compatible = "fsl,mpr121-touchkey";
|
|
reg = <0x5a>;
|
|
poll-interval = <20>;
|
|
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>;
|
|
};
|
|
};
|