From: Duarte Silva <duartejcsilva@gmail.com>
To: linux-acpi@vger.kernel.org
Subject: Problems evaluating WMI method
Date: Tue, 30 Sep 2008 23:56:09 +0100 [thread overview]
Message-ID: <200809302356.09618.duartejcsilva@gmail.com> (raw)
Hi,
After parsing the _WDG buffer from a PNP0C14 device I got this (the format is
<guid> - <object-id> - <parsed-guid-type> - <guid-type>)
C3A72B38-D3EF-42D3-8CBB-D5A57049F66D - AB - method - 2
E4FB94F9-7F2B-4173-AD1A-CD1D95086248 - event - 8
023B133E-49D1-4E10-B313-698220140DC2 - event - 8
37BE1AC0-C3F2-4B1F-BFBE-8FDEAF2814D6 - event - 8
911BAD44-7DF8-4FBB-9319-BABA1C4B293B - event - 8
4E5C4404-3CED-4A5E-8C7A-1BA875D00A43 - BA - method - 2
2B4F501A-BD3C-4394-8DCF-00A7D2BC8210 - BB - method - 2
05901221-D566-11D1-B2F0-00A0C9062910 - AC - unknown - 0
That first GUID map to WMAB (I guess). So why when I do this (simplified
version)
struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL };
struct acpi_buffer in;
structwmab_args args = {
.mar0 = 0x00,
.mar1 = 0x01,
.mar2 = 0x00,
};
in.length = (acpi_size)sizeof(struct wmab_args);
in.pointer = &args;
wmi_evaluate_method("C3A72B38-D3EF-42D3-8CBB-D5A57049F66D", 1, 1, &in, &out);
printk( KERN_INFO "QUERY %i\n", (u32)out.length);
kfree(out.pointer);
I get a output with a lenght of 24 and when I convert it to a acpi_object I
get type integer. Result in dmesg
QUERY 24
When the code in WMAB is
Method (WMAB, 3, Serialized)
{
Store (Arg0, MAR0)
Store (Arg1, MAR1)
Store (Arg2, MAR2)
If (LAnd (LGreaterEqual (MAR0, Zero), LLessEqual (MAR0, 0x2F)))
{
If (LEqual (MAR0, Zero))
{
If (LEqual (MAR1, One))
{
Return (0x0300)
}
Return (0x80000002)
}
(...)
With the parameters I provided it should be returning something like 0x300.
What Iam doing wrong?
next reply other threads:[~2008-09-30 22:58 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-30 22:56 Duarte Silva [this message]
2008-10-01 17:55 ` Problems evaluating WMI method Carlos Corbacho
2008-10-01 18:22 ` Duarte Silva
-- strict thread matches above, loose matches on Subject: below --
2008-10-01 20:13 Duarte Silva
2008-10-01 20:26 ` Carlos Corbacho
2008-10-01 20:48 ` Duarte Silva
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=200809302356.09618.duartejcsilva@gmail.com \
--to=duartejcsilva@gmail.com \
--cc=linux-acpi@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.