blob: 24096cdfcb6ffcb4d7c53b9cd0c87e4a42769e4f [file] [log] [blame]
Wan ZongShun4a152352009-08-09 21:22:22 -07001/*
2 * Copyright (c) 2008-2009 Nuvoton technology corporation.
3 *
4 * Wan ZongShun <mcuos.com@gmail.com>
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;version 2 of the License.
9 *
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/interrupt.h>
16#include <linux/input.h>
17#include <linux/device.h>
18#include <linux/platform_device.h>
19#include <linux/clk.h>
20#include <linux/err.h>
21#include <linux/io.h>
22
23#include <mach/w90p910_keypad.h>
24
25/* Keypad Interface Control Registers */
26#define KPI_CONF 0x00
27#define KPI_3KCONF 0x04
28#define KPI_LPCONF 0x08
29#define KPI_STATUS 0x0C
30
31#define IS1KEY (0x01 << 16)
32#define INTTR (0x01 << 21)
33#define KEY0R (0x0f << 3)
34#define KEY0C 0x07
35#define DEBOUNCE_BIT 0x08
36#define KSIZE0 (0x01 << 16)
37#define KSIZE1 (0x01 << 17)
38#define KPSEL (0x01 << 19)
39#define ENKP (0x01 << 18)
40
41#define KGET_RAW(n) (((n) & KEY0R) >> 3)
42#define KGET_COLUMN(n) ((n) & KEY0C)
43
Dmitry Torokhov09113ae2009-08-09 21:22:22 -070044#define W90P910_MAX_KEY_NUM (8 * 8)
45#define W90P910_ROW_SHIFT 3
Wan ZongShun4a152352009-08-09 21:22:22 -070046
47struct w90p910_keypad {
Dmitry Torokhov09113ae2009-08-09 21:22:22 -070048 const struct w90p910_keypad_platform_data *pdata;
Wan ZongShun4a152352009-08-09 21:22:22 -070049 struct clk *clk;
50 struct input_dev *input_dev;
51 void __iomem *mmio_base;
52 int irq;
Dmitry Torokhov09113ae2009-08-09 21:22:22 -070053 unsigned short keymap[W90P910_MAX_KEY_NUM];
Wan ZongShun4a152352009-08-09 21:22:22 -070054};
55
Wan ZongShun4a152352009-08-09 21:22:22 -070056static void w90p910_keypad_scan_matrix(struct w90p910_keypad *keypad,
57 unsigned int status)
58{
Dmitry Torokhov09113ae2009-08-09 21:22:22 -070059 struct input_dev *input_dev = keypad->input_dev;
60 unsigned int row = KGET_RAW(status);
61 unsigned int col = KGET_COLUMN(status);
62 unsigned int code = MATRIX_SCAN_CODE(row, col, W90P910_ROW_SHIFT);
63 unsigned int key = keypad->keymap[code];
Wan ZongShun4a152352009-08-09 21:22:22 -070064
Dmitry Torokhov09113ae2009-08-09 21:22:22 -070065 input_event(input_dev, EV_MSC, MSC_SCAN, code);
66 input_report_key(input_dev, key, 1);
67 input_sync(input_dev);
Wan ZongShun4a152352009-08-09 21:22:22 -070068
Dmitry Torokhov09113ae2009-08-09 21:22:22 -070069 input_event(input_dev, EV_MSC, MSC_SCAN, code);
70 input_report_key(input_dev, key, 0);
71 input_sync(input_dev);
Wan ZongShun4a152352009-08-09 21:22:22 -070072}
73
74static irqreturn_t w90p910_keypad_irq_handler(int irq, void *dev_id)
75{
76 struct w90p910_keypad *keypad = dev_id;
77 unsigned int kstatus, val;
78
79 kstatus = __raw_readl(keypad->mmio_base + KPI_STATUS);
80
81 val = INTTR | IS1KEY;
82
83 if (kstatus & val)
84 w90p910_keypad_scan_matrix(keypad, kstatus);
85
86 return IRQ_HANDLED;
87}
88
89static int w90p910_keypad_open(struct input_dev *dev)
90{
91 struct w90p910_keypad *keypad = input_get_drvdata(dev);
Dmitry Torokhov09113ae2009-08-09 21:22:22 -070092 const struct w90p910_keypad_platform_data *pdata = keypad->pdata;
Wan ZongShun4a152352009-08-09 21:22:22 -070093 unsigned int val, config;
94
95 /* Enable unit clock */
96 clk_enable(keypad->clk);
97
98 val = __raw_readl(keypad->mmio_base + KPI_CONF);
99 val |= (KPSEL | ENKP);
100 val &= ~(KSIZE0 | KSIZE1);
101
102 config = pdata->prescale | (pdata->debounce << DEBOUNCE_BIT);
103
104 val |= config;
105
106 __raw_writel(val, keypad->mmio_base + KPI_CONF);
107
108 return 0;
109}
110
111static void w90p910_keypad_close(struct input_dev *dev)
112{
113 struct w90p910_keypad *keypad = input_get_drvdata(dev);
114
115 /* Disable clock unit */
116 clk_disable(keypad->clk);
117}
118
119static int __devinit w90p910_keypad_probe(struct platform_device *pdev)
120{
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700121 const struct w90p910_keypad_platform_data *pdata =
122 pdev->dev.platform_data;
123 const struct matrix_keymap_data *keymap_data = pdata->keymap_data;
Wan ZongShun4a152352009-08-09 21:22:22 -0700124 struct w90p910_keypad *keypad;
125 struct input_dev *input_dev;
126 struct resource *res;
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700127 int irq;
128 int error;
129 int i;
Wan ZongShun4a152352009-08-09 21:22:22 -0700130
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700131 if (!pdata) {
Wan ZongShun4a152352009-08-09 21:22:22 -0700132 dev_err(&pdev->dev, "no platform data defined\n");
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700133 return -EINVAL;
Wan ZongShun4a152352009-08-09 21:22:22 -0700134 }
135
136 irq = platform_get_irq(pdev, 0);
137 if (irq < 0) {
138 dev_err(&pdev->dev, "failed to get keypad irq\n");
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700139 return -ENXIO;
140 }
141
142 keypad = kzalloc(sizeof(struct w90p910_keypad), GFP_KERNEL);
143 input_dev = input_allocate_device();
144 if (!keypad || !input_dev) {
145 dev_err(&pdev->dev, "failed to allocate driver data\n");
146 error = -ENOMEM;
Wan ZongShun4a152352009-08-09 21:22:22 -0700147 goto failed_free;
148 }
149
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700150 keypad->pdata = pdata;
151 keypad->input_dev = input_dev;
152 keypad->irq = irq;
153
Wan ZongShun4a152352009-08-09 21:22:22 -0700154 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
155 if (res == NULL) {
156 dev_err(&pdev->dev, "failed to get I/O memory\n");
157 error = -ENXIO;
158 goto failed_free;
159 }
160
161 res = request_mem_region(res->start, resource_size(res), pdev->name);
162 if (res == NULL) {
163 dev_err(&pdev->dev, "failed to request I/O memory\n");
164 error = -EBUSY;
165 goto failed_free;
166 }
167
168 keypad->mmio_base = ioremap(res->start, resource_size(res));
169 if (keypad->mmio_base == NULL) {
170 dev_err(&pdev->dev, "failed to remap I/O memory\n");
171 error = -ENXIO;
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700172 goto failed_free_res;
Wan ZongShun4a152352009-08-09 21:22:22 -0700173 }
174
175 keypad->clk = clk_get(&pdev->dev, NULL);
176 if (IS_ERR(keypad->clk)) {
177 dev_err(&pdev->dev, "failed to get keypad clock\n");
178 error = PTR_ERR(keypad->clk);
179 goto failed_free_io;
180 }
181
Wan ZongShun4a152352009-08-09 21:22:22 -0700182 /* set multi-function pin for w90p910 kpi. */
183 mfp_set_groupi(&pdev->dev);
184
185 input_dev->name = pdev->name;
186 input_dev->id.bustype = BUS_HOST;
187 input_dev->open = w90p910_keypad_open;
188 input_dev->close = w90p910_keypad_close;
189 input_dev->dev.parent = &pdev->dev;
Wan ZongShun4a152352009-08-09 21:22:22 -0700190
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700191 input_dev->keycode = keypad->keymap;
192 input_dev->keycodesize = sizeof(keypad->keymap[0]);
193 input_dev->keycodemax = ARRAY_SIZE(keypad->keymap);
194
Wan ZongShun4a152352009-08-09 21:22:22 -0700195 input_set_drvdata(input_dev, keypad);
196
197 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700198 input_set_capability(input_dev, EV_MSC, MSC_SCAN);
Wan ZongShun4a152352009-08-09 21:22:22 -0700199
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700200 for (i = 0; i < keymap_data->keymap_size; i++) {
201 unsigned int key = keymap_data->keymap[i];
202 unsigned int row = KEY_ROW(key);
203 unsigned int col = KEY_COL(key);
204 unsigned short keycode = KEY_VAL(key);
205 unsigned int scancode = MATRIX_SCAN_CODE(row, col,
206 W90P910_ROW_SHIFT);
207
208 keypad->keymap[scancode] = keycode;
209 __set_bit(keycode, input_dev->keybit);
210 }
211 __clear_bit(KEY_RESERVED, input_dev->keybit);
212
213
214 error = request_irq(keypad->irq, w90p910_keypad_irq_handler,
215 IRQF_DISABLED, pdev->name, keypad);
Wan ZongShun4a152352009-08-09 21:22:22 -0700216 if (error) {
217 dev_err(&pdev->dev, "failed to request IRQ\n");
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700218 goto failed_put_clk;
Wan ZongShun4a152352009-08-09 21:22:22 -0700219 }
220
Wan ZongShun4a152352009-08-09 21:22:22 -0700221 /* Register the input device */
222 error = input_register_device(input_dev);
223 if (error) {
224 dev_err(&pdev->dev, "failed to register input device\n");
225 goto failed_free_irq;
226 }
227
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700228 platform_set_drvdata(pdev, keypad);
Wan ZongShun4a152352009-08-09 21:22:22 -0700229 return 0;
230
231failed_free_irq:
232 free_irq(irq, pdev);
Wan ZongShun4a152352009-08-09 21:22:22 -0700233failed_put_clk:
234 clk_put(keypad->clk);
235failed_free_io:
236 iounmap(keypad->mmio_base);
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700237failed_free_res:
Wan ZongShun4a152352009-08-09 21:22:22 -0700238 release_mem_region(res->start, resource_size(res));
239failed_free:
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700240 input_free_device(input_dev);
Wan ZongShun4a152352009-08-09 21:22:22 -0700241 kfree(keypad);
242 return error;
243}
244
245static int __devexit w90p910_keypad_remove(struct platform_device *pdev)
246{
247 struct w90p910_keypad *keypad = platform_get_drvdata(pdev);
248 struct resource *res;
249
250 free_irq(keypad->irq, pdev);
251
252 clk_put(keypad->clk);
253
254 input_unregister_device(keypad->input_dev);
255
256 iounmap(keypad->mmio_base);
Wan ZongShun4a152352009-08-09 21:22:22 -0700257 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
258 release_mem_region(res->start, resource_size(res));
259
260 platform_set_drvdata(pdev, NULL);
261 kfree(keypad);
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700262
Wan ZongShun4a152352009-08-09 21:22:22 -0700263 return 0;
264}
265
266static struct platform_driver w90p910_keypad_driver = {
267 .probe = w90p910_keypad_probe,
268 .remove = __devexit_p(w90p910_keypad_remove),
269 .driver = {
270 .name = "w90p910-keypad",
271 .owner = THIS_MODULE,
272 },
273};
274
275static int __init w90p910_keypad_init(void)
276{
277 return platform_driver_register(&w90p910_keypad_driver);
278}
279
280static void __exit w90p910_keypad_exit(void)
281{
282 platform_driver_unregister(&w90p910_keypad_driver);
283}
284
285module_init(w90p910_keypad_init);
286module_exit(w90p910_keypad_exit);
287
288MODULE_AUTHOR("Wan ZongShun <mcuos.com@gmail.com>");
289MODULE_DESCRIPTION("w90p910 keypad driver!");
290MODULE_LICENSE("GPL");
291MODULE_ALIAS("platform:w90p910-keypad");