From: Takashi Iwai <tiwai@suse.de>
To: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: linux-kernel@vger.kernel.org, Lee Jones <lee.jones@linaro.org>,
"Rafael J . Wysocki" <rjw@rjwysocki.net>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Mika Westerberg <mika.westerberg@linux.intel.com>,
Johannes Stezenbach <js@sig21.net>,
linux-input@vger.kernel.org, linux-acpi@vger.kernel.org
Subject: Re: [PATCH 2/3] input/keyboard: Add support for Dollar Cove TI power button
Date: Thu, 31 Aug 2017 22:34:20 +0200 [thread overview]
Message-ID: <s5h7exjxyr7.wl-tiwai@suse.de> (raw)
In-Reply-To: <20170831183355.GB14370@dtor-ws>
On Thu, 31 Aug 2017 20:33:55 +0200,
Dmitry Torokhov wrote:
>
> Hi Takashi,
>
> On Tue, Aug 22, 2017 at 07:57:09AM +0200, Takashi Iwai wrote:
> > This provides a new input driver for supporting the power button on
> > Dollar Cove TI PMIC, found on Cherrytrail-based devices.
> > The patch is based on the original work by Intel, found at:
> > https://github.com/01org/ProductionKernelQuilts
> >
> > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=193891
> > Signed-off-by: Takashi Iwai <tiwai@suse.de>
> > ---
> > drivers/input/keyboard/Kconfig | 7 +++
> > drivers/input/keyboard/Makefile | 1 +
> > drivers/input/keyboard/dc_ti_pwrbtn.c | 85 +++++++++++++++++++++++++++++++++++
>
> Not sure if it ends up in drivers/input/keyboard, or drivers/input/misc/
> (where most power buttons live) or in platform drivers, still a few
> comments below.
Oh sorry, I forgot to put you to Cc after v2 patch.
Per Andy's suggestion, the driver was moved to drivers/platform/x86
now. For v3 patchset, see the following thread.
https://marc.info/?i=20170825134443.14843-1-tiwai%40suse.de
> > +config KEYBOARD_DC_TI_PWRBTN
> > + tristate "Dollar Cove TI power button driver"
> > + depends on INTEL_SOC_PMIC_DC_TI
> > + help
> > + Say Y here fi you want to have a power button driver for
> > + Dollar Cove TI PMIC.
>
> If keeping in input we customarily call out the module name (see a few
> lines above).
I changed the driver and config names to follow the platform driver.
> > +#define DC_TI_SIRQ_REG 0x3
> > +#define SIRQ_PWRBTN_REL (1 << 0)
>
> BIT()?
OK.
> > +#define DRIVER_NAME "dc_ti_pwrbtn"
> > +
> > +static irqreturn_t dc_ti_pwrbtn_interrupt(int irq, void *dev_id)
> > +{
> > + struct input_dev *pwrbtn_input = dev_id;
> > + struct device *dev = pwrbtn_input->dev.parent;
> > + struct regmap *regmap = dev_get_drvdata(dev);
> > + int state;
> > +
> > + if (!regmap_read(regmap, DC_TI_SIRQ_REG, &state)) {
> > + dev_dbg(dev, "SIRQ_REG=0x%x\n", state);
> > + state &= SIRQ_PWRBTN_REL;
> > + input_event(pwrbtn_input, EV_KEY, KEY_POWER, !state);
>
> Why not
>
> input_report_key(pwrbtn_input, KEY_POWER,
> !(state & SIRQ_PWRBTN_REL));
Sounds better, indeed.
> > + input_sync(pwrbtn_input);
> > + }
> > +
> > + return IRQ_HANDLED;
> > +}
> > +
> > +static int dc_ti_pwrbtn_probe(struct platform_device *pdev)
> > +{
> > + struct device *dev = &pdev->dev;
> > + struct intel_soc_pmic *pmic = dev_get_drvdata(dev->parent);
> > + struct input_dev *pwrbtn_input;
> > + int irq;
> > + int ret;
> > +
> > + irq = platform_get_irq(pdev, 0);
> > + if (irq < 0)
> > + return -EINVAL;
>
> Why do you clobber return value? Simply return "irq".
OK.
> > + pwrbtn_input = devm_input_allocate_device(dev);
> > + if (!pwrbtn_input)
> > + return -ENOMEM;
> > + pwrbtn_input->name = pdev->name;
> > + pwrbtn_input->phys = "dc-ti-power/input0";
> > + pwrbtn_input->id.bustype = BUS_HOST;
> > + pwrbtn_input->dev.parent = dev;
>
> Not needed since devm_input_allocate_device() does it for us.
OK.
> > + input_set_capability(pwrbtn_input, EV_KEY, KEY_POWER);
> > + ret = input_register_device(pwrbtn_input);
> > + if (ret)
> > + return ret;
>
> If staying in input, can we please call this variable err or error?
OK, I don't mind to change it.
> > +
> > + dev_set_drvdata(dev, pmic->regmap);
> > +
> > + ret = devm_request_threaded_irq(dev, irq, NULL, dc_ti_pwrbtn_interrupt,
> > + 0, KBUILD_MODNAME, pwrbtn_input);
> > + if (ret)
> > + return ret;
> > +
> > + ret = enable_irq_wake(irq);
> > + if (ret)
> > + dev_warn(dev, "Can't enable IRQ as wake source: %d\n", ret);
>
> We do not normally enable wake IRQs in probe, but instead do:
>
> device_init_wakeup(&pdev->dev, true);
> in probe()
Right, this was already changed in the later version.
But...
> and then check it in suspend/resume:
>
> if (device_may_wakeup(dev)) {
> err = enable_irq_wake(XXX->irq);
> if (!err)
> XXX->irq_wake_enabled = true;
> }
>
> ...
>
> if (XXX->irq_wake_enabled)
> disable_irq_wake(XXX->irq);
>
> This allows userspace to inhibit wakeup, if needed.
... this wasn't. Will put it.
Thank your for the review!
Takashi
next prev parent reply other threads:[~2017-08-31 20:34 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-22 5:57 [PATCH 0/3] Dollar Cove TI PMIC support for Intel Cherry Trail Takashi Iwai
2017-08-22 5:57 ` [PATCH 1/3] mfd: Add support for Cherry Trail Dollar Cove TI PMIC Takashi Iwai
2017-08-22 9:37 ` Andy Shevchenko
2017-08-22 10:27 ` Takashi Iwai
2017-08-22 5:57 ` [PATCH 2/3] input/keyboard: Add support for Dollar Cove TI power button Takashi Iwai
2017-08-22 9:42 ` Andy Shevchenko
2017-08-22 10:58 ` Takashi Iwai
2017-08-22 17:25 ` Johannes Stezenbach
2017-08-31 18:33 ` Dmitry Torokhov
2017-08-31 20:34 ` Takashi Iwai [this message]
2017-09-01 11:09 ` Andy Shevchenko
2017-09-01 12:12 ` Takashi Iwai
2017-08-22 5:57 ` [PATCH 3/3] ACPI / PMIC: Add opregion driver for Intel Dollar Cove TI PMIC Takashi Iwai
2017-08-22 9:58 ` Andy Shevchenko
2017-08-22 10:25 ` Takashi Iwai
2017-08-22 11:01 ` Takashi Iwai
2017-08-22 11:37 ` Andy Shevchenko
2017-08-22 12:06 ` Takashi Iwai
2017-08-22 12:08 ` Andy Shevchenko
2017-08-22 12:26 ` Takashi Iwai
2017-08-22 13:26 ` Andy Shevchenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=s5h7exjxyr7.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=andriy.shevchenko@linux.intel.com \
--cc=dmitry.torokhov@gmail.com \
--cc=js@sig21.net \
--cc=lee.jones@linaro.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mika.westerberg@linux.intel.com \
--cc=rjw@rjwysocki.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox