Received: by 2002:a25:c593:0:0:0:0:0 with SMTP id v141csp481802ybe; Fri, 13 Sep 2019 00:44:57 -0700 (PDT) X-Google-Smtp-Source: APXvYqxN+GgMkLILtw4RIHJbbsE++/l0MpiAn/DioLn3WuNwvti/6a4Pnc+mXRulSH29WjjG/bjG X-Received: by 2002:a50:b924:: with SMTP id m33mr45908186ede.61.1568360697853; Fri, 13 Sep 2019 00:44:57 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1568360697; cv=none; d=google.com; s=arc-20160816; b=lKcsZjoZk4czaz02wCmu5AJDScCHnotAlbQ5qwfdauxzurSFahxCcCEXdia4F7ix0P kBL8Me89ceV2KH3sK/+MfQRvdfbBpI7AoDq5vmWhTC9MSMovAhE3cVl4APXe27HKC3XR w05JgNQqpAgtZ4/aO154ZnCN+NaNkrjeZpzhrRWUoIzrXBUEczdDYb9Jj4cQR/hz5edg 8+C81rEBcFuvoNpEahViMMIu6s7TSlgpF8sESvlzvDBz84R70O+FfpbbcfSIsK7DS/rY uYGe3YCpY+2ZVzJS4blAeP2tPGE5v2h6wRnrk5boMS+psIa8DAwOSkPVAGLlXkSC770X KHuQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:message-id:references :in-reply-to:subject:cc:to:from:date:content-transfer-encoding :mime-version; bh=NxHEivy1+hV0klDa1xXRG3TySUeyyMUk5ZLTEGJyPYA=; b=UhizlIqRUc9tK0HDpydOT0qvw80rOXEkYtgujCG4qM9d2ypx4NXkCN6OwRtKoSk5XU S1HRBeRxK9jKon0itQYGkiSGPIgxdxHZ9lZQ/7sXBUyeCYa4NTYnMxPiH1+C2hAAw6zr oVaDSNbt8iB75m266NrcNoYsP6xm5hTvUWAemlg7esWs8hPpQuvjzP1Y8GJoUCOQytoh 3BZNqFXR4Zcd5T17MmxsisGwpTXPsiF5QM3iwb4PMQB3Spss9svBSFa/smK7qndSvX79 6KL//qnVchGwXyAPECNqdjFNCORau2rmLLDEb2S1cZyN3rlLoO/XZYhSAFQg4OJ4WlMX dVBw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id f3si1314173ejw.108.2019.09.13.00.44.33; Fri, 13 Sep 2019 00:44:57 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728910AbfIMHj2 (ORCPT + 99 others); Fri, 13 Sep 2019 03:39:28 -0400 Received: from protonic.xs4all.nl ([83.163.252.89]:42140 "EHLO protonic.nl" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1728666AbfIMHj1 (ORCPT ); Fri, 13 Sep 2019 03:39:27 -0400 Received: from webmail.promanet.nl (edge2.prtnl [192.168.1.170]) by sparta (Postfix) with ESMTP id DA51D44A00CB; Fri, 13 Sep 2019 09:41:27 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 13 Sep 2019 09:39:26 +0200 From: robin To: Marco Felsch Cc: "linux-input @ vger . kernel . org" , "linux-kernel @ vger . kernel . org" , Dmitry Torokhov , RobinGong , Pengutronix Kernel Team , Shawn Guo , Adam Ford , "linux-arm-kernel @ lists . infradead . org" Subject: Re: [PATCH v3] input: keyboard: snvs_pwrkey: Send key events for i.MX6 S, DL and Q In-Reply-To: <20190904065248.4i7q2vuxxt2xdnrr@pengutronix.de> References: <20190904062329.97520-1-robin@protonic.nl> <20190904065248.4i7q2vuxxt2xdnrr@pengutronix.de> Message-ID: X-Sender: robin@protonic.nl User-Agent: Roundcube Webmail/1.3.6 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2019-09-04 08:52, Marco Felsch wrote: > Hi Robin, > > thanks for the patch it looks quite good, just two minor nitpicks. > > On 19-09-04 06:23, Robin van der Gracht wrote: >> The first generation i.MX6 processors does not send an interrupt when >> the >> power key is pressed. It sends a power down request interrupt if the >> key is >> released before a hard shutdown (5 second press). This should allow >> software to bring down the SoC safely. >> >> For this driver to work as a regular power key with the older SoCs, we >> need >> to send a keypress AND release when we get the power down request irq. >> >> Signed-off-by: Robin van der Gracht >> --- >> >> Changes v2 -> v3: >> - Drop alt compatible string for identifying first revision snvs >> hardware, >> read minor revision from register instead. >> - Drop imx6qdl.dtsi modification and device-tree binding >> documentation. >> - Add an additional input_sync() to create 2 seperate input reports >> for press >> and release. >> >> drivers/input/keyboard/Kconfig | 2 +- >> drivers/input/keyboard/snvs_pwrkey.c | 28 >> ++++++++++++++++++++++++++-- >> 2 files changed, 27 insertions(+), 3 deletions(-) >> >> diff --git a/drivers/input/keyboard/Kconfig >> b/drivers/input/keyboard/Kconfig >> index 7c4f19dab34f..937e58da5ce1 100644 >> --- a/drivers/input/keyboard/Kconfig >> +++ b/drivers/input/keyboard/Kconfig >> @@ -436,7 +436,7 @@ config KEYBOARD_SNVS_PWRKEY >> depends on OF >> help >> This is the snvs powerkey driver for the Freescale i.MX >> application >> - processors that are newer than i.MX6 SX. >> + processors. >> >> To compile this driver as a module, choose M here; the >> module will be called snvs_pwrkey. >> diff --git a/drivers/input/keyboard/snvs_pwrkey.c >> b/drivers/input/keyboard/snvs_pwrkey.c >> index 5342d8d45f81..828580eee0d2 100644 >> --- a/drivers/input/keyboard/snvs_pwrkey.c >> +++ b/drivers/input/keyboard/snvs_pwrkey.c >> @@ -19,6 +19,7 @@ >> #include >> #include >> >> +#define SNVS_HPVIDR1_REG 0xF8 >> #define SNVS_LPSR_REG 0x4C /* LP Status Register */ >> #define SNVS_LPCR_REG 0x38 /* LP Control Register */ >> #define SNVS_HPSR_REG 0x14 >> @@ -37,6 +38,7 @@ struct pwrkey_drv_data { >> int wakeup; >> struct timer_list check_timer; >> struct input_dev *input; >> + u8 minor_rev; >> }; >> >> static void imx_imx_snvs_check_for_events(struct timer_list *t) >> @@ -45,6 +47,20 @@ static void imx_imx_snvs_check_for_events(struct >> timer_list *t) >> struct input_dev *input = pdata->input; >> u32 state; >> >> + if (pdata->minor_rev == 0) { > > Should we use a define here and .. > >> + /* >> + * The first generation i.MX6 SoCs only sends an interrupt on >> + * button release. To mimic power-key usage, we'll prepend a >> + * press event. >> + */ >> + input_report_key(input, pdata->keycode, 1); >> + input_sync(input); >> + input_report_key(input, pdata->keycode, 0); >> + input_sync(input); >> + pm_relax(input->dev.parent); >> + return; >> + } >> + >> regmap_read(pdata->snvs, SNVS_HPSR_REG, &state); >> state = state & SNVS_HPSR_BTN ? 1 : 0; >> >> @@ -67,13 +83,17 @@ static irqreturn_t imx_snvs_pwrkey_interrupt(int >> irq, void *dev_id) >> { >> struct platform_device *pdev = dev_id; >> struct pwrkey_drv_data *pdata = platform_get_drvdata(pdev); >> + unsigned long expire = jiffies; >> u32 lp_status; >> >> pm_wakeup_event(pdata->input->dev.parent, 0); >> >> regmap_read(pdata->snvs, SNVS_LPSR_REG, &lp_status); >> - if (lp_status & SNVS_LPSR_SPO) >> - mod_timer(&pdata->check_timer, jiffies + >> msecs_to_jiffies(DEBOUNCE_TIME)); >> + if (lp_status & SNVS_LPSR_SPO) { >> + if (pdata->minor_rev > 0) > > here? Just a nitpick, feel free to add/drop it. Like a Macro? #define FIRST_HW_REV(pdata) (pdata->minor_rev == 0) if (FIRST_HW_REV(pdata) { ... } or just a define to identify the minor rev used for the first hw revision #define FIRST_HW_MINOR_REV 0 if (pdata->minor_rev == FIRST_HW_MINOR_REV) { ... } Regards, Robin van der Gracht