From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hans de Goede Subject: Re: [PATCH v2] Input: silead - Do not try to directly access the GPIO when using ACPI pm Date: Mon, 23 Jan 2017 11:05:14 +0100 Message-ID: <8a23b7b2-a7aa-d62d-947d-31301a0c92cc@redhat.com> References: <20170122200008.27027-1-hdegoede@redhat.com> <20170122222015.GA31009@dtor-ws> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mx1.redhat.com ([209.132.183.28]:52504 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750725AbdAWKFW (ORCPT ); Mon, 23 Jan 2017 05:05:22 -0500 In-Reply-To: <20170122222015.GA31009@dtor-ws> Sender: linux-input-owner@vger.kernel.org List-Id: linux-input@vger.kernel.org To: Dmitry Torokhov Cc: "russianneuromancer @ ya . ru" , Gregor Riepl , linux-input@vger.kernel.org Hi, On 22-01-17 23:20, Dmitry Torokhov wrote: > On Sun, Jan 22, 2017 at 09:00:08PM +0100, Hans de Goede wrote: >> On some x86 tablets we cannot directly access the GPIOs as they are >> claimed by the ACPI tables, so check it the i2c client is not being >> power-managed by ACPI before trying to get the power pin GPIO. > > Why do we even get this GPIO if driver is not supposed to be using it? > I'd much rather gpio provider hid it from the driver instead of every > driver having this check. The problem is that the gpio subsys does not really know about ACPI managed GPIOs the way this works is that the firmware sets a special "reserved for firmware use" bit in the gpio control register and directly bit-bangs the gpio control register when it wants to toggle the gpio. So there is no awareness of these gpios being reserved (as gpios) at the ACPI level AFAICT. The hardware specific low-level gpio chip driver checks this bit when we request the gpio and returns -EBUSY. Regards, Hans > > Thanks. > >> >> Signed-off-by: Hans de Goede >> --- >> Changes in v2: >> -Check acpi_bus_power_manageable() instead of trying to directly >> control the acpi power level ourselves >> --- >> drivers/input/touchscreen/silead.c | 22 ++++++++++++++++------ >> 1 file changed, 16 insertions(+), 6 deletions(-) >> >> diff --git a/drivers/input/touchscreen/silead.c b/drivers/input/touchscreen/silead.c >> index 404830a..2fbcd7f 100644 >> --- a/drivers/input/touchscreen/silead.c >> +++ b/drivers/input/touchscreen/silead.c >> @@ -31,6 +31,7 @@ >> #include >> #include >> >> +#include >> #include >> >> #define SILEAD_TS_NAME "silead_ts" >> @@ -494,12 +495,21 @@ static int silead_ts_probe(struct i2c_client *client, >> if (error) >> return error; >> >> - /* Power GPIO pin */ >> - data->gpio_power = devm_gpiod_get_optional(dev, "power", GPIOD_OUT_LOW); >> - if (IS_ERR(data->gpio_power)) { >> - if (PTR_ERR(data->gpio_power) != -EPROBE_DEFER) >> - dev_err(dev, "Shutdown GPIO request failed\n"); >> - return PTR_ERR(data->gpio_power); >> + /* >> + * If device power is not managed by ACPI, get the power_gpio >> + * and manage it ourselves. >> + */ >> +#ifdef CONFIG_ACPI >> + if (!acpi_bus_power_manageable(ACPI_HANDLE(dev))) >> +#endif >> + { >> + data->gpio_power = devm_gpiod_get_optional(dev, "power", >> + GPIOD_OUT_LOW); >> + if (IS_ERR(data->gpio_power)) { >> + if (PTR_ERR(data->gpio_power) != -EPROBE_DEFER) >> + dev_err(dev, "Power GPIO request failed\n"); >> + return PTR_ERR(data->gpio_power); >> + } >> } >> >> error = silead_ts_setup(client); >> -- >> 2.9.3 >> >