blob: 2d03dd0f9e07dd61d3101add75b6854f3e062e7a [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;
Wan ZongShun4a152352009-08-09 21:22:22 -0700129
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700130 if (!pdata) {
Wan ZongShun4a152352009-08-09 21:22:22 -0700131 dev_err(&pdev->dev, "no platform data defined\n");
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700132 return -EINVAL;
Wan ZongShun4a152352009-08-09 21:22:22 -0700133 }
134
135 irq = platform_get_irq(pdev, 0);
136 if (irq < 0) {
137 dev_err(&pdev->dev, "failed to get keypad irq\n");
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700138 return -ENXIO;
139 }
140
141 keypad = kzalloc(sizeof(struct w90p910_keypad), GFP_KERNEL);
142 input_dev = input_allocate_device();
143 if (!keypad || !input_dev) {
144 dev_err(&pdev->dev, "failed to allocate driver data\n");
145 error = -ENOMEM;
Wan ZongShun4a152352009-08-09 21:22:22 -0700146 goto failed_free;
147 }
148
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700149 keypad->pdata = pdata;
150 keypad->input_dev = input_dev;
151 keypad->irq = irq;
152
Wan ZongShun4a152352009-08-09 21:22:22 -0700153 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
154 if (res == NULL) {
155 dev_err(&pdev->dev, "failed to get I/O memory\n");
156 error = -ENXIO;
157 goto failed_free;
158 }
159
160 res = request_mem_region(res->start, resource_size(res), pdev->name);
161 if (res == NULL) {
162 dev_err(&pdev->dev, "failed to request I/O memory\n");
163 error = -EBUSY;
164 goto failed_free;
165 }
166
167 keypad->mmio_base = ioremap(res->start, resource_size(res));
168 if (keypad->mmio_base == NULL) {
169 dev_err(&pdev->dev, "failed to remap I/O memory\n");
170 error = -ENXIO;
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700171 goto failed_free_res;
Wan ZongShun4a152352009-08-09 21:22:22 -0700172 }
173
174 keypad->clk = clk_get(&pdev->dev, NULL);
175 if (IS_ERR(keypad->clk)) {
176 dev_err(&pdev->dev, "failed to get keypad clock\n");
177 error = PTR_ERR(keypad->clk);
178 goto failed_free_io;
179 }
180
Wan ZongShun4a152352009-08-09 21:22:22 -0700181 /* set multi-function pin for w90p910 kpi. */
182 mfp_set_groupi(&pdev->dev);
183
184 input_dev->name = pdev->name;
185 input_dev->id.bustype = BUS_HOST;
186 input_dev->open = w90p910_keypad_open;
187 input_dev->close = w90p910_keypad_close;
188 input_dev->dev.parent = &pdev->dev;
Wan ZongShun4a152352009-08-09 21:22:22 -0700189
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700190 input_dev->keycode = keypad->keymap;
191 input_dev->keycodesize = sizeof(keypad->keymap[0]);
192 input_dev->keycodemax = ARRAY_SIZE(keypad->keymap);
193
Wan ZongShun4a152352009-08-09 21:22:22 -0700194 input_set_drvdata(input_dev, keypad);
195
196 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700197 input_set_capability(input_dev, EV_MSC, MSC_SCAN);
Wan ZongShun4a152352009-08-09 21:22:22 -0700198
Dmitry Torokhov77a53fd2009-08-25 19:24:13 -0700199 matrix_keypad_build_keymap(keymap_data, W90P910_ROW_SHIFT,
200 input_dev->keycode, input_dev->keybit);
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700201
202 error = request_irq(keypad->irq, w90p910_keypad_irq_handler,
203 IRQF_DISABLED, pdev->name, keypad);
Wan ZongShun4a152352009-08-09 21:22:22 -0700204 if (error) {
205 dev_err(&pdev->dev, "failed to request IRQ\n");
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700206 goto failed_put_clk;
Wan ZongShun4a152352009-08-09 21:22:22 -0700207 }
208
Wan ZongShun4a152352009-08-09 21:22:22 -0700209 /* Register the input device */
210 error = input_register_device(input_dev);
211 if (error) {
212 dev_err(&pdev->dev, "failed to register input device\n");
213 goto failed_free_irq;
214 }
215
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700216 platform_set_drvdata(pdev, keypad);
Wan ZongShun4a152352009-08-09 21:22:22 -0700217 return 0;
218
219failed_free_irq:
220 free_irq(irq, pdev);
Wan ZongShun4a152352009-08-09 21:22:22 -0700221failed_put_clk:
222 clk_put(keypad->clk);
223failed_free_io:
224 iounmap(keypad->mmio_base);
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700225failed_free_res:
Wan ZongShun4a152352009-08-09 21:22:22 -0700226 release_mem_region(res->start, resource_size(res));
227failed_free:
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700228 input_free_device(input_dev);
Wan ZongShun4a152352009-08-09 21:22:22 -0700229 kfree(keypad);
230 return error;
231}
232
233static int __devexit w90p910_keypad_remove(struct platform_device *pdev)
234{
235 struct w90p910_keypad *keypad = platform_get_drvdata(pdev);
236 struct resource *res;
237
238 free_irq(keypad->irq, pdev);
239
240 clk_put(keypad->clk);
241
242 input_unregister_device(keypad->input_dev);
243
244 iounmap(keypad->mmio_base);
Wan ZongShun4a152352009-08-09 21:22:22 -0700245 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
246 release_mem_region(res->start, resource_size(res));
247
248 platform_set_drvdata(pdev, NULL);
249 kfree(keypad);
Dmitry Torokhov09113ae2009-08-09 21:22:22 -0700250
Wan ZongShun4a152352009-08-09 21:22:22 -0700251 return 0;
252}
253
254static struct platform_driver w90p910_keypad_driver = {
255 .probe = w90p910_keypad_probe,
256 .remove = __devexit_p(w90p910_keypad_remove),
257 .driver = {
Wan ZongShunfb962e12009-08-20 21:41:03 -0700258 .name = "nuc900-keypad",
Wan ZongShun4a152352009-08-09 21:22:22 -0700259 .owner = THIS_MODULE,
260 },
261};
262
263static int __init w90p910_keypad_init(void)
264{
265 return platform_driver_register(&w90p910_keypad_driver);
266}
267
268static void __exit w90p910_keypad_exit(void)
269{
270 platform_driver_unregister(&w90p910_keypad_driver);
271}
272
273module_init(w90p910_keypad_init);
274module_exit(w90p910_keypad_exit);
275
276MODULE_AUTHOR("Wan ZongShun <mcuos.com@gmail.com>");
Wan ZongShunfb962e12009-08-20 21:41:03 -0700277MODULE_DESCRIPTION("w90p910 keypad driver");
Wan ZongShun4a152352009-08-09 21:22:22 -0700278MODULE_LICENSE("GPL");
Wan ZongShunfb962e12009-08-20 21:41:03 -0700279MODULE_ALIAS("platform:nuc900-keypad");