2 * Helpers for matrix keyboard bindings
4 * Copyright (C) 2012 Google, Inc
7 * Olof Johansson <olof@lixom.net>
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
20 #include <linux/device.h>
21 #include <linux/gfp.h>
22 #include <linux/kernel.h>
23 #include <linux/types.h>
24 #include <linux/input.h>
26 #include <linux/export.h>
27 #include <linux/module.h>
28 #include <linux/input/matrix_keypad.h>
30 static bool matrix_keypad_map_key(struct input_dev
*input_dev
,
31 unsigned int rows
, unsigned int cols
,
32 unsigned int row_shift
, unsigned int key
)
34 unsigned short *keymap
= input_dev
->keycode
;
35 unsigned int row
= KEY_ROW(key
);
36 unsigned int col
= KEY_COL(key
);
37 unsigned short code
= KEY_VAL(key
);
39 if (row
>= rows
|| col
>= cols
) {
40 dev_err(input_dev
->dev
.parent
,
41 "%s: invalid keymap entry 0x%x (row: %d, col: %d, rows: %d, cols: %d)\n",
42 __func__
, key
, row
, col
, rows
, cols
);
46 keymap
[MATRIX_SCAN_CODE(row
, col
, row_shift
)] = code
;
47 __set_bit(code
, input_dev
->keybit
);
53 int matrix_keypad_parse_of_params(struct device
*dev
,
54 unsigned int *rows
, unsigned int *cols
)
56 struct device_node
*np
= dev
->of_node
;
59 dev_err(dev
, "missing DT data");
62 of_property_read_u32(np
, "keypad,num-rows", rows
);
63 of_property_read_u32(np
, "keypad,num-columns", cols
);
64 if (!*rows
|| !*cols
) {
65 dev_err(dev
, "number of keypad rows/columns not specified\n");
71 EXPORT_SYMBOL_GPL(matrix_keypad_parse_of_params
);
73 static int matrix_keypad_parse_of_keymap(const char *propname
,
74 unsigned int rows
, unsigned int cols
,
75 struct input_dev
*input_dev
)
77 struct device
*dev
= input_dev
->dev
.parent
;
78 struct device_node
*np
= dev
->of_node
;
79 unsigned int row_shift
= get_count_order(cols
);
80 unsigned int max_keys
= rows
<< row_shift
;
81 unsigned int proplen
, i
, size
;
88 propname
= "linux,keymap";
90 prop
= of_get_property(np
, propname
, &proplen
);
92 dev_err(dev
, "OF: %s property not defined in %s\n",
93 propname
, np
->full_name
);
97 if (proplen
% sizeof(u32
)) {
98 dev_err(dev
, "OF: Malformed keycode property %s in %s\n",
99 propname
, np
->full_name
);
103 size
= proplen
/ sizeof(u32
);
104 if (size
> max_keys
) {
105 dev_err(dev
, "OF: %s size overflow\n", propname
);
109 for (i
= 0; i
< size
; i
++) {
110 unsigned int key
= be32_to_cpup(prop
+ i
);
112 if (!matrix_keypad_map_key(input_dev
, rows
, cols
,
120 static int matrix_keypad_parse_of_keymap(const char *propname
,
121 unsigned int rows
, unsigned int cols
,
122 struct input_dev
*input_dev
)
129 * matrix_keypad_build_keymap - convert platform keymap into matrix keymap
130 * @keymap_data: keymap supplied by the platform code
131 * @keymap_name: name of device tree property containing keymap (if device
132 * tree support is enabled).
133 * @rows: number of rows in target keymap array
134 * @cols: number of cols in target keymap array
135 * @keymap: expanded version of keymap that is suitable for use by
136 * matrix keyboard driver
137 * @input_dev: input devices for which we are setting up the keymap
139 * This function converts platform keymap (encoded with KEY() macro) into
140 * an array of keycodes that is suitable for using in a standard matrix
141 * keyboard driver that uses row and col as indices.
143 * If @keymap_data is not supplied and device tree support is enabled
144 * it will attempt load the keymap from property specified by @keymap_name
145 * argument (or "linux,keymap" if @keymap_name is %NULL).
147 * If @keymap is %NULL the function will automatically allocate managed
148 * block of memory to store the keymap. This memory will be associated with
149 * the parent device and automatically freed when device unbinds from the
152 * Callers are expected to set up input_dev->dev.parent before calling this
155 int matrix_keypad_build_keymap(const struct matrix_keymap_data
*keymap_data
,
156 const char *keymap_name
,
157 unsigned int rows
, unsigned int cols
,
158 unsigned short *keymap
,
159 struct input_dev
*input_dev
)
161 unsigned int row_shift
= get_count_order(cols
);
162 size_t max_keys
= rows
<< row_shift
;
166 if (WARN_ON(!input_dev
->dev
.parent
))
170 keymap
= devm_kzalloc(input_dev
->dev
.parent
,
171 max_keys
* sizeof(*keymap
),
174 dev_err(input_dev
->dev
.parent
,
175 "Unable to allocate memory for keymap");
180 input_dev
->keycode
= keymap
;
181 input_dev
->keycodesize
= sizeof(*keymap
);
182 input_dev
->keycodemax
= max_keys
;
184 __set_bit(EV_KEY
, input_dev
->evbit
);
187 for (i
= 0; i
< keymap_data
->keymap_size
; i
++) {
188 unsigned int key
= keymap_data
->keymap
[i
];
190 if (!matrix_keypad_map_key(input_dev
, rows
, cols
,
195 error
= matrix_keypad_parse_of_keymap(keymap_name
, rows
, cols
,
201 __clear_bit(KEY_RESERVED
, input_dev
->keybit
);
205 EXPORT_SYMBOL(matrix_keypad_build_keymap
);
207 MODULE_LICENSE("GPL");