* [PATCH v4 0/7] Input: matrix-keypad: Various performance improvements
@ 2025-01-08 13:45 Markus Burri
2025-01-08 13:45 ` [PATCH v4 1/7] Input: matrix_keypad - use fsleep for variable delay duration Markus Burri
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Markus Burri @ 2025-01-08 13:45 UTC (permalink / raw)
To: linux-kernel
Cc: Markus Burri, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Marek Vasut, linux-input, devicetree, Manuel Traut
This series is needed to avoid key-loss if the GPIOs are connected via a
I2C GPIO MUX that introduces additional latencies between key change and
matrix scan.
This series applies on 6.13-rc6
Changes in V4:
* deprecate gpio-activelow in gpio-matrix-keypad.yaml
* change reference to linux,keymap in gpio-matrix-keypad.yaml
Changes in V3:
* fix 'references a file that doesn't exist' in wakeup-source.txt
* remove copied and deprecated properties from gpio-matrix-keypad.yaml
* extend patch description to clarify the changes
* rebase to 6.13-rc6
Changes in V2:
* added patch to convert dt-bindings to YAML
* added missing dt-bindings properties description
* removed [PATCH 1/6] Input: matrix_keypad - move gpio-row init to the init
it would revert 01c84b03d80aab9f04c4e3e1f9085f4202ff7c29
* removed internally given Tested-by and Reviewed-by tags
V3: https://lore.kernel.org/lkml/20250107135659.185293-1-markus.burri@mt.com/
V2:https://lore.kernel.org/lkml/20241105130322.213623-1-markus.burri@mt.com/
V1:https://lore.kernel.org/lkml/20241031063004.69956-1-markus.burri@mt.com/
---
Markus Burri (7):
Input: matrix_keypad - use fsleep for variable delay duration
Input: matrix_keypad - add function for reading row state
dt-bindings: input: matrix_keypad - convert to YAML
dt-bindings: input: matrix_keypad - add missing property
dt-bindings: input: matrix_keypad - add settle time after enable all
columns
Input: matrix_keypad - add settle time after enable all columns
Input: matrix_keypad - detect change during scan
.../bindings/input/gpio-matrix-keypad.txt | 49 ---------
.../bindings/input/gpio-matrix-keypad.yaml | 100 ++++++++++++++++++
.../bindings/power/wakeup-source.txt | 2 +-
drivers/input/keyboard/matrix_keypad.c | 38 ++++++-
4 files changed, 135 insertions(+), 54 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
create mode 100644 Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
--
2.39.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v4 1/7] Input: matrix_keypad - use fsleep for variable delay duration
2025-01-08 13:45 [PATCH v4 0/7] Input: matrix-keypad: Various performance improvements Markus Burri
@ 2025-01-08 13:45 ` Markus Burri
2025-01-08 13:45 ` [PATCH v4 2/7] Input: matrix_keypad - add function for reading row state Markus Burri
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Markus Burri @ 2025-01-08 13:45 UTC (permalink / raw)
To: linux-kernel
Cc: Markus Burri, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Marek Vasut, linux-input, devicetree, Manuel Traut
The delay is retrieved from a device-tree property, so the duration is
variable. fsleep guesses the best delay function based on duration.
Link: https://www.kernel.org/doc/html/latest/timers/timers-howto.html
Signed-off-by: Markus Burri <markus.burri@mt.com>
---
drivers/input/keyboard/matrix_keypad.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/keyboard/matrix_keypad.c b/drivers/input/keyboard/matrix_keypad.c
index 2a3b3bf..5571d2e 100644
--- a/drivers/input/keyboard/matrix_keypad.c
+++ b/drivers/input/keyboard/matrix_keypad.c
@@ -68,7 +68,7 @@ static void activate_col(struct matrix_keypad *keypad, int col, bool on)
__activate_col(keypad, col, on);
if (on && keypad->col_scan_delay_us)
- udelay(keypad->col_scan_delay_us);
+ fsleep(keypad->col_scan_delay_us);
}
static void activate_all_cols(struct matrix_keypad *keypad, bool on)
--
2.39.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v4 2/7] Input: matrix_keypad - add function for reading row state
2025-01-08 13:45 [PATCH v4 0/7] Input: matrix-keypad: Various performance improvements Markus Burri
2025-01-08 13:45 ` [PATCH v4 1/7] Input: matrix_keypad - use fsleep for variable delay duration Markus Burri
@ 2025-01-08 13:45 ` Markus Burri
2025-01-08 13:45 ` [PATCH v4 3/7] dt-bindings: input: matrix_keypad - convert to YAML Markus Burri
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Markus Burri @ 2025-01-08 13:45 UTC (permalink / raw)
To: linux-kernel
Cc: Markus Burri, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Marek Vasut, linux-input, devicetree, Manuel Traut
Move the evaluation of a row state into separate function.
It will be also used by a change later in this series.
Signed-off-by: Markus Burri <markus.burri@mt.com>
---
drivers/input/keyboard/matrix_keypad.c | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/drivers/input/keyboard/matrix_keypad.c b/drivers/input/keyboard/matrix_keypad.c
index 5571d2e..90148d3 100644
--- a/drivers/input/keyboard/matrix_keypad.c
+++ b/drivers/input/keyboard/matrix_keypad.c
@@ -100,6 +100,16 @@ static void disable_row_irqs(struct matrix_keypad *keypad)
disable_irq_nosync(keypad->row_irqs[i]);
}
+static uint32_t read_row_state(struct matrix_keypad *keypad)
+{
+ int row;
+ u32 row_state = 0;
+
+ for (row = 0; row < keypad->num_row_gpios; row++)
+ row_state |= row_asserted(keypad, row) ? BIT(row) : 0;
+ return row_state;
+}
+
/*
* This gets the keys from keyboard and reports it to input subsystem
*/
@@ -125,9 +135,7 @@ static void matrix_keypad_scan(struct work_struct *work)
activate_col(keypad, col, true);
- for (row = 0; row < keypad->num_row_gpios; row++)
- new_state[col] |=
- row_asserted(keypad, row) ? BIT(row) : 0;
+ new_state[col] = read_row_state(keypad);
activate_col(keypad, col, false);
}
--
2.39.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v4 3/7] dt-bindings: input: matrix_keypad - convert to YAML
2025-01-08 13:45 [PATCH v4 0/7] Input: matrix-keypad: Various performance improvements Markus Burri
2025-01-08 13:45 ` [PATCH v4 1/7] Input: matrix_keypad - use fsleep for variable delay duration Markus Burri
2025-01-08 13:45 ` [PATCH v4 2/7] Input: matrix_keypad - add function for reading row state Markus Burri
@ 2025-01-08 13:45 ` Markus Burri
2025-01-08 13:45 ` [PATCH v4 4/7] dt-bindings: input: matrix_keypad - add missing property Markus Burri
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Markus Burri @ 2025-01-08 13:45 UTC (permalink / raw)
To: linux-kernel
Cc: Markus Burri, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Marek Vasut, linux-input, devicetree, Manuel Traut
Convert the gpio-matrix-keypad bindings from text to DT schema.
Signed-off-by: Markus Burri <markus.burri@mt.com>
---
.../bindings/input/gpio-matrix-keypad.txt | 49 -----------
.../bindings/input/gpio-matrix-keypad.yaml | 88 +++++++++++++++++++
.../bindings/power/wakeup-source.txt | 2 +-
3 files changed, 89 insertions(+), 50 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
create mode 100644 Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
diff --git a/Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt b/Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
deleted file mode 100644
index 570dc10..0000000
--- a/Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
+++ /dev/null
@@ -1,49 +0,0 @@
-* GPIO driven matrix keypad device tree bindings
-
-GPIO driven matrix keypad is used to interface a SoC with a matrix keypad.
-The matrix keypad supports multiple row and column lines, a key can be
-placed at each intersection of a unique row and a unique column. The matrix
-keypad can sense a key-press and key-release by means of GPIO lines and
-report the event using GPIO interrupts to the cpu.
-
-Required Properties:
-- compatible: Should be "gpio-matrix-keypad"
-- row-gpios: List of gpios used as row lines. The gpio specifier
- for this property depends on the gpio controller to
- which these row lines are connected.
-- col-gpios: List of gpios used as column lines. The gpio specifier
- for this property depends on the gpio controller to
- which these column lines are connected.
-- linux,keymap: The definition can be found at
- bindings/input/matrix-keymap.txt
-
-Optional Properties:
-- linux,no-autorepeat: do no enable autorepeat feature.
-- wakeup-source: use any event on keypad as wakeup event.
- (Legacy property supported: "linux,wakeup")
-- debounce-delay-ms: debounce interval in milliseconds
-- col-scan-delay-us: delay, measured in microseconds, that is needed
- before we can scan keypad after activating column gpio
-- drive-inactive-cols: drive inactive columns during scan,
- default is to turn inactive columns into inputs.
-
-Example:
- matrix-keypad {
- compatible = "gpio-matrix-keypad";
- debounce-delay-ms = <5>;
- col-scan-delay-us = <2>;
-
- row-gpios = <&gpio2 25 0
- &gpio2 26 0
- &gpio2 27 0>;
-
- col-gpios = <&gpio2 21 0
- &gpio2 22 0>;
-
- linux,keymap = <0x0000008B
- 0x0100009E
- 0x02000069
- 0x0001006A
- 0x0101001C
- 0x0201006C>;
- };
diff --git a/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml b/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
new file mode 100644
index 0000000..0f348b9
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
@@ -0,0 +1,88 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+
+$id: http://devicetree.org/schemas/input/gpio-matrix-keypad.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: GPIO matrix keypad
+
+maintainers:
+ - Marek Vasut <marek.vasut@gmail.com>
+
+description:
+ GPIO driven matrix keypad is used to interface a SoC with a matrix keypad.
+ The matrix keypad supports multiple row and column lines, a key can be
+ placed at each intersection of a unique row and a unique column. The matrix
+ keypad can sense a key-press and key-release by means of GPIO lines and
+ report the event using GPIO interrupts to the cpu.
+
+allOf:
+ - $ref: /schemas/input/matrix-keymap.yaml#
+
+properties:
+ compatible:
+ const: gpio-matrix-keypad
+
+ row-gpios:
+ description:
+ List of GPIOs used as row lines. The gpio specifier for this property
+ depends on the gpio controller to which these row lines are connected.
+
+ col-gpios:
+ description:
+ List of GPIOs used as column lines. The gpio specifier for this property
+ depends on the gpio controller to which these column lines are connected.
+
+ linux,keymap: true
+
+ linux,no-autorepeat:
+ type: boolean
+ description: Do not enable autorepeat feature.
+
+
+ debounce-delay-ms:
+ description: Debounce interval in milliseconds.
+ default: 0
+
+ col-scan-delay-us:
+ description:
+ Delay, measured in microseconds, that is needed
+ before we can scan keypad after activating column gpio.
+ default: 0
+
+ drive-inactive-cols:
+ type: boolean
+ description:
+ Drive inactive columns during scan,
+ default is to turn inactive columns into inputs.
+
+required:
+ - compatible
+ - row-gpios
+ - col-gpios
+ - linux,keymap
+
+additionalProperties: false
+
+examples:
+ - |
+ matrix-keypad {
+ compatible = "gpio-matrix-keypad";
+ debounce-delay-ms = <5>;
+ col-scan-delay-us = <2>;
+
+ row-gpios = <&gpio2 25 0
+ &gpio2 26 0
+ &gpio2 27 0>;
+
+ col-gpios = <&gpio2 21 0
+ &gpio2 22 0>;
+
+ linux,keymap = <0x0000008B
+ 0x0100009E
+ 0x02000069
+ 0x0001006A
+ 0x0101001C
+ 0x0201006C>;
+ };
diff --git a/Documentation/devicetree/bindings/power/wakeup-source.txt b/Documentation/devicetree/bindings/power/wakeup-source.txt
index 27f1797..66bb016 100644
--- a/Documentation/devicetree/bindings/power/wakeup-source.txt
+++ b/Documentation/devicetree/bindings/power/wakeup-source.txt
@@ -23,7 +23,7 @@ List of legacy properties and respective binding document
1. "gpio-key,wakeup" Documentation/devicetree/bindings/input/gpio-keys{,-polled}.txt
2. "has-tpo" Documentation/devicetree/bindings/rtc/rtc-opal.txt
-3. "linux,wakeup" Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
+3. "linux,wakeup" Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
Documentation/devicetree/bindings/mfd/tc3589x.txt
Documentation/devicetree/bindings/input/touchscreen/ti,ads7843.yaml
4. "linux,keypad-wakeup" Documentation/devicetree/bindings/input/qcom,pm8921-keypad.yaml
--
2.39.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v4 4/7] dt-bindings: input: matrix_keypad - add missing property
2025-01-08 13:45 [PATCH v4 0/7] Input: matrix-keypad: Various performance improvements Markus Burri
` (2 preceding siblings ...)
2025-01-08 13:45 ` [PATCH v4 3/7] dt-bindings: input: matrix_keypad - convert to YAML Markus Burri
@ 2025-01-08 13:45 ` Markus Burri
2025-01-08 13:45 ` [PATCH v4 5/7] dt-bindings: input: matrix_keypad - add settle time after enable all columns Markus Burri
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Markus Burri @ 2025-01-08 13:45 UTC (permalink / raw)
To: linux-kernel
Cc: Markus Burri, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Marek Vasut, linux-input, devicetree, Manuel Traut
The property is implemented in the driver but not described in dt-bindings.
Add missing property 'gpio-activelow' to DT schema.
Signed-off-by: Markus Burri <markus.burri@mt.com>
---
.../devicetree/bindings/input/gpio-matrix-keypad.yaml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml b/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
index 0f348b9..0555c1e 100644
--- a/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
+++ b/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
@@ -40,6 +40,12 @@ properties:
type: boolean
description: Do not enable autorepeat feature.
+ gpio-activelow:
+ type: boolean
+ deprecated: true
+ description:
+ The GPIOs are low active (deprecated).
+ Use the GPIO-flags in gpio controller instead of this property.
debounce-delay-ms:
description: Debounce interval in milliseconds.
--
2.39.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v4 5/7] dt-bindings: input: matrix_keypad - add settle time after enable all columns
2025-01-08 13:45 [PATCH v4 0/7] Input: matrix-keypad: Various performance improvements Markus Burri
` (3 preceding siblings ...)
2025-01-08 13:45 ` [PATCH v4 4/7] dt-bindings: input: matrix_keypad - add missing property Markus Burri
@ 2025-01-08 13:45 ` Markus Burri
2025-01-08 13:45 ` [PATCH v4 6/7] Input: " Markus Burri
2025-01-08 13:45 ` [PATCH v4 7/7] Input: matrix_keypad - detect change during scan Markus Burri
6 siblings, 0 replies; 8+ messages in thread
From: Markus Burri @ 2025-01-08 13:45 UTC (permalink / raw)
To: linux-kernel
Cc: Markus Burri, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Marek Vasut, linux-input, devicetree, Manuel Traut
Matrix_keypad with high capacity need a longer settle time after enable
all columns.
Add optional property to specify the settle time
Signed-off-by: Markus Burri <markus.burri@mt.com>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
---
.../devicetree/bindings/input/gpio-matrix-keypad.yaml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml b/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
index 0555c1e..408474e 100644
--- a/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
+++ b/Documentation/devicetree/bindings/input/gpio-matrix-keypad.yaml
@@ -57,6 +57,12 @@ properties:
before we can scan keypad after activating column gpio.
default: 0
+ all-cols-on-delay-us:
+ description:
+ Delay, measured in microseconds, that is needed
+ after activating all column gpios.
+ default: 0
+
drive-inactive-cols:
type: boolean
description:
--
2.39.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v4 6/7] Input: matrix_keypad - add settle time after enable all columns
2025-01-08 13:45 [PATCH v4 0/7] Input: matrix-keypad: Various performance improvements Markus Burri
` (4 preceding siblings ...)
2025-01-08 13:45 ` [PATCH v4 5/7] dt-bindings: input: matrix_keypad - add settle time after enable all columns Markus Burri
@ 2025-01-08 13:45 ` Markus Burri
2025-01-08 13:45 ` [PATCH v4 7/7] Input: matrix_keypad - detect change during scan Markus Burri
6 siblings, 0 replies; 8+ messages in thread
From: Markus Burri @ 2025-01-08 13:45 UTC (permalink / raw)
To: linux-kernel
Cc: Markus Burri, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Marek Vasut, linux-input, devicetree, Manuel Traut
Matrix_keypad with high capacity need a longer settle time after enable
all columns and re-enabling interrupts.
This to give time stable the system and not generate interrupts.
Add a new optional device-tree property to configure the time before
enabling interrupts after disable all columns.
The default is no delay.
Signed-off-by: Markus Burri <markus.burri@mt.com>
---
drivers/input/keyboard/matrix_keypad.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/input/keyboard/matrix_keypad.c b/drivers/input/keyboard/matrix_keypad.c
index 90148d3..fdb3499 100644
--- a/drivers/input/keyboard/matrix_keypad.c
+++ b/drivers/input/keyboard/matrix_keypad.c
@@ -26,6 +26,7 @@ struct matrix_keypad {
unsigned int row_shift;
unsigned int col_scan_delay_us;
+ unsigned int all_cols_on_delay_us;
/* key debounce interval in milli-second */
unsigned int debounce_ms;
bool drive_inactive_cols;
@@ -77,6 +78,9 @@ static void activate_all_cols(struct matrix_keypad *keypad, bool on)
for (col = 0; col < keypad->num_col_gpios; col++)
__activate_col(keypad, col, on);
+
+ if (on && keypad->all_cols_on_delay_us)
+ fsleep(keypad->all_cols_on_delay_us);
}
static bool row_asserted(struct matrix_keypad *keypad, int row)
@@ -400,6 +404,8 @@ static int matrix_keypad_probe(struct platform_device *pdev)
&keypad->debounce_ms);
device_property_read_u32(&pdev->dev, "col-scan-delay-us",
&keypad->col_scan_delay_us);
+ device_property_read_u32(&pdev->dev, "all-cols-on-delay-us",
+ &keypad->all_cols_on_delay_us);
err = matrix_keypad_init_gpio(pdev, keypad);
if (err)
--
2.39.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v4 7/7] Input: matrix_keypad - detect change during scan
2025-01-08 13:45 [PATCH v4 0/7] Input: matrix-keypad: Various performance improvements Markus Burri
` (5 preceding siblings ...)
2025-01-08 13:45 ` [PATCH v4 6/7] Input: " Markus Burri
@ 2025-01-08 13:45 ` Markus Burri
6 siblings, 0 replies; 8+ messages in thread
From: Markus Burri @ 2025-01-08 13:45 UTC (permalink / raw)
To: linux-kernel
Cc: Markus Burri, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Marek Vasut, linux-input, devicetree, Manuel Traut
For a setup where the matrix keypad is connected over a slow interface
(e.g. a gpio-expansion over i2c), the scan can take a longer time to read.
Interrupts need to be disabled during scan. And therefore changes in this
period are not detected.
To improve this situation, scan the matrix again if the row state changed
during interrupts disabled.
The rescan is repeated until no change is detected anymore.
Signed-off-by: Markus Burri <markus.burri@mt.com>
---
drivers/input/keyboard/matrix_keypad.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/input/keyboard/matrix_keypad.c b/drivers/input/keyboard/matrix_keypad.c
index fdb3499..86ae4df 100644
--- a/drivers/input/keyboard/matrix_keypad.c
+++ b/drivers/input/keyboard/matrix_keypad.c
@@ -125,6 +125,10 @@ static void matrix_keypad_scan(struct work_struct *work)
const unsigned short *keycodes = input_dev->keycode;
uint32_t new_state[MATRIX_MAX_COLS];
int row, col, code;
+ u32 init_row_state, new_row_state;
+
+ /* read initial row state to detect changes between scan */
+ init_row_state = read_row_state(keypad);
/* de-activate all columns for scanning */
activate_all_cols(keypad, false);
@@ -173,6 +177,18 @@ static void matrix_keypad_scan(struct work_struct *work)
keypad->scan_pending = false;
enable_row_irqs(keypad);
}
+
+ /* read new row state and detect if value has changed */
+ new_row_state = read_row_state(keypad);
+ if (init_row_state != new_row_state) {
+ guard(spinlock_irq)(&keypad->lock)
+ if (unlikely(keypad->scan_pending || keypad->stopped))
+ return;
+ disable_row_irqs(keypad);
+ keypad->scan_pending = true;
+ schedule_delayed_work(&keypad->work,
+ msecs_to_jiffies(keypad->debounce_ms));
+ }
}
static irqreturn_t matrix_keypad_interrupt(int irq, void *id)
--
2.39.5
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-01-08 13:46 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-08 13:45 [PATCH v4 0/7] Input: matrix-keypad: Various performance improvements Markus Burri
2025-01-08 13:45 ` [PATCH v4 1/7] Input: matrix_keypad - use fsleep for variable delay duration Markus Burri
2025-01-08 13:45 ` [PATCH v4 2/7] Input: matrix_keypad - add function for reading row state Markus Burri
2025-01-08 13:45 ` [PATCH v4 3/7] dt-bindings: input: matrix_keypad - convert to YAML Markus Burri
2025-01-08 13:45 ` [PATCH v4 4/7] dt-bindings: input: matrix_keypad - add missing property Markus Burri
2025-01-08 13:45 ` [PATCH v4 5/7] dt-bindings: input: matrix_keypad - add settle time after enable all columns Markus Burri
2025-01-08 13:45 ` [PATCH v4 6/7] Input: " Markus Burri
2025-01-08 13:45 ` [PATCH v4 7/7] Input: matrix_keypad - detect change during scan Markus Burri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®