2 * drivers/i2c/chips/lm8323.c
4 * Copyright (C) 2007-2009 Nokia Corporation
6 * Written by Daniel Stone <daniel.stone@nokia.com>
7 * Timo O. Karjalainen <timo.o.karjalainen@nokia.com>
9 * Updated by Felipe Balbi <felipe.balbi@nokia.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation (version 2 of the License only).
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/module.h>
26 #include <linux/i2c.h>
27 #include <linux/interrupt.h>
28 #include <linux/sched.h>
29 #include <linux/mutex.h>
30 #include <linux/delay.h>
31 #include <linux/input.h>
32 #include <linux/leds.h>
33 #include <linux/i2c/lm8323.h>
35 /* Commands to send to the chip. */
36 #define LM8323_CMD_READ_ID 0x80 /* Read chip ID. */
37 #define LM8323_CMD_WRITE_CFG 0x81 /* Set configuration item. */
38 #define LM8323_CMD_READ_INT 0x82 /* Get interrupt status. */
39 #define LM8323_CMD_RESET 0x83 /* Reset, same as external one */
40 #define LM8323_CMD_WRITE_PORT_SEL 0x85 /* Set GPIO in/out. */
41 #define LM8323_CMD_WRITE_PORT_STATE 0x86 /* Set GPIO pullup. */
42 #define LM8323_CMD_READ_PORT_SEL 0x87 /* Get GPIO in/out. */
43 #define LM8323_CMD_READ_PORT_STATE 0x88 /* Get GPIO pullup. */
44 #define LM8323_CMD_READ_FIFO 0x89 /* Read byte from FIFO. */
45 #define LM8323_CMD_RPT_READ_FIFO 0x8a /* Read FIFO (no increment). */
46 #define LM8323_CMD_SET_ACTIVE 0x8b /* Set active time. */
47 #define LM8323_CMD_READ_ERR 0x8c /* Get error status. */
48 #define LM8323_CMD_READ_ROTATOR 0x8e /* Read rotator status. */
49 #define LM8323_CMD_SET_DEBOUNCE 0x8f /* Set debouncing time. */
50 #define LM8323_CMD_SET_KEY_SIZE 0x90 /* Set keypad size. */
51 #define LM8323_CMD_READ_KEY_SIZE 0x91 /* Get keypad size. */
52 #define LM8323_CMD_READ_CFG 0x92 /* Get configuration item. */
53 #define LM8323_CMD_WRITE_CLOCK 0x93 /* Set clock config. */
54 #define LM8323_CMD_READ_CLOCK 0x94 /* Get clock config. */
55 #define LM8323_CMD_PWM_WRITE 0x95 /* Write PWM script. */
56 #define LM8323_CMD_START_PWM 0x96 /* Start PWM engine. */
57 #define LM8323_CMD_STOP_PWM 0x97 /* Stop PWM engine. */
59 /* Interrupt status. */
60 #define INT_KEYPAD 0x01 /* Key event. */
61 #define INT_ROTATOR 0x02 /* Rotator event. */
62 #define INT_ERROR 0x08 /* Error: use CMD_READ_ERR. */
63 #define INT_NOINIT 0x10 /* Lost configuration. */
64 #define INT_PWM1 0x20 /* PWM1 stopped. */
65 #define INT_PWM2 0x40 /* PWM2 stopped. */
66 #define INT_PWM3 0x80 /* PWM3 stopped. */
68 /* Errors (signalled by INT_ERROR, read with CMD_READ_ERR). */
69 #define ERR_BADPAR 0x01 /* Bad parameter. */
70 #define ERR_CMDUNK 0x02 /* Unknown command. */
71 #define ERR_KEYOVR 0x04 /* Too many keys pressed. */
72 #define ERR_FIFOOVER 0x40 /* FIFO overflow. */
74 /* Configuration keys (CMD_{WRITE,READ}_CFG). */
75 #define CFG_MUX1SEL 0x01 /* Select MUX1_OUT input. */
76 #define CFG_MUX1EN 0x02 /* Enable MUX1_OUT. */
77 #define CFG_MUX2SEL 0x04 /* Select MUX2_OUT input. */
78 #define CFG_MUX2EN 0x08 /* Enable MUX2_OUT. */
79 #define CFG_PSIZE 0x20 /* Package size (must be 0). */
80 #define CFG_ROTEN 0x40 /* Enable rotator. */
82 /* Clock settings (CMD_{WRITE,READ}_CLOCK). */
83 #define CLK_RCPWM_INTERNAL 0x00
84 #define CLK_RCPWM_EXTERNAL 0x03
85 #define CLK_SLOWCLKEN 0x08 /* Enable 32.768kHz clock. */
86 #define CLK_SLOWCLKOUT 0x40 /* Enable slow pulse output. */
88 /* The possible addresses corresponding to CONFIG1 and CONFIG2 pin wirings. */
89 #define LM8323_I2C_ADDR00 (0x84 >> 1) /* 1000 010x */
90 #define LM8323_I2C_ADDR01 (0x86 >> 1) /* 1000 011x */
91 #define LM8323_I2C_ADDR10 (0x88 >> 1) /* 1000 100x */
92 #define LM8323_I2C_ADDR11 (0x8A >> 1) /* 1000 101x */
94 /* Key event fifo length */
95 #define LM8323_FIFO_LEN 15
97 /* Commands for PWM engine; feed in with PWM_WRITE. */
98 /* Load ramp counter from duty cycle field (range 0 - 0xff). */
99 #define PWM_SET(v) (0x4000 | ((v) & 0xff))
100 /* Go to start of script. */
101 #define PWM_GOTOSTART 0x0000
103 * Stop engine (generates interrupt). If reset is 1, clear the program
104 * counter, else leave it.
106 #define PWM_END(reset) (0xc000 | (!!(reset) << 11))
108 * Ramp. If s is 1, divide clock by 512, else divide clock by 16.
109 * Take t clock scales (up to 63) per step, for n steps (up to 126).
110 * If u is set, ramp up, else ramp down.
112 #define PWM_RAMP(s, t, n, u) ((!!(s) << 14) | ((t) & 0x3f) << 8 | \
113 ((n) & 0x7f) | ((u) ? 0 : 0x80))
115 * Loop (i.e. jump back to pos) for a given number of iterations (up to 63).
116 * If cnt is zero, execute until PWM_END is encountered.
118 #define PWM_LOOP(cnt, pos) (0xa000 | (((cnt) & 0x3f) << 7) | \
121 * Wait for trigger. Argument is a mask of channels, shifted by the channel
122 * number, e.g. 0xa for channels 3 and 1. Note that channels are numbered
125 #define PWM_WAIT_TRIG(chans) (0xe000 | (((chans) & 0x7) << 6))
126 /* Send trigger. Argument is same as PWM_WAIT_TRIG. */
127 #define PWM_SEND_TRIG(chans) (0xe000 | ((chans) & 0x7))
133 int desired_brightness;
138 struct work_struct work;
139 struct led_classdev cdev;
140 struct lm8323_chip *chip;
146 struct i2c_client *client;
147 struct work_struct work;
148 struct input_dev *idev;
153 unsigned short keymap[LM8323_KEYMAP_SIZE];
158 struct lm8323_pwm pwm[LM8323_NUM_PWMS];
161 #define client_to_lm8323(c) container_of(c, struct lm8323_chip, client)
162 #define dev_to_lm8323(d) container_of(d, struct lm8323_chip, client->dev)
163 #define work_to_lm8323(w) container_of(w, struct lm8323_chip, work)
164 #define cdev_to_pwm(c) container_of(c, struct lm8323_pwm, cdev)
165 #define work_to_pwm(w) container_of(w, struct lm8323_pwm, work)
167 #define LM8323_MAX_DATA 8
170 * To write, we just access the chip's address in write mode, and dump the
171 * command and data out on the bus. The command byte and data are taken as
172 * sequential u8s out of varargs, to a maximum of LM8323_MAX_DATA.
174 static int lm8323_write(struct lm8323_chip *lm, int len, ...)
178 u8 data[LM8323_MAX_DATA];
182 if (unlikely(len > LM8323_MAX_DATA)) {
183 dev_err(&lm->client->dev, "tried to send %d bytes\n", len);
188 for (i = 0; i < len; i++)
189 data[i] = va_arg(ap, int);
194 * If the host is asleep while we send the data, we can get a NACK
195 * back while it wakes up, so try again, once.
197 ret = i2c_master_send(lm->client, data, len);
198 if (unlikely(ret == -EREMOTEIO))
199 ret = i2c_master_send(lm->client, data, len);
200 if (unlikely(ret != len))
201 dev_err(&lm->client->dev, "sent %d bytes of %d total\n",
208 * To read, we first send the command byte to the chip and end the transaction,
209 * then access the chip in read mode, at which point it will send the data.
211 static int lm8323_read(struct lm8323_chip *lm, u8 cmd, u8 *buf, int len)
216 * If the host is asleep while we send the byte, we can get a NACK
217 * back while it wakes up, so try again, once.
219 ret = i2c_master_send(lm->client, &cmd, 1);
220 if (unlikely(ret == -EREMOTEIO))
221 ret = i2c_master_send(lm->client, &cmd, 1);
222 if (unlikely(ret != 1)) {
223 dev_err(&lm->client->dev, "sending read cmd 0x%02x failed\n",
228 ret = i2c_master_recv(lm->client, buf, len);
229 if (unlikely(ret != len))
230 dev_err(&lm->client->dev, "wanted %d bytes, got %d\n",
237 * Set the chip active time (idle time before it enters halt).
239 static void lm8323_set_active_time(struct lm8323_chip *lm, int time)
241 lm8323_write(lm, 2, LM8323_CMD_SET_ACTIVE, time >> 2);
245 * The signals are AT-style: the low 7 bits are the keycode, and the top
246 * bit indicates the state (1 for down, 0 for up).
248 static inline u8 lm8323_whichkey(u8 event)
253 static inline int lm8323_ispress(u8 event)
255 return (event & 0x80) ? 1 : 0;
258 static void process_keys(struct lm8323_chip *lm)
261 u8 key_fifo[LM8323_FIFO_LEN + 1];
262 int old_keys_down = lm->keys_down;
267 * Read all key events from the FIFO at once. Next READ_FIFO clears the
268 * FIFO even if we didn't read all events previously.
270 ret = lm8323_read(lm, LM8323_CMD_READ_FIFO, key_fifo, LM8323_FIFO_LEN);
273 dev_err(&lm->client->dev, "Failed reading fifo \n");
278 while ((event = key_fifo[i++])) {
279 u8 key = lm8323_whichkey(event);
280 int isdown = lm8323_ispress(event);
281 unsigned short keycode = lm->keymap[key];
283 dev_vdbg(&lm->client->dev, "key 0x%02x %s\n",
284 key, isdown ? "down" : "up");
286 if (lm->kp_enabled) {
287 input_event(lm->idev, EV_MSC, MSC_SCAN, key);
288 input_report_key(lm->idev, keycode, isdown);
289 input_sync(lm->idev);
299 * Errata: We need to ensure that the chip never enters halt mode
300 * during a keypress, so set active time to 0. When it's released,
301 * we can enter halt again, so set the active time back to normal.
303 if (!old_keys_down && lm->keys_down)
304 lm8323_set_active_time(lm, 0);
305 if (old_keys_down && !lm->keys_down)
306 lm8323_set_active_time(lm, lm->active_time);
309 static void lm8323_process_error(struct lm8323_chip *lm)
313 if (lm8323_read(lm, LM8323_CMD_READ_ERR, &error, 1) == 1) {
314 if (error & ERR_FIFOOVER)
315 dev_vdbg(&lm->client->dev, "fifo overflow!\n");
316 if (error & ERR_KEYOVR)
317 dev_vdbg(&lm->client->dev,
318 "more than two keys pressed\n");
319 if (error & ERR_CMDUNK)
320 dev_vdbg(&lm->client->dev,
321 "unknown command submitted\n");
322 if (error & ERR_BADPAR)
323 dev_vdbg(&lm->client->dev, "bad command parameter\n");
327 static void lm8323_reset(struct lm8323_chip *lm)
329 /* The docs say we must pass 0xAA as the data byte. */
330 lm8323_write(lm, 2, LM8323_CMD_RESET, 0xAA);
333 static int lm8323_configure(struct lm8323_chip *lm)
335 int keysize = (lm->size_x << 4) | lm->size_y;
336 int clock = (CLK_SLOWCLKEN | CLK_RCPWM_EXTERNAL);
337 int debounce = lm->debounce_time >> 2;
338 int active = lm->active_time >> 2;
341 * Active time must be greater than the debounce time: if it's
342 * a close-run thing, give ourselves a 12ms buffer.
344 if (debounce >= active)
345 active = debounce + 3;
347 lm8323_write(lm, 2, LM8323_CMD_WRITE_CFG, 0);
348 lm8323_write(lm, 2, LM8323_CMD_WRITE_CLOCK, clock);
349 lm8323_write(lm, 2, LM8323_CMD_SET_KEY_SIZE, keysize);
350 lm8323_set_active_time(lm, lm->active_time);
351 lm8323_write(lm, 2, LM8323_CMD_SET_DEBOUNCE, debounce);
352 lm8323_write(lm, 3, LM8323_CMD_WRITE_PORT_STATE, 0xff, 0xff);
353 lm8323_write(lm, 3, LM8323_CMD_WRITE_PORT_SEL, 0, 0);
356 * Not much we can do about errors at this point, so just hope
363 static void pwm_done(struct lm8323_pwm *pwm)
365 mutex_lock(&pwm->lock);
366 pwm->running = false;
367 if (pwm->desired_brightness != pwm->brightness)
368 schedule_work(&pwm->work);
369 mutex_unlock(&pwm->lock);
373 * Bottom half: handle the interrupt by posting key events, or dealing with
374 * errors appropriately.
376 static void lm8323_work(struct work_struct *work)
378 struct lm8323_chip *lm = work_to_lm8323(work);
382 mutex_lock(&lm->lock);
384 while ((lm8323_read(lm, LM8323_CMD_READ_INT, &ints, 1) == 1) && ints) {
385 if (likely(ints & INT_KEYPAD))
387 if (ints & INT_ROTATOR) {
388 /* We don't currently support the rotator. */
389 dev_vdbg(&lm->client->dev, "rotator fired\n");
391 if (ints & INT_ERROR) {
392 dev_vdbg(&lm->client->dev, "error!\n");
393 lm8323_process_error(lm);
395 if (ints & INT_NOINIT) {
396 dev_err(&lm->client->dev, "chip lost config; "
398 lm8323_configure(lm);
400 for (i = 0; i < LM8323_NUM_PWMS; i++) {
401 if (ints & (1 << (INT_PWM1 + i))) {
402 dev_vdbg(&lm->client->dev,
403 "pwm%d engine completed\n", i);
404 pwm_done(&lm->pwm[i]);
409 mutex_unlock(&lm->lock);
413 * We cannot use I2C in interrupt context, so we just schedule work.
415 static irqreturn_t lm8323_irq(int irq, void *data)
417 struct lm8323_chip *lm = data;
419 schedule_work(&lm->work);
427 static int lm8323_read_id(struct lm8323_chip *lm, u8 *buf)
431 bytes = lm8323_read(lm, LM8323_CMD_READ_ID, buf, 2);
432 if (unlikely(bytes != 2))
438 static void lm8323_write_pwm_one(struct lm8323_pwm *pwm, int pos, u16 cmd)
440 lm8323_write(pwm->chip, 4, LM8323_CMD_PWM_WRITE, (pos << 2) | pwm->id,
441 (cmd & 0xff00) >> 8, cmd & 0x00ff);
445 * Write a script into a given PWM engine, concluding with PWM_END.
446 * If 'kill' is nonzero, the engine will be shut down at the end
447 * of the script, producing a zero output. Otherwise the engine
448 * will be kept running at the final PWM level indefinitely.
450 static void lm8323_write_pwm(struct lm8323_pwm *pwm, int kill,
451 int len, const u16 *cmds)
455 for (i = 0; i < len; i++)
456 lm8323_write_pwm_one(pwm, i, cmds[i]);
458 lm8323_write_pwm_one(pwm, i++, PWM_END(kill));
459 lm8323_write(pwm->chip, 2, LM8323_CMD_START_PWM, pwm->id);
463 static void lm8323_pwm_work(struct work_struct *work)
465 struct lm8323_pwm *pwm = work_to_pwm(work);
466 int div512, perstep, steps, hz, up, kill;
470 mutex_lock(&pwm->lock);
473 * Do nothing if we're already at the requested level,
474 * or previous setting is not yet complete. In the latter
475 * case we will be called again when the previous PWM script
478 if (pwm->running || pwm->desired_brightness == pwm->brightness)
481 kill = (pwm->desired_brightness == 0);
482 up = (pwm->desired_brightness > pwm->brightness);
483 steps = abs(pwm->desired_brightness - pwm->brightness);
486 * Convert time (in ms) into a divisor (512 or 16 on a refclk of
487 * 32768Hz), and number of ticks per step.
489 if ((pwm->fade_time / steps) > (32768 / 512)) {
497 perstep = (hz * pwm->fade_time) / (steps * 1000);
501 else if (perstep > 63)
508 pwm_cmds[num_cmds++] = PWM_RAMP(div512, perstep, s, up);
512 lm8323_write_pwm(pwm, kill, num_cmds, pwm_cmds);
513 pwm->brightness = pwm->desired_brightness;
516 mutex_unlock(&pwm->lock);
519 static void lm8323_pwm_set_brightness(struct led_classdev *led_cdev,
520 enum led_brightness brightness)
522 struct lm8323_pwm *pwm = cdev_to_pwm(led_cdev);
523 struct lm8323_chip *lm = pwm->chip;
525 mutex_lock(&pwm->lock);
526 pwm->desired_brightness = brightness;
527 mutex_unlock(&pwm->lock);
529 if (in_interrupt()) {
530 schedule_work(&pwm->work);
533 * Schedule PWM work as usual unless we are going into suspend
535 mutex_lock(&lm->lock);
536 if (likely(!lm->pm_suspend))
537 schedule_work(&pwm->work);
539 lm8323_pwm_work(&pwm->work);
540 mutex_unlock(&lm->lock);
544 static ssize_t lm8323_pwm_show_time(struct device *dev,
545 struct device_attribute *attr, char *buf)
547 struct led_classdev *led_cdev = dev_get_drvdata(dev);
548 struct lm8323_pwm *pwm = cdev_to_pwm(led_cdev);
550 return sprintf(buf, "%d\n", pwm->fade_time);
553 static ssize_t lm8323_pwm_store_time(struct device *dev,
554 struct device_attribute *attr, const char *buf, size_t len)
556 struct led_classdev *led_cdev = dev_get_drvdata(dev);
557 struct lm8323_pwm *pwm = cdev_to_pwm(led_cdev);
561 ret = strict_strtoul(buf, 10, &time);
562 /* Numbers only, please. */
566 pwm->fade_time = time;
570 static DEVICE_ATTR(time, 0644, lm8323_pwm_show_time, lm8323_pwm_store_time);
572 static int init_pwm(struct lm8323_chip *lm, int id, struct device *dev,
575 struct lm8323_pwm *pwm;
579 pwm = &lm->pwm[id - 1];
584 pwm->desired_brightness = 0;
585 pwm->running = false;
586 pwm->enabled = false;
587 INIT_WORK(&pwm->work, lm8323_pwm_work);
588 mutex_init(&pwm->lock);
592 pwm->cdev.name = name;
593 pwm->cdev.brightness_set = lm8323_pwm_set_brightness;
594 if (led_classdev_register(dev, &pwm->cdev) < 0) {
595 dev_err(dev, "couldn't register PWM %d\n", id);
598 if (device_create_file(pwm->cdev.dev,
599 &dev_attr_time) < 0) {
600 dev_err(dev, "couldn't register time attribute\n");
601 led_classdev_unregister(&pwm->cdev);
610 static struct i2c_driver lm8323_i2c_driver;
612 static ssize_t lm8323_show_disable(struct device *dev,
613 struct device_attribute *attr, char *buf)
615 struct lm8323_chip *lm = dev_get_drvdata(dev);
617 return sprintf(buf, "%u\n", !lm->kp_enabled);
620 static ssize_t lm8323_set_disable(struct device *dev,
621 struct device_attribute *attr,
622 const char *buf, size_t count)
624 struct lm8323_chip *lm = dev_get_drvdata(dev);
628 ret = strict_strtoul(buf, 10, &i);
630 mutex_lock(&lm->lock);
632 mutex_unlock(&lm->lock);
636 static DEVICE_ATTR(disable_kp, 0644, lm8323_show_disable, lm8323_set_disable);
638 static int __devinit lm8323_probe(struct i2c_client *client,
639 const struct i2c_device_id *id)
641 struct lm8323_platform_data *pdata = client->dev.platform_data;
642 struct input_dev *idev;
643 struct lm8323_chip *lm;
648 if (!pdata || !pdata->size_x || !pdata->size_y) {
649 dev_err(&client->dev, "missing platform_data\n");
653 if (pdata->size_x > 8) {
654 dev_err(&client->dev, "invalid x size %d specified\n",
659 if (pdata->size_y > 12) {
660 dev_err(&client->dev, "invalid y size %d specified\n",
665 lm = kzalloc(sizeof *lm, GFP_KERNEL);
666 idev = input_allocate_device();
672 i2c_set_clientdata(client, lm);
676 mutex_init(&lm->lock);
677 INIT_WORK(&lm->work, lm8323_work);
679 lm->size_x = pdata->size_x;
680 lm->size_y = pdata->size_y;
681 dev_vdbg(&client->dev, "Keypad size: %d x %d\n",
682 lm->size_x, lm->size_y);
684 lm->debounce_time = pdata->debounce_time;
685 lm->active_time = pdata->active_time;
689 /* Nothing's set up to service the IRQ yet, so just spin for max.
690 * 100ms until we can configure. */
691 tmo = jiffies + msecs_to_jiffies(100);
692 while (lm8323_read(lm, LM8323_CMD_READ_INT, data, 1) == 1) {
693 if (data[0] & INT_NOINIT)
696 if (time_after(jiffies, tmo)) {
697 dev_err(&client->dev,
698 "timeout waiting for initialisation\n");
705 lm8323_configure(lm);
707 /* If a true probe check the device */
708 if (lm8323_read_id(lm, data) != 0) {
709 dev_err(&client->dev, "device not found\n");
714 for (i = 0; i < LM8323_NUM_PWMS; i++) {
715 err = init_pwm(lm, i + 1, &client->dev, pdata->pwm_names[i]);
720 lm->kp_enabled = true;
721 err = device_create_file(&client->dev, &dev_attr_disable_kp);
725 idev->name = pdata->name ? : "LM8323 keypad";
726 snprintf(lm->phys, sizeof(lm->phys),
727 "%s/input-kp", dev_name(&client->dev));
728 idev->phys = lm->phys;
730 idev->evbit[0] = BIT(EV_KEY) | BIT(EV_MSC);
731 __set_bit(MSC_SCAN, idev->mscbit);
732 for (i = 0; i < LM8323_KEYMAP_SIZE; i++) {
733 __set_bit(pdata->keymap[i], idev->keybit);
734 lm->keymap[i] = pdata->keymap[i];
736 __clear_bit(KEY_RESERVED, idev->keybit);
739 __set_bit(EV_REP, idev->evbit);
741 err = input_register_device(idev);
743 dev_dbg(&client->dev, "error registering input device\n");
747 err = request_irq(client->irq, lm8323_irq,
748 IRQF_TRIGGER_FALLING | IRQF_DISABLED,
751 dev_err(&client->dev, "could not get IRQ %d\n", client->irq);
755 device_init_wakeup(&client->dev, 1);
756 enable_irq_wake(client->irq);
761 input_unregister_device(idev);
764 device_remove_file(&client->dev, &dev_attr_disable_kp);
767 if (lm->pwm[i].enabled)
768 led_classdev_unregister(&lm->pwm[i].cdev);
770 input_free_device(idev);
775 static int __devexit lm8323_remove(struct i2c_client *client)
777 struct lm8323_chip *lm = i2c_get_clientdata(client);
780 disable_irq_wake(client->irq);
781 free_irq(client->irq, lm);
782 cancel_work_sync(&lm->work);
784 input_unregister_device(lm->idev);
786 device_remove_file(&lm->client->dev, &dev_attr_disable_kp);
788 for (i = 0; i < 3; i++)
789 if (lm->pwm[i].enabled)
790 led_classdev_unregister(&lm->pwm[i].cdev);
799 * We don't need to explicitly suspend the chip, as it already switches off
800 * when there's no activity.
802 static int lm8323_suspend(struct i2c_client *client, pm_message_t mesg)
804 struct lm8323_chip *lm = i2c_get_clientdata(client);
807 set_irq_wake(client->irq, 0);
808 disable_irq(client->irq);
810 mutex_lock(&lm->lock);
811 lm->pm_suspend = true;
812 mutex_unlock(&lm->lock);
814 for (i = 0; i < 3; i++)
815 if (lm->pwm[i].enabled)
816 led_classdev_suspend(&lm->pwm[i].cdev);
821 static int lm8323_resume(struct i2c_client *client)
823 struct lm8323_chip *lm = i2c_get_clientdata(client);
826 mutex_lock(&lm->lock);
827 lm->pm_suspend = false;
828 mutex_unlock(&lm->lock);
830 for (i = 0; i < 3; i++)
831 if (lm->pwm[i].enabled)
832 led_classdev_resume(&lm->pwm[i].cdev);
834 enable_irq(client->irq);
835 set_irq_wake(client->irq, 1);
840 #define lm8323_suspend NULL
841 #define lm8323_resume NULL
844 static const struct i2c_device_id lm8323_id[] = {
849 static struct i2c_driver lm8323_i2c_driver = {
853 .probe = lm8323_probe,
854 .remove = __devexit_p(lm8323_remove),
855 .suspend = lm8323_suspend,
856 .resume = lm8323_resume,
857 .id_table = lm8323_id,
859 MODULE_DEVICE_TABLE(i2c, lm8323_id);
861 static int __init lm8323_init(void)
863 return i2c_add_driver(&lm8323_i2c_driver);
865 module_init(lm8323_init);
867 static void __exit lm8323_exit(void)
869 i2c_del_driver(&lm8323_i2c_driver);
871 module_exit(lm8323_exit);
873 MODULE_AUTHOR("Timo O. Karjalainen <timo.o.karjalainen@nokia.com>");
874 MODULE_AUTHOR("Daniel Stone");
875 MODULE_AUTHOR("Felipe Balbi <felipe.balbi@nokia.com>");
876 MODULE_DESCRIPTION("LM8323 keypad driver");
877 MODULE_LICENSE("GPL");