linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Rafael J. Wysocki" <rafael@kernel.org>
To: Wei-Ning Huang <wnhuang@google.com>
Cc: Zhang Rui <rui.zhang@intel.com>,
	"Rafael J . Wysocki" <rjw@rjwysocki.net>,
	Len Brown <lenb@kernel.org>,
	ACPI Devel Maling List <linux-acpi@vger.kernel.org>,
	LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] ACPI / button: add support for tablet mode switch
Date: Thu, 1 Sep 2016 00:55:15 +0200	[thread overview]
Message-ID: <CAJZ5v0imPfDFc=f1Phgb28QTjb0C4O49b9Xuob+eD4zDFBxBMg@mail.gmail.com> (raw)
In-Reply-To: <CABicQ-XJaYGiDVKgefwN-6ckcwepUAvtpjJhwQN3cw389a+12w@mail.gmail.com>

On Wed, Aug 31, 2016 at 10:52 AM, Wei-Ning Huang <wnhuang@google.com> wrote:
> On Wed, Aug 31, 2016 at 4:01 PM, Zhang Rui <rui.zhang@intel.com> wrote:
>> On 三, 2016-08-31 at 15:33 +0800, Wei-Ning Huang wrote:
>>> From: Wei-Ning Huang <wnhuang@chromium.org>
>>>
>>> ACPI PNP device HID 'PNP0C60' is a device that indicates tablet mode
>>> status. Add support for mapping this device to the SW_TABLET_MODE
>>> input
>>> event.
>>>
>>> Signed-off-by: Wei-Ning Huang <wnhuang@chromium.org>
>>> ---
>>>  drivers/acpi/button.c | 36 ++++++++++++++++++++++++++++++++++++
>>>  1 file changed, 36 insertions(+)
>>>
>>> diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c
>>> index 148f4e5..50e9de6 100644
>>> --- a/drivers/acpi/button.c
>>> +++ b/drivers/acpi/button.c
>>> @@ -53,6 +53,11 @@
>>>  #define ACPI_BUTTON_DEVICE_NAME_LID  "Lid Switch"
>>>  #define ACPI_BUTTON_TYPE_LID         0x05
>>>
>>> +#define ACPI_BUTTON_SUBCLASS_TABLET  "tablet"
>>> +#define ACPI_BUTTON_HID_TABLET               "PNP0C60"
>>> +#define ACPI_BUTTON_DEVICE_NAME_TABLET       "Tablet Mode Switch"
>>> +#define ACPI_BUTTON_TYPE_TABLET              0x07
>>> +
>>>  #define ACPI_BUTTON_LID_INIT_IGNORE  0x00
>>>  #define ACPI_BUTTON_LID_INIT_OPEN    0x01
>>>  #define ACPI_BUTTON_LID_INIT_METHOD  0x02
>>> @@ -70,6 +75,7 @@ static const struct acpi_device_id
>>> button_device_ids[] = {
>>>       {ACPI_BUTTON_HID_SLEEPF, 0},
>>>       {ACPI_BUTTON_HID_POWER,  0},
>>>       {ACPI_BUTTON_HID_POWERF, 0},
>>> +     {ACPI_BUTTON_HID_TABLET, 0},
>>>       {"", 0},
>>>  };
>>>  MODULE_DEVICE_TABLE(acpi, button_device_ids);
>>> @@ -305,6 +311,23 @@ static void acpi_lid_initialize_state(struct
>>> acpi_device *device)
>>>       }
>>>  }
>>>
>>> +static int acpi_tablet_send_state(struct acpi_device *device)
>>> +{
>>> +     struct acpi_button *button = acpi_driver_data(device);
>>> +     unsigned long long state;
>>> +     acpi_status status;
>>> +
>>> +     status = acpi_evaluate_integer(device->handle, "_TBL", NULL,
>>> &state);
>>
>> Control methods with prefix "_" suggests this is an ACPI predefined
>> control method, but I can not find it in ACPI spec 6.1.
>> Can you illustrate me where I can find the definition of _TBL?
>
> Sorry, I'm not very familiar with ACPI's control method.

So apparently you don't really know what the patch you've posted is doing.

> '_TBL' is not a predefined ACPI control method according to the ACPI 6.1 spec.
> Maybe I should change it to '_LID'? As a tablet switch is sort of a
> 'inverted' lid switch.

Is that _TBL thing documented anywhere?

Thanks,
Rafael

      reply	other threads:[~2016-08-31 23:00 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-31  7:33 [PATCH] ACPI / button: add support for tablet mode switch Wei-Ning Huang
2016-08-31  8:01 ` Zhang Rui
2016-08-31  8:52   ` Wei-Ning Huang
2016-08-31 22:55     ` Rafael J. Wysocki [this message]

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='CAJZ5v0imPfDFc=f1Phgb28QTjb0C4O49b9Xuob+eD4zDFBxBMg@mail.gmail.com' \
    --to=rafael@kernel.org \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rjw@rjwysocki.net \
    --cc=rui.zhang@intel.com \
    --cc=wnhuang@google.com \
    /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;
as well as URLs for NNTP newsgroup(s).