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.
Prepare input updates for 5.16 merge window.
- Loading branch information
Showing
45 changed files
with
1,833 additions
and
460 deletions.
There are no files selected for viewing
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
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,61 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/input/cypress-sf.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Cypress StreetFighter touchkey controller | ||
|
||
maintainers: | ||
- Yassine Oudjana <[email protected]> | ||
|
||
allOf: | ||
- $ref: input.yaml# | ||
|
||
properties: | ||
compatible: | ||
const: cypress,sf3155 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
avdd-supply: | ||
description: Regulator for AVDD analog voltage | ||
|
||
vdd-supply: | ||
description: Regulator for VDD digital voltage | ||
|
||
linux,keycodes: | ||
minItems: 1 | ||
maxItems: 8 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
- avdd-supply | ||
- vdd-supply | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/input/input.h> | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
i2c { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
touchkey@28 { | ||
compatible = "cypress,sf3155"; | ||
reg = <0x28>; | ||
interrupt-parent = <&msmgpio>; | ||
interrupts = <77 IRQ_TYPE_EDGE_FALLING>; | ||
avdd-supply = <&vreg_l6a_1p8>; | ||
vdd-supply = <&vdd_3v2_tp>; | ||
linux,keycodes = <KEY_BACK KEY_MENU>; | ||
}; | ||
}; |
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 |
---|---|---|
|
@@ -4301,7 +4301,7 @@ CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER | |
M: Hans de Goede <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | ||
F: Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml | ||
F: drivers/input/touchscreen/chipone_icn8318.c | ||
|
||
CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER | ||
|
@@ -5006,6 +5006,13 @@ L: [email protected] | |
S: Maintained | ||
F: drivers/input/touchscreen/cy8ctma140.c | ||
|
||
CYPRESS STREETFIGHTER TOUCHKEYS DRIVER | ||
M: Yassine Oudjana <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: Documentation/devicetree/bindings/input/cypress-sf.yaml | ||
F: drivers/input/keyboard/cypress-sf.c | ||
|
||
CYTTSP TOUCHSCREEN DRIVER | ||
M: Linus Walleij <[email protected]> | ||
L: [email protected] | ||
|
@@ -7709,9 +7716,10 @@ F: drivers/media/usb/go7007/ | |
|
||
GOODIX TOUCHSCREEN | ||
M: Bastien Nocera <[email protected]> | ||
M: Hans de Goede <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/input/touchscreen/goodix.c | ||
F: drivers/input/touchscreen/goodix* | ||
|
||
GOOGLE ETHERNET DRIVERS | ||
M: Catherine Sullivan <[email protected]> | ||
|
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
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
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
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
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
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
Oops, something went wrong.