2 * File: drivers/input/keyboard/bf54x-keys.c
4 * Author: Michael Hennerich <hennerich@blackfin.uclinux.org>
7 * Description: keypad driver for Analog Devices Blackfin BF54x Processors
11 * Copyright 2007-2008 Analog Devices Inc.
13 * Bugs: Enter bugs at http://blackfin.uclinux.org/
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, see the file COPYING, or write
27 * to the Free Software Foundation, Inc.,
28 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31 #include <linux/module.h>
34 #include <linux/interrupt.h>
35 #include <linux/irq.h>
36 #include <linux/slab.h>
37 #include <linux/sched.h>
39 #include <linux/sysctl.h>
40 #include <linux/proc_fs.h>
41 #include <linux/delay.h>
42 #include <linux/platform_device.h>
43 #include <linux/input.h>
45 #include <asm/portmux.h>
46 #include <mach/bf54x_keys.h>
48 #define DRV_NAME "bf54x-keys"
49 #define TIME_SCALE 100 /* 100 ns */
50 #define MAX_MULT (0xFF * TIME_SCALE)
51 #define MAX_RC 8 /* Max Row/Col */
53 static const u16 per_rows
[] = {
65 static const u16 per_cols
[] = {
78 struct input_dev
*input
;
80 unsigned short lastkey
;
81 unsigned short *keycode
;
82 struct timer_list timer
;
83 unsigned int keyup_test_jiffies
;
84 unsigned short kpad_msel
;
85 unsigned short kpad_prescale
;
86 unsigned short kpad_ctl
;
89 static inline int bfin_kpad_find_key(struct bf54x_kpad
*bf54x_kpad
,
90 struct input_dev
*input
, u16 keyident
)
94 for (i
= 0; i
< input
->keycodemax
; i
++)
95 if (bf54x_kpad
->keycode
[i
+ input
->keycodemax
] == keyident
)
96 return bf54x_kpad
->keycode
[i
];
100 static inline void bfin_keycodecpy(unsigned short *keycode
,
101 const unsigned int *pdata_kc
,
102 unsigned short keymapsize
)
106 for (i
= 0; i
< keymapsize
; i
++) {
107 keycode
[i
] = pdata_kc
[i
] & 0xffff;
108 keycode
[i
+ keymapsize
] = pdata_kc
[i
] >> 16;
112 static inline u16
bfin_kpad_get_prescale(u32 timescale
)
114 u32 sclk
= get_sclk();
116 return ((((sclk
/ 1000) * timescale
) / 1024) - 1);
119 static inline u16
bfin_kpad_get_keypressed(struct bf54x_kpad
*bf54x_kpad
)
121 return (bfin_read_KPAD_STAT() & KPAD_PRESSED
);
124 static inline void bfin_kpad_clear_irq(void)
126 bfin_write_KPAD_STAT(0xFFFF);
127 bfin_write_KPAD_ROWCOL(0xFFFF);
130 static void bfin_kpad_timer(struct timer_list
*t
)
132 struct bf54x_kpad
*bf54x_kpad
= from_timer(bf54x_kpad
, t
, timer
);
134 if (bfin_kpad_get_keypressed(bf54x_kpad
)) {
135 /* Try again later */
136 mod_timer(&bf54x_kpad
->timer
,
137 jiffies
+ bf54x_kpad
->keyup_test_jiffies
);
141 input_report_key(bf54x_kpad
->input
, bf54x_kpad
->lastkey
, 0);
142 input_sync(bf54x_kpad
->input
);
144 /* Clear IRQ Status */
146 bfin_kpad_clear_irq();
147 enable_irq(bf54x_kpad
->irq
);
150 static irqreturn_t
bfin_kpad_isr(int irq
, void *dev_id
)
152 struct platform_device
*pdev
= dev_id
;
153 struct bf54x_kpad
*bf54x_kpad
= platform_get_drvdata(pdev
);
154 struct input_dev
*input
= bf54x_kpad
->input
;
156 u16 rowcol
= bfin_read_KPAD_ROWCOL();
158 key
= bfin_kpad_find_key(bf54x_kpad
, input
, rowcol
);
160 input_report_key(input
, key
, 1);
163 if (bfin_kpad_get_keypressed(bf54x_kpad
)) {
164 disable_irq_nosync(bf54x_kpad
->irq
);
165 bf54x_kpad
->lastkey
= key
;
166 mod_timer(&bf54x_kpad
->timer
,
167 jiffies
+ bf54x_kpad
->keyup_test_jiffies
);
169 input_report_key(input
, key
, 0);
172 bfin_kpad_clear_irq();
178 static int bfin_kpad_probe(struct platform_device
*pdev
)
180 struct bf54x_kpad
*bf54x_kpad
;
181 struct bfin_kpad_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
182 struct input_dev
*input
;
185 if (!pdata
->rows
|| !pdata
->cols
|| !pdata
->keymap
) {
186 dev_err(&pdev
->dev
, "no rows, cols or keymap from pdata\n");
190 if (!pdata
->keymapsize
||
191 pdata
->keymapsize
> (pdata
->rows
* pdata
->cols
)) {
192 dev_err(&pdev
->dev
, "invalid keymapsize\n");
196 bf54x_kpad
= kzalloc(sizeof(struct bf54x_kpad
), GFP_KERNEL
);
200 platform_set_drvdata(pdev
, bf54x_kpad
);
202 /* Allocate memory for keymap followed by private LUT */
203 bf54x_kpad
->keycode
= kmalloc(pdata
->keymapsize
*
204 sizeof(unsigned short) * 2, GFP_KERNEL
);
205 if (!bf54x_kpad
->keycode
) {
210 if (!pdata
->debounce_time
|| pdata
->debounce_time
> MAX_MULT
||
211 !pdata
->coldrive_time
|| pdata
->coldrive_time
> MAX_MULT
) {
213 "invalid platform debounce/columndrive time\n");
214 bfin_write_KPAD_MSEL(0xFF0); /* Default MSEL */
216 bfin_write_KPAD_MSEL(
217 ((pdata
->debounce_time
/ TIME_SCALE
)
219 (((pdata
->coldrive_time
/ TIME_SCALE
) << 8)
224 if (!pdata
->keyup_test_interval
)
225 bf54x_kpad
->keyup_test_jiffies
= msecs_to_jiffies(50);
227 bf54x_kpad
->keyup_test_jiffies
=
228 msecs_to_jiffies(pdata
->keyup_test_interval
);
230 if (peripheral_request_list((u16
*)&per_rows
[MAX_RC
- pdata
->rows
],
232 dev_err(&pdev
->dev
, "requesting peripherals failed\n");
237 if (peripheral_request_list((u16
*)&per_cols
[MAX_RC
- pdata
->cols
],
239 dev_err(&pdev
->dev
, "requesting peripherals failed\n");
244 bf54x_kpad
->irq
= platform_get_irq(pdev
, 0);
245 if (bf54x_kpad
->irq
< 0) {
250 error
= request_irq(bf54x_kpad
->irq
, bfin_kpad_isr
,
253 dev_err(&pdev
->dev
, "unable to claim irq %d\n",
258 input
= input_allocate_device();
264 bf54x_kpad
->input
= input
;
266 input
->name
= pdev
->name
;
267 input
->phys
= "bf54x-keys/input0";
268 input
->dev
.parent
= &pdev
->dev
;
270 input
->id
.bustype
= BUS_HOST
;
271 input
->id
.vendor
= 0x0001;
272 input
->id
.product
= 0x0001;
273 input
->id
.version
= 0x0100;
275 input
->keycodesize
= sizeof(unsigned short);
276 input
->keycodemax
= pdata
->keymapsize
;
277 input
->keycode
= bf54x_kpad
->keycode
;
279 bfin_keycodecpy(bf54x_kpad
->keycode
, pdata
->keymap
, pdata
->keymapsize
);
281 /* setup input device */
282 __set_bit(EV_KEY
, input
->evbit
);
285 __set_bit(EV_REP
, input
->evbit
);
287 for (i
= 0; i
< input
->keycodemax
; i
++)
288 if (bf54x_kpad
->keycode
[i
] <= KEY_MAX
)
289 __set_bit(bf54x_kpad
->keycode
[i
], input
->keybit
);
290 __clear_bit(KEY_RESERVED
, input
->keybit
);
292 error
= input_register_device(input
);
294 dev_err(&pdev
->dev
, "unable to register input device\n");
298 /* Init Keypad Key Up/Release test timer */
300 timer_setup(&bf54x_kpad
->timer
, bfin_kpad_timer
, 0);
302 bfin_write_KPAD_PRESCALE(bfin_kpad_get_prescale(TIME_SCALE
));
304 bfin_write_KPAD_CTL((((pdata
->cols
- 1) << 13) & KPAD_COLEN
) |
305 (((pdata
->rows
- 1) << 10) & KPAD_ROWEN
) |
308 bfin_write_KPAD_CTL(bfin_read_KPAD_CTL() | KPAD_EN
);
310 device_init_wakeup(&pdev
->dev
, 1);
315 input_free_device(input
);
317 free_irq(bf54x_kpad
->irq
, pdev
);
319 peripheral_free_list((u16
*)&per_cols
[MAX_RC
- pdata
->cols
]);
321 peripheral_free_list((u16
*)&per_rows
[MAX_RC
- pdata
->rows
]);
323 kfree(bf54x_kpad
->keycode
);
330 static int bfin_kpad_remove(struct platform_device
*pdev
)
332 struct bfin_kpad_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
333 struct bf54x_kpad
*bf54x_kpad
= platform_get_drvdata(pdev
);
335 del_timer_sync(&bf54x_kpad
->timer
);
336 free_irq(bf54x_kpad
->irq
, pdev
);
338 input_unregister_device(bf54x_kpad
->input
);
340 peripheral_free_list((u16
*)&per_rows
[MAX_RC
- pdata
->rows
]);
341 peripheral_free_list((u16
*)&per_cols
[MAX_RC
- pdata
->cols
]);
343 kfree(bf54x_kpad
->keycode
);
350 static int bfin_kpad_suspend(struct platform_device
*pdev
, pm_message_t state
)
352 struct bf54x_kpad
*bf54x_kpad
= platform_get_drvdata(pdev
);
354 bf54x_kpad
->kpad_msel
= bfin_read_KPAD_MSEL();
355 bf54x_kpad
->kpad_prescale
= bfin_read_KPAD_PRESCALE();
356 bf54x_kpad
->kpad_ctl
= bfin_read_KPAD_CTL();
358 if (device_may_wakeup(&pdev
->dev
))
359 enable_irq_wake(bf54x_kpad
->irq
);
364 static int bfin_kpad_resume(struct platform_device
*pdev
)
366 struct bf54x_kpad
*bf54x_kpad
= platform_get_drvdata(pdev
);
368 bfin_write_KPAD_MSEL(bf54x_kpad
->kpad_msel
);
369 bfin_write_KPAD_PRESCALE(bf54x_kpad
->kpad_prescale
);
370 bfin_write_KPAD_CTL(bf54x_kpad
->kpad_ctl
);
372 if (device_may_wakeup(&pdev
->dev
))
373 disable_irq_wake(bf54x_kpad
->irq
);
378 # define bfin_kpad_suspend NULL
379 # define bfin_kpad_resume NULL
382 static struct platform_driver bfin_kpad_device_driver
= {
386 .probe
= bfin_kpad_probe
,
387 .remove
= bfin_kpad_remove
,
388 .suspend
= bfin_kpad_suspend
,
389 .resume
= bfin_kpad_resume
,
391 module_platform_driver(bfin_kpad_device_driver
);
393 MODULE_LICENSE("GPL");
394 MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
395 MODULE_DESCRIPTION("Keypad driver for BF54x Processors");
396 MODULE_ALIAS("platform:bf54x-keys");