The imx_keypad driver is set wake capable in the imx_keypad_probe(),
but it doesn't implement suspend and reusme callback interface.
From the i.MX series MCU Reference Manual, the kpp (keypad port) is
a major wake up source which can detect any key press even in low
power modes and even when there is no clock.
Now add suspend and resume callback functions for this driver.
Signed-off-by: Hui Wang <redacted>
---
In the V2:
1) add a check for input->users before disable clock.
2) add mutex_lock/unlock to protect input->users checking.
3) use SIMPLE_DEV_PM_OPS.
drivers/input/keyboard/imx_keypad.c | 46 +++++++++++++++++++++++++++++++++++
1 files changed, 46 insertions(+), 0 deletions(-)
@@ -567,10 +567,56 @@ static int __devexit imx_keypad_remove(struct platform_device *pdev)return0;}+#ifdef CONFIG_PM+staticintimx_kbd_suspend(structdevice*dev)+{+structplatform_device*pdev=to_platform_device(dev);+structimx_keypad*kbd=platform_get_drvdata(pdev);+structinput_dev*input_dev=kbd->input_dev;++/* imx kbd can wake up system even clock is disabled */+mutex_lock(&input_dev->mutex);++if(input_dev->users)+clk_disable(kbd->clk);++mutex_unlock(&input_dev->mutex);++if(device_may_wakeup(&pdev->dev))+enable_irq_wake(kbd->irq);++return0;+}++staticintimx_kbd_resume(structdevice*dev)+{+structplatform_device*pdev=to_platform_device(dev);+structimx_keypad*kbd=platform_get_drvdata(pdev);+structinput_dev*input_dev=kbd->input_dev;++if(device_may_wakeup(&pdev->dev))+disable_irq_wake(kbd->irq);++mutex_lock(&input_dev->mutex);++if(input_dev->users)+clk_enable(kbd->clk);++mutex_unlock(&input_dev->mutex);++return0;+}++staticSIMPLE_DEV_PM_OPS(imx_kbd_pm_ops,imx_kbd_suspend,imx_kbd_resume);+#endif+staticstructplatform_driverimx_keypad_driver={.driver={.name="imx-keypad",.owner=THIS_MODULE,+#ifdef CONFIG_PM+.pm=&imx_kbd_pm_ops,+#endif},.probe=imx_keypad_probe,.remove=__devexit_p(imx_keypad_remove),
The imx_keypad driver is set wake capable in the imx_keypad_probe(),
but it doesn't implement suspend and reusme callback interface.
quoted
From the i.MX series MCU Reference Manual, the kpp (keypad port) is
a major wake up source which can detect any key press even in low
power modes and even when there is no clock.
Now add suspend and resume callback functions for this driver.
Signed-off-by: Hui Wang <redacted>
Looks good to me. Thanks
Reviewed-by: Wanlong Gao <redacted>
quoted hunk
---
In the V2:
1) add a check for input->users before disable clock.
2) add mutex_lock/unlock to protect input->users checking.
3) use SIMPLE_DEV_PM_OPS.
drivers/input/keyboard/imx_keypad.c | 46 +++++++++++++++++++++++++++++++++++
1 files changed, 46 insertions(+), 0 deletions(-)
@@ -567,10 +567,56 @@ static int __devexit imx_keypad_remove(struct platform_device *pdev)return0;}+#ifdef CONFIG_PM+staticintimx_kbd_suspend(structdevice*dev)+{+structplatform_device*pdev=to_platform_device(dev);+structimx_keypad*kbd=platform_get_drvdata(pdev);+structinput_dev*input_dev=kbd->input_dev;++/* imx kbd can wake up system even clock is disabled */+mutex_lock(&input_dev->mutex);++if(input_dev->users)+clk_disable(kbd->clk);++mutex_unlock(&input_dev->mutex);++if(device_may_wakeup(&pdev->dev))+enable_irq_wake(kbd->irq);++return0;+}++staticintimx_kbd_resume(structdevice*dev)+{+structplatform_device*pdev=to_platform_device(dev);+structimx_keypad*kbd=platform_get_drvdata(pdev);+structinput_dev*input_dev=kbd->input_dev;++if(device_may_wakeup(&pdev->dev))+disable_irq_wake(kbd->irq);++mutex_lock(&input_dev->mutex);++if(input_dev->users)+clk_enable(kbd->clk);++mutex_unlock(&input_dev->mutex);++return0;+}++staticSIMPLE_DEV_PM_OPS(imx_kbd_pm_ops,imx_kbd_suspend,imx_kbd_resume);+#endif+staticstructplatform_driverimx_keypad_driver={.driver={.name="imx-keypad",.owner=THIS_MODULE,+#ifdef CONFIG_PM+.pm=&imx_kbd_pm_ops,+#endif},.probe=imx_keypad_probe,.remove=__devexit_p(imx_keypad_remove),
On Wed, Oct 12, 2011 at 05:48:33PM +0800, Wanlong Gao wrote:
On 10/12/2011 05:39 PM, Hui Wang wrote:
quoted
The imx_keypad driver is set wake capable in the imx_keypad_probe(),
but it doesn't implement suspend and reusme callback interface.
quoted
From the i.MX series MCU Reference Manual, the kpp (keypad port) is
a major wake up source which can detect any key press even in low
power modes and even when there is no clock.
Now add suspend and resume callback functions for this driver.
Signed-off-by: Hui Wang <redacted>
Looks good to me. Thanks
Reviewed-by: Wanlong Gao <redacted>