Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1606967
| Path | csiph.com!1.us.feeder.erje.net!2.us.feeder.erje.net!feeder.erje.net!2.eu.feeder.erje.net!news.etla.org!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | David Rivshin <drivshin@awxrd.com> |
| Newsgroups | linux.kernel |
| Subject | [PATCH] input: matrix_keypad: add option to drive inactive columns |
| Date | Wed, 22 Mar 2017 21:20:03 +0100 |
| Message-ID | <tnUTF-85w-41@gated-at.bofh.it> (permalink) |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=awxrd.com; h=cc :date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc:x-sasl-enc; s=fm1; bh=1lCfuWxP9+QhVVUO3DfhnF1Am4lxR3 /Z4V9kkeG+3tU=; b=OkNoWH++4Ce9sB0MMyYjzVE5/79AIBQiIuvkJuyNOif8MI araoJUyiehR3uL8JdsT7GuuqTk8uAcCh6WtwSI0hE0CrSKrBMi7HtRSKSFASZYuD EKSsg+yOBDx0gV9WkaiDgeM+5ag5KTbahF1nrYQj9i25Qq5qRpMWRMvez8W5Gf2q O7/LrIo/FmHfnTBv2J41Av58ZfpfXQmwCi7RUHIVoSjmJ20uoZdCx5dMtVImAXuV E78yOHaJ8suvvVDQt8DzznWrBG37T++U2FS365L3d6J0spRnSIKIUq39DgIV0vSV Kbll0gepV9pVPXKn4Ez/M4qsfJbI5mhqGd6LTpDg== |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=1lCfuW xP9+QhVVUO3DfhnF1Am4lxR3/Z4V9kkeG+3tU=; b=TT21wFwGMIK+anDmi25rKa bxEKOw5uce1X36QBkRzjoSeC8Kl+b+r4AvJY48uXYOXPjuMRK7v2S+ohEXC7bppk OOdAw8ESgm1k6N0/taXNAqj8FTJsBiRkah3vBd3vmYmWKmfauqW9lCjEtFOr51/x mzstlCdoG7+HINPA0yXYCjNtBDQ+kSIu7AxTrl/DMEi0Oi3brEoG5g3tQm9cOqto NRyxKfC7nKS1N3Los+6GEn7/M5BPnckQf6SCi26swcDcLQzwkC7FKuG3hdcPgZuS XYTXM3CoKdq7SxhQ6mZLP5f2/N8jGtq9z925sr4yUIEJcqBhZEBxX78rmYqwTFWg == |
| X-Me-Sender | <xms:xtvSWPRpLs1OcCLUl2KuzjRgmh-ATNzndXncMM3z1KRQC46phI-1zw> |
| X-Sasl-Enc | 4rQZxzvlXWrLLvE176U4Qy+UmMKH5NGLaallAYyWYSq+ 1490213829 |
| X-Mailer | git-send-email 2.9.3 |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 90 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | linux-input@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org |
| X-Original-Date | Wed, 22 Mar 2017 16:16:50 -0400 |
| X-Original-Message-ID | <20170322201650.9072-1-drivshin@awxrd.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1606967 |
Show key headers only | View raw
From: David Rivshin <DRivshin@allworx.com>
The gpio-matrix-keypad driver normally sets inactive columns as inputs
while scanning. This does not work for all hardware, which may require
the inactive columns to be actively driven in order to overcome any
pull-ups/downs on the columns.
Signed-off-by: David Rivshin <drivshin@allworx.com>
---
.../devicetree/bindings/input/gpio-matrix-keypad.txt | 2 ++
drivers/input/keyboard/matrix_keypad.c | 13 +++++++++----
include/linux/input/matrix_keypad.h | 3 +++
3 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt b/Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
index d0ea09b..570dc10 100644
--- a/Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
+++ b/Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
@@ -24,6 +24,8 @@ Optional Properties:
- 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 {
diff --git a/drivers/input/keyboard/matrix_keypad.c b/drivers/input/keyboard/matrix_keypad.c
index 18839cd..1f316d6 100644
--- a/drivers/input/keyboard/matrix_keypad.c
+++ b/drivers/input/keyboard/matrix_keypad.c
@@ -42,9 +42,10 @@ struct matrix_keypad {
};
/*
- * NOTE: normally the GPIO has to be put into HiZ when de-activated to cause
- * minmal side effect when scanning other columns, here it is configured to
- * be input, and it should work on most platforms.
+ * NOTE: If drive_inactive_cols is false, then the GPIO has to be put into
+ * HiZ when de-activated to cause minmal side effect when scanning other
+ * columns. In that case it is configured here to be input, otherwise it is
+ * driven with the inactive value.
*/
static void __activate_col(const struct matrix_keypad_platform_data *pdata,
int col, bool on)
@@ -55,7 +56,8 @@ static void __activate_col(const struct matrix_keypad_platform_data *pdata,
gpio_direction_output(pdata->col_gpios[col], level_on);
} else {
gpio_set_value_cansleep(pdata->col_gpios[col], !level_on);
- gpio_direction_input(pdata->col_gpios[col]);
+ if (!pdata->drive_inactive_cols)
+ gpio_direction_input(pdata->col_gpios[col]);
}
}
@@ -432,6 +434,9 @@ matrix_keypad_parse_dt(struct device *dev)
if (of_get_property(np, "gpio-activelow", NULL))
pdata->active_low = true;
+ pdata->drive_inactive_cols =
+ of_property_read_bool(np, "drive-inactive-cols");
+
of_property_read_u32(np, "debounce-delay-ms", &pdata->debounce_ms);
of_property_read_u32(np, "col-scan-delay-us",
&pdata->col_scan_delay_us);
diff --git a/include/linux/input/matrix_keypad.h b/include/linux/input/matrix_keypad.h
index 37b04a0..6174733 100644
--- a/include/linux/input/matrix_keypad.h
+++ b/include/linux/input/matrix_keypad.h
@@ -49,6 +49,8 @@ struct matrix_keymap_data {
* @wakeup: controls whether the device should be set up as wakeup
* source
* @no_autorepeat: disable key autorepeat
+ * @drive_inactive_cols: drive inactive columns during scan, rather than
+ * making them inputs.
*
* This structure represents platform-specific data that use used by
* matrix_keypad driver to perform proper initialization.
@@ -73,6 +75,7 @@ struct matrix_keypad_platform_data {
bool active_low;
bool wakeup;
bool no_autorepeat;
+ bool drive_inactive_cols;
};
int matrix_keypad_build_keymap(const struct matrix_keymap_data *keymap_data,
--
2.9.3
base-commit: c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] input: matrix_keypad: add option to drive inactive columns David Rivshin <drivshin@awxrd.com> - 2017-03-22 21:20 +0100
csiph-web