public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* RE: gpe-handler / acpi on ASUSL2400D
@ 2003-03-26 21:42 Grover, Andrew
       [not found] ` <F760B14C9561B941B89469F59BA3A847E96D6E-sBd4vmA9Se4Lll3ZsUKC9FDQ4js95KgL@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: Grover, Andrew @ 2003-03-26 21:42 UTC (permalink / raw)
  To: Sebastian Thias, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Have you tried the patch against 2.5.65 at sf.net/projects/acpi ?

I'm thinking this is another symptom of our ignoring of GPE1, which that
patch fixes.

-- Andy

> -----Original Message-----
> From: Sebastian Thias [mailto:post-OXl1b/uZKHizQB+pC5nmwQ@public.gmane.org] 
> Sent: Wednesday, March 26, 2003 1:31 PM
> To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> Subject: Re: [ACPI] gpe-handler / acpi on ASUSL2400D
> 
> 
> Am Mittwoch 26 März 2003 19:57 schrieben Sie:
> > > From: Sebastian Thias [mailto:post-OXl1b/uZKHizQB+pC5nmwQ@public.gmane.org]
> > > i'm a newbie on both acpi- and kernel-programming.
> > > I've got an ASUSL2400D-laptop and kenel 2.5.65.
> >
> > Sounds like you're a quick learner. :)
> 
> Well, to be honest I started yesterday at noon. After a 
> couple of dozens of
> kernel-crashes things started to get working :-)
> 
> >
> > > Upon pressing one of my laptops hotkeys, I receive an error
> > > message about
> > > a missing gpe-handler.
> > > After fiddling a bit, I wrote a module that installs a
> > > gpe-handler for 0x1D
> > > (the one triggered by my hotkeys). The handler calls
> > > "\_GPE._L1D" (using
> > > acpi_evaluate_object ...). Only then can I receive 
> notify-events for
> > > "\_SB_.HOTK" and only then buttons like switching
> > > LCD-Backlights off or
> > > changing the brightness work.
> > >
> > > My question: Why do I have to install a gpe-handler by myself
> > > if there is
> > > a mehod "\_GPE._L1D" in dsdt. Is that the usual way to do 
> such things?
> >
> > Is the button driver installed?
> 
> Yes. Powerbutton works. I compiled all drivers into the 
> kernel. Lid state is 
> also reported correctly, but I don't receive Lid events. If I 
> try to install 
> a notify-handler for the lid, I get returned, that there is 
> already a handler 
> present.
> 
> >
> > The usual way is that you have a driver (e.g. for the lid 
> button) that
> > registers for notifications on the lid device. When the lid 
> button is
> > pressed, it generates a GPE, which the lid driver finds out about
> > because the core calls the GPE method associated with the GPE (e.g.
> > _L1D) and that method does a Notify() on the lid device. 
> The lid device
> > gets the notification and tells power policy via /proc/acpi/event.
> >
> > I'm not quite clear what is happening in your case. Can you 
> elaborate
> > further?
> >
> > Regards -- Andy
> 
> As I said before, the only "button-like" thing that is 
> working, is the 
> power-button. Any other button produces:
>    "acpi_ev_gpe_dispatch[...] No handler present for GPE[00], 
> disabling 
> event."
> (the gpe number is incorrect. The dispatch code always tells 
> "00", regardless 
> which gpe has really been triggered)
> 
> If I install my gpe-handler that calls _L1D "manually", I can 
> also receive 
> sleep-button events in /proc/acpi/events. The other hotkeys 
> also work then 
> (when a "\_SB_.HOTK" notify-handler is installed). Lid-events 
> are still not
> reported.
>   If I interpret your answer correctly, it seems that the 
> core does NOT call
> the _L1D method. What could be the reason for this? Do you want to see
> my dsdt?
> 
> Greetings
>       Sebastian
> 
> 
> 
> -------------------------------------------------------
> This SF.net email is sponsored by:
> The Definitive IT and Networking Event. Be There!
> NetWorld+Interop Las Vegas 2003 -- Register today!
> http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en
> _______________________________________________
> Acpi-devel mailing list
> Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> https://lists.sourceforge.net/lists/listinfo/acpi-devel
> 


-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en

^ permalink raw reply	[flat|nested] 7+ messages in thread
* RE: gpe-handler / acpi on ASUSL2400D
@ 2003-03-27  0:40 Grover, Andrew
       [not found] ` <F760B14C9561B941B89469F59BA3A847E96D73-sBd4vmA9Se4Lll3ZsUKC9FDQ4js95KgL@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: Grover, Andrew @ 2003-03-27  0:40 UTC (permalink / raw)
  To: Sebastian Thias, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

> From: Sebastian Thias [mailto:post-OXl1b/uZKHizQB+pC5nmwQ@public.gmane.org] 
> > Have you tried the patch against 2.5.65 at sf.net/projects/acpi ?
> >
> > I'm thinking this is another symptom of our ignoring of 
> GPE1, which that
> > patch fixes.

> I don't know if I'm too stupid, but: 
> It didn't compile, seemed that there was one slash missing at 
> the front
> of a comment.
> Then it compiled, but didn't link. It was "scan.o" where the 
> missing symbols
> were located. I changed drivers/acpi/Makefile to link scan.o, 
> too. Then my 
> kernel was built ok, but upon rebooting I got a 
> null-pointer-dereference-oops, "Attempting to kill init".
> 
> *?*

Can anyone else duplicate this? I can't.

-- Andy



-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en

^ permalink raw reply	[flat|nested] 7+ messages in thread
* RE: gpe-handler / acpi on ASUSL2400D
@ 2003-03-26 18:57 Grover, Andrew
       [not found] ` <F760B14C9561B941B89469F59BA3A84725A22B-sBd4vmA9Se4Lll3ZsUKC9FDQ4js95KgL@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: Grover, Andrew @ 2003-03-26 18:57 UTC (permalink / raw)
  To: Sebastian Thias, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

> From: Sebastian Thias [mailto:post-OXl1b/uZKHizQB+pC5nmwQ@public.gmane.org] 
> i'm a newbie on both acpi- and kernel-programming.
> I've got an ASUSL2400D-laptop and kenel 2.5.65.

Sounds like you're a quick learner. :)

> Upon pressing one of my laptops hotkeys, I receive an error 
> message about
> a missing gpe-handler.
> After fiddling a bit, I wrote a module that installs a 
> gpe-handler for 0x1D 
> (the one triggered by my hotkeys). The handler calls 
> "\_GPE._L1D" (using 
> acpi_evaluate_object ...). Only then can I receive notify-events for 
> "\_SB_.HOTK" and only then buttons like switching 
> LCD-Backlights off or 
> changing the brightness work.
> 
> My question: Why do I have to install a gpe-handler by myself 
> if there is
> a mehod "\_GPE._L1D" in dsdt. Is that the usual way to do such things?

Is the button driver installed?

The usual way is that you have a driver (e.g. for the lid button) that
registers for notifications on the lid device. When the lid button is
pressed, it generates a GPE, which the lid driver finds out about
because the core calls the GPE method associated with the GPE (e.g.
_L1D) and that method does a Notify() on the lid device. The lid device
gets the notification and tells power policy via /proc/acpi/event.

I'm not quite clear what is happening in your case. Can you elaborate
further?

Regards -- Andy


-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en

^ permalink raw reply	[flat|nested] 7+ messages in thread
* gpe-handler / acpi on ASUSL2400D
@ 2003-03-26 13:36 Sebastian Thias
  0 siblings, 0 replies; 7+ messages in thread
From: Sebastian Thias @ 2003-03-26 13:36 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Hi,

i'm a newbie on both acpi- and kernel-programming.
I've got an ASUSL2400D-laptop and kenel 2.5.65.

Upon pressing one of my laptops hotkeys, I receive an error message about
a missing gpe-handler.
After fiddling a bit, I wrote a module that installs a gpe-handler for 0x1D 
(the one triggered by my hotkeys). The handler calls "\_GPE._L1D" (using 
acpi_evaluate_object ...). Only then can I receive notify-events for 
"\_SB_.HOTK" and only then buttons like switching LCD-Backlights off or 
changing the brightness work.

My question: Why do I have to install a gpe-handler by myself if there is
a mehod "\_GPE._L1D" in dsdt. Is that the usual way to do such things?

Thanks in advance
     S. Thias


-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2003-03-27 14:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-26 21:42 gpe-handler / acpi on ASUSL2400D Grover, Andrew
     [not found] ` <F760B14C9561B941B89469F59BA3A847E96D6E-sBd4vmA9Se4Lll3ZsUKC9FDQ4js95KgL@public.gmane.org>
2003-03-26 22:27   ` Sebastian Thias
  -- strict thread matches above, loose matches on Subject: below --
2003-03-27  0:40 Grover, Andrew
     [not found] ` <F760B14C9561B941B89469F59BA3A847E96D73-sBd4vmA9Se4Lll3ZsUKC9FDQ4js95KgL@public.gmane.org>
2003-03-27 14:17   ` Sebastian Thias
2003-03-26 18:57 Grover, Andrew
     [not found] ` <F760B14C9561B941B89469F59BA3A84725A22B-sBd4vmA9Se4Lll3ZsUKC9FDQ4js95KgL@public.gmane.org>
2003-03-26 21:30   ` Sebastian Thias
2003-03-26 13:36 Sebastian Thias

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox