Loading...
1/*
2 * Cobalt button interface driver.
3 *
4 * Copyright (C) 2007-2008 Yoichi Yuasa <yuasa@linux-mips.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20#include <linux/input-polldev.h>
21#include <linux/ioport.h>
22#include <linux/module.h>
23#include <linux/platform_device.h>
24#include <linux/slab.h>
25
26#define BUTTONS_POLL_INTERVAL 30 /* msec */
27#define BUTTONS_COUNT_THRESHOLD 3
28#define BUTTONS_STATUS_MASK 0xfe000000
29
30static const unsigned short cobalt_map[] = {
31 KEY_RESERVED,
32 KEY_RESTART,
33 KEY_LEFT,
34 KEY_UP,
35 KEY_DOWN,
36 KEY_RIGHT,
37 KEY_ENTER,
38 KEY_SELECT
39};
40
41struct buttons_dev {
42 struct input_polled_dev *poll_dev;
43 unsigned short keymap[ARRAY_SIZE(cobalt_map)];
44 int count[ARRAY_SIZE(cobalt_map)];
45 void __iomem *reg;
46};
47
48static void handle_buttons(struct input_polled_dev *dev)
49{
50 struct buttons_dev *bdev = dev->private;
51 struct input_dev *input = dev->input;
52 uint32_t status;
53 int i;
54
55 status = ~readl(bdev->reg) >> 24;
56
57 for (i = 0; i < ARRAY_SIZE(bdev->keymap); i++) {
58 if (status & (1U << i)) {
59 if (++bdev->count[i] == BUTTONS_COUNT_THRESHOLD) {
60 input_event(input, EV_MSC, MSC_SCAN, i);
61 input_report_key(input, bdev->keymap[i], 1);
62 input_sync(input);
63 }
64 } else {
65 if (bdev->count[i] >= BUTTONS_COUNT_THRESHOLD) {
66 input_event(input, EV_MSC, MSC_SCAN, i);
67 input_report_key(input, bdev->keymap[i], 0);
68 input_sync(input);
69 }
70 bdev->count[i] = 0;
71 }
72 }
73}
74
75static int cobalt_buttons_probe(struct platform_device *pdev)
76{
77 struct buttons_dev *bdev;
78 struct input_polled_dev *poll_dev;
79 struct input_dev *input;
80 struct resource *res;
81 int error, i;
82
83 bdev = kzalloc(sizeof(struct buttons_dev), GFP_KERNEL);
84 poll_dev = input_allocate_polled_device();
85 if (!bdev || !poll_dev) {
86 error = -ENOMEM;
87 goto err_free_mem;
88 }
89
90 memcpy(bdev->keymap, cobalt_map, sizeof(bdev->keymap));
91
92 poll_dev->private = bdev;
93 poll_dev->poll = handle_buttons;
94 poll_dev->poll_interval = BUTTONS_POLL_INTERVAL;
95
96 input = poll_dev->input;
97 input->name = "Cobalt buttons";
98 input->phys = "cobalt/input0";
99 input->id.bustype = BUS_HOST;
100 input->dev.parent = &pdev->dev;
101
102 input->keycode = bdev->keymap;
103 input->keycodemax = ARRAY_SIZE(bdev->keymap);
104 input->keycodesize = sizeof(unsigned short);
105
106 input_set_capability(input, EV_MSC, MSC_SCAN);
107 __set_bit(EV_KEY, input->evbit);
108 for (i = 0; i < ARRAY_SIZE(cobalt_map); i++)
109 __set_bit(bdev->keymap[i], input->keybit);
110 __clear_bit(KEY_RESERVED, input->keybit);
111
112 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
113 if (!res) {
114 error = -EBUSY;
115 goto err_free_mem;
116 }
117
118 bdev->poll_dev = poll_dev;
119 bdev->reg = ioremap(res->start, resource_size(res));
120 dev_set_drvdata(&pdev->dev, bdev);
121
122 error = input_register_polled_device(poll_dev);
123 if (error)
124 goto err_iounmap;
125
126 return 0;
127
128 err_iounmap:
129 iounmap(bdev->reg);
130 err_free_mem:
131 input_free_polled_device(poll_dev);
132 kfree(bdev);
133 return error;
134}
135
136static int cobalt_buttons_remove(struct platform_device *pdev)
137{
138 struct device *dev = &pdev->dev;
139 struct buttons_dev *bdev = dev_get_drvdata(dev);
140
141 input_unregister_polled_device(bdev->poll_dev);
142 input_free_polled_device(bdev->poll_dev);
143 iounmap(bdev->reg);
144 kfree(bdev);
145
146 return 0;
147}
148
149MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>");
150MODULE_DESCRIPTION("Cobalt button interface driver");
151MODULE_LICENSE("GPL");
152/* work with hotplug and coldplug */
153MODULE_ALIAS("platform:Cobalt buttons");
154
155static struct platform_driver cobalt_buttons_driver = {
156 .probe = cobalt_buttons_probe,
157 .remove = cobalt_buttons_remove,
158 .driver = {
159 .name = "Cobalt buttons",
160 },
161};
162module_platform_driver(cobalt_buttons_driver);
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Cobalt button interface driver.
4 *
5 * Copyright (C) 2007-2008 Yoichi Yuasa <yuasa@linux-mips.org>
6 */
7#include <linux/input-polldev.h>
8#include <linux/ioport.h>
9#include <linux/module.h>
10#include <linux/platform_device.h>
11#include <linux/slab.h>
12
13#define BUTTONS_POLL_INTERVAL 30 /* msec */
14#define BUTTONS_COUNT_THRESHOLD 3
15#define BUTTONS_STATUS_MASK 0xfe000000
16
17static const unsigned short cobalt_map[] = {
18 KEY_RESERVED,
19 KEY_RESTART,
20 KEY_LEFT,
21 KEY_UP,
22 KEY_DOWN,
23 KEY_RIGHT,
24 KEY_ENTER,
25 KEY_SELECT
26};
27
28struct buttons_dev {
29 struct input_polled_dev *poll_dev;
30 unsigned short keymap[ARRAY_SIZE(cobalt_map)];
31 int count[ARRAY_SIZE(cobalt_map)];
32 void __iomem *reg;
33};
34
35static void handle_buttons(struct input_polled_dev *dev)
36{
37 struct buttons_dev *bdev = dev->private;
38 struct input_dev *input = dev->input;
39 uint32_t status;
40 int i;
41
42 status = ~readl(bdev->reg) >> 24;
43
44 for (i = 0; i < ARRAY_SIZE(bdev->keymap); i++) {
45 if (status & (1U << i)) {
46 if (++bdev->count[i] == BUTTONS_COUNT_THRESHOLD) {
47 input_event(input, EV_MSC, MSC_SCAN, i);
48 input_report_key(input, bdev->keymap[i], 1);
49 input_sync(input);
50 }
51 } else {
52 if (bdev->count[i] >= BUTTONS_COUNT_THRESHOLD) {
53 input_event(input, EV_MSC, MSC_SCAN, i);
54 input_report_key(input, bdev->keymap[i], 0);
55 input_sync(input);
56 }
57 bdev->count[i] = 0;
58 }
59 }
60}
61
62static int cobalt_buttons_probe(struct platform_device *pdev)
63{
64 struct buttons_dev *bdev;
65 struct input_polled_dev *poll_dev;
66 struct input_dev *input;
67 struct resource *res;
68 int error, i;
69
70 bdev = kzalloc(sizeof(struct buttons_dev), GFP_KERNEL);
71 poll_dev = input_allocate_polled_device();
72 if (!bdev || !poll_dev) {
73 error = -ENOMEM;
74 goto err_free_mem;
75 }
76
77 memcpy(bdev->keymap, cobalt_map, sizeof(bdev->keymap));
78
79 poll_dev->private = bdev;
80 poll_dev->poll = handle_buttons;
81 poll_dev->poll_interval = BUTTONS_POLL_INTERVAL;
82
83 input = poll_dev->input;
84 input->name = "Cobalt buttons";
85 input->phys = "cobalt/input0";
86 input->id.bustype = BUS_HOST;
87 input->dev.parent = &pdev->dev;
88
89 input->keycode = bdev->keymap;
90 input->keycodemax = ARRAY_SIZE(bdev->keymap);
91 input->keycodesize = sizeof(unsigned short);
92
93 input_set_capability(input, EV_MSC, MSC_SCAN);
94 __set_bit(EV_KEY, input->evbit);
95 for (i = 0; i < ARRAY_SIZE(cobalt_map); i++)
96 __set_bit(bdev->keymap[i], input->keybit);
97 __clear_bit(KEY_RESERVED, input->keybit);
98
99 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
100 if (!res) {
101 error = -EBUSY;
102 goto err_free_mem;
103 }
104
105 bdev->poll_dev = poll_dev;
106 bdev->reg = ioremap(res->start, resource_size(res));
107 dev_set_drvdata(&pdev->dev, bdev);
108
109 error = input_register_polled_device(poll_dev);
110 if (error)
111 goto err_iounmap;
112
113 return 0;
114
115 err_iounmap:
116 iounmap(bdev->reg);
117 err_free_mem:
118 input_free_polled_device(poll_dev);
119 kfree(bdev);
120 return error;
121}
122
123static int cobalt_buttons_remove(struct platform_device *pdev)
124{
125 struct device *dev = &pdev->dev;
126 struct buttons_dev *bdev = dev_get_drvdata(dev);
127
128 input_unregister_polled_device(bdev->poll_dev);
129 input_free_polled_device(bdev->poll_dev);
130 iounmap(bdev->reg);
131 kfree(bdev);
132
133 return 0;
134}
135
136MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>");
137MODULE_DESCRIPTION("Cobalt button interface driver");
138MODULE_LICENSE("GPL");
139/* work with hotplug and coldplug */
140MODULE_ALIAS("platform:Cobalt buttons");
141
142static struct platform_driver cobalt_buttons_driver = {
143 .probe = cobalt_buttons_probe,
144 .remove = cobalt_buttons_remove,
145 .driver = {
146 .name = "Cobalt buttons",
147 },
148};
149module_platform_driver(cobalt_buttons_driver);