aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/of_keymap.c
blob: 061493d57682d43a416d1d4344832d95ac0f7700 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * Helpers for open firmware matrix keyboard bindings
 *
 * Copyright (C) 2012 Google, Inc
 *
 * Author:
 *	Olof Johansson <olof@lixom.net>
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/input.h>
#include <linux/of.h>
#include <linux/input/matrix_keypad.h>
#include <linux/export.h>
#include <linux/gfp.h>
#include <linux/slab.h>

struct matrix_keymap_data *
matrix_keyboard_of_fill_keymap(struct device_node *np,
			       const char *propname)
{
	struct matrix_keymap_data *kd;
	u32 *keymap;
	int proplen, i;
	const __be32 *prop;

	if (!np)
		return NULL;

	if (!propname)
		propname = "linux,keymap";

	prop = of_get_property(np, propname, &proplen);
	if (!prop)
		return NULL;

	if (proplen % sizeof(u32)) {
		pr_warn("Malformed keymap property %s in %s\n",
			propname, np->full_name);
		return NULL;
	}

	kd = kzalloc(sizeof(*kd), GFP_KERNEL);
	if (!kd)
		return NULL;

	kd->keymap = keymap = kzalloc(proplen, GFP_KERNEL);
	if (!kd->keymap) {
		kfree(kd);
		return NULL;
	}

	kd->keymap_size = proplen / sizeof(u32);

	for (i = 0; i < kd->keymap_size; i++) {
		u32 tmp = be32_to_cpup(prop + i);
		int key_code, row, col;

		row = (tmp >> 24) & 0xff;
		col = (tmp >> 16) & 0xff;
		key_code = tmp & 0xffff;
		keymap[i] = KEY(row, col, key_code);
	}

	return kd;
}
EXPORT_SYMBOL_GPL(matrix_keyboard_of_fill_keymap);

void matrix_keyboard_of_free_keymap(const struct matrix_keymap_data *kd)
{
	if (kd) {
		kfree(kd->keymap);
		kfree(kd);
	}
}
EXPORT_SYMBOL_GPL(matrix_keyboard_of_free_keymap);