Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[linux-2.6-block.git] / include / linux / input / matrix_keypad.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
bab7614d
EM
2#ifndef _MATRIX_KEYPAD_H
3#define _MATRIX_KEYPAD_H
4
5#include <linux/types.h>
6#include <linux/input.h>
2cd36877 7#include <linux/of.h>
bab7614d 8
cfaea567
TS
9#define MATRIX_MAX_ROWS 32
10#define MATRIX_MAX_COLS 32
bab7614d
EM
11
12#define KEY(row, col, val) ((((row) & (MATRIX_MAX_ROWS - 1)) << 24) |\
13 (((col) & (MATRIX_MAX_COLS - 1)) << 16) |\
da1f026b 14 ((val) & 0xffff))
bab7614d
EM
15
16#define KEY_ROW(k) (((k) >> 24) & 0xff)
17#define KEY_COL(k) (((k) >> 16) & 0xff)
18#define KEY_VAL(k) ((k) & 0xffff)
19
d82f1c35
EM
20#define MATRIX_SCAN_CODE(row, col, row_shift) (((row) << (row_shift)) + (col))
21
bab7614d
EM
22/**
23 * struct matrix_keymap_data - keymap for matrix keyboards
24 * @keymap: pointer to array of uint32 values encoded with KEY() macro
25 * representing keymap
26 * @keymap_size: number of entries (initialized) in this keymap
bab7614d
EM
27 *
28 * This structure is supposed to be used by platform code to supply
29 * keymaps to drivers that implement matrix-like keypads/keyboards.
30 */
31struct matrix_keymap_data {
32 const uint32_t *keymap;
33 unsigned int keymap_size;
bab7614d
EM
34};
35
36/**
37 * struct matrix_keypad_platform_data - platform-dependent keypad data
38 * @keymap_data: pointer to &matrix_keymap_data
d82f1c35
EM
39 * @row_gpios: pointer to array of gpio numbers representing rows
40 * @col_gpios: pointer to array of gpio numbers reporesenting colums
bab7614d
EM
41 * @num_row_gpios: actual number of row gpios used by device
42 * @num_col_gpios: actual number of col gpios used by device
43 * @col_scan_delay_us: delay, measured in microseconds, that is
44 * needed before we can keypad after activating column gpio
45 * @debounce_ms: debounce interval in milliseconds
fb76dd10
LF
46 * @clustered_irq: may be specified if interrupts of all row/column GPIOs
47 * are bundled to one single irq
48 * @clustered_irq_flags: flags that are needed for the clustered irq
d69249f4
DT
49 * @active_low: gpio polarity
50 * @wakeup: controls whether the device should be set up as wakeup
51 * source
9d32c305 52 * @no_autorepeat: disable key autorepeat
aa0e26bb
DR
53 * @drive_inactive_cols: drive inactive columns during scan, rather than
54 * making them inputs.
bab7614d
EM
55 *
56 * This structure represents platform-specific data that use used by
57 * matrix_keypad driver to perform proper initialization.
58 */
59struct matrix_keypad_platform_data {
60 const struct matrix_keymap_data *keymap_data;
61
d82f1c35
EM
62 const unsigned int *row_gpios;
63 const unsigned int *col_gpios;
64
bab7614d
EM
65 unsigned int num_row_gpios;
66 unsigned int num_col_gpios;
67
68 unsigned int col_scan_delay_us;
69
70 /* key debounce interval in milli-second */
71 unsigned int debounce_ms;
72
fb76dd10
LF
73 unsigned int clustered_irq;
74 unsigned int clustered_irq_flags;
75
bab7614d
EM
76 bool active_low;
77 bool wakeup;
9d32c305 78 bool no_autorepeat;
aa0e26bb 79 bool drive_inactive_cols;
bab7614d
EM
80};
81
1932811f
DT
82int matrix_keypad_build_keymap(const struct matrix_keymap_data *keymap_data,
83 const char *keymap_name,
84 unsigned int rows, unsigned int cols,
85 unsigned short *keymap,
86 struct input_dev *input_dev);
aef01aad
DT
87int matrix_keypad_parse_properties(struct device *dev,
88 unsigned int *rows, unsigned int *cols);
77a53fd2 89
aef01aad 90#define matrix_keypad_parse_of_params matrix_keypad_parse_properties
43840415 91
bab7614d 92#endif /* _MATRIX_KEYPAD_H */