From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751301AbdH2CLn (ORCPT ); Mon, 28 Aug 2017 22:11:43 -0400 Received: from mailgw01.mediatek.com ([210.61.82.183]:17464 "EHLO mailgw01.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751209AbdH2CLl (ORCPT ); Mon, 28 Aug 2017 22:11:41 -0400 Message-ID: <1503972695.3340.16.camel@mhfsdcap03> Subject: Re: [PATCH v3 4/5] input: Add MediaTek PMIC keys support From: Chen Zhong To: Dmitry Torokhov CC: Rob Herring , Mark Rutland , Matthias Brugger , Lee Jones , Eddie Huang , "Alessandro Zummo" , Alexandre Belloni , Andi Shyti , Javier Martinez Canillas , Linus Walleij , Jaechul Lee , , , , , , Date: Tue, 29 Aug 2017 10:11:35 +0800 In-Reply-To: <20170828165757.GE12195@dtor-ws> References: <1503642753-12385-1-git-send-email-chen.zhong@mediatek.com> <1503642753-12385-5-git-send-email-chen.zhong@mediatek.com> <20170828165757.GE12195@dtor-ws> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2017-08-28 at 09:57 -0700, Dmitry Torokhov wrote: > Hi Chen, > > On Fri, Aug 25, 2017 at 02:32:32PM +0800, Chen Zhong wrote: > > +static int mtk_pmic_key_setup(struct mtk_pmic_keys *keys, > > + struct pmic_keys_info *info) > > +{ > > + int ret; > > + > > + info->keys = keys; > > + > > + ret = regmap_update_bits(keys->regmap, info->regs->intsel_reg, > > + info->regs->intsel_mask, > > + info->regs->intsel_mask); > > + if (ret < 0) > > + return ret; > > + > > + ret = devm_request_threaded_irq(keys->dev, info->irq, NULL, > > + mtk_pmic_keys_irq_handler_thread, > > + IRQF_ONESHOT | IRQF_TRIGGER_HIGH, > > + "mtk-pmic-keys", info); > > + if (ret) { > > + dev_err(keys->dev, "Failed to request IRQ: %d: %d\n", > > + info->irq, ret); > > + return ret; > > + } > > + > > + if (info->wakeup) > > + irq_set_irq_wake(info->irq, 1); > > Normally we do this in suspend() (and undo in resume()), and I believe > the drover API is enable_irq_wake() and disable_irq_wake(). > Hi Dmitry, I'll add suspend/resume callback functions and do this with enable_irq_wake() and disable_irq_wake(). Thank you. > Thanks. >