public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC] dev_acpi: support for userspace access to acpi
  2004-10-15 22:39                     ` Alex Williamson
@ 2004-10-26 20:55                       ` Alex Williamson
  0 siblings, 0 replies; 5+ messages in thread
From: Alex Williamson @ 2004-10-26 20:55 UTC (permalink / raw)
  To: linux-kernel; +Cc: acpi-devel


   Announcing the next revision of dev_acpi.  The dev_acpi module
provides userspace access to ACPI namespace using a simple character
device file.  For further discussion of the interface, see the README
file in the tarball.  The current release is available here:

http://free.linux.hp.com/~awilliam/acpi/dev_acpi/dev_acpi-20041026.tar.bz2

(it's a little big to post here raw, but if requested I'd be happy to
post the driver by itself)

   I've been tossing around sysfs and device file interfaces to the ACPI
namespace for a while now.  The idea is that there's way too much
information in namespace to not provide a userspace interface to it.
Examples include projects springing up to support ACPI features on
various laptops, increasing dependence on developing code using ACPI,
extracting system/platform information from ACPI namespace.  In short,
there are a lot of really simple things that userspace could use ACPI
namespace for, but there's currently no way to get to it.

   Previous iterations using sysfs looked pretty, but never really
achieved the full potential of the interface (no ioctl, read issues on
files, complex data for sysfs, file per operation, etc...).  The device
file interface provides a more comprehensive yet compact interface,
along with a 32bit compatibility layer, and sane read semantics on the
file.

   This revision cleans up quite a bit of code, adds some documentation
in the README file, adds a number of interfaces, and adds several more
example program, with the intent of sparking more interest.  I've
updated the acpitree program to list a bit more data, but it's basically
the same.  For anyone trying to wrap their head around ACPI namespace,
it's a great tool for getting a simple visual representation of the data
available.  I added a tool called acpivideo that will hopefully be
interesting to laptop users.  It's able to set the active video output
device, much like the hotkey on most laptops (but from command line).
It also has a daemon mode that sets up a notify handler (yes, from
userspace) and listens for events on the VGA device.  When an event is
received, it evaluates the requested state change and pokes ACPI to do
it.  See the README for more info.  If anyone knows how to poke X to not
block the switch it'd be interesting to add the hooks (currently only
seems to work from a vt).

   I added another simple program called acpiundock.  If you have a
laptop docking station with an electo-mechanical eject (like the
omnibook 500), this one should be fun.  There are no option, just run it
and see what happens (please be prepared for it to work... it just
might).

   Another fun developer tool/hack is eventwatch.  This program is
simply a version of acpitree that tries to install notify handlers on
every device in namespace.  It then sits and waits for something to
happen.  If you've wondered if that hotkey on your box does something,
try this, it just might.

   I skimmed though the ibm-acpi module and tried to provide enough
interfaces in this version of dev_acpi that the entire ibm-acpi could
potentially be done in userspace.  I don't have an IBM laptop to
experiment with, but I'd be interested to hear if someone tries.

   Anyway, please give this interface a shot.  It builds as a standalone
module and should work on any 2.6 kernel with headers available.  I've
tested this version quite a bit more than the version I posted a couple
weeks ago, especially the 32bit app on 64bit kernel code (ia64 and
x86_64).  Bug reports, feedback, opinions gladly welcomed.  Thanks,

	Alex

-- 
Alex Williamson                             HP Linux & Open Source Lab



-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click

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

* RE: [RFC] dev_acpi: support for userspace access to acpi
@ 2004-10-27  2:30 Yu, Luming
  2004-10-27  3:27 ` Alex Williamson
  0 siblings, 1 reply; 5+ messages in thread
From: Yu, Luming @ 2004-10-27  2:30 UTC (permalink / raw)
  To: Alex Williamson, linux-kernel; +Cc: acpi-devel

If you want to have a full access to acpi subsystem from userspace, why not firstly move ACPI interpreter out of kernel?
Then, you can play with the whole ACPI subsystem with minimal cost of troubling kernel  in userspace.  Say, you can forget " 
ioctl, read issues on files, complex data for sysfs, file per operation, etc...".  Is it a more clean way ?
 
Thanks
Luming 

>-----Original Message-----
>From: acpi-devel-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org 
>[mailto:acpi-devel-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf Of 
>Alex Williamson
>Sent: 2004年10月27日 4:55
>To: linux-kernel
>Cc: acpi-devel
>Subject: [ACPI] [RFC] dev_acpi: support for userspace access to acpi
>
>
>   Announcing the next revision of dev_acpi.  The dev_acpi module
>provides userspace access to ACPI namespace using a simple character
>device file.  For further discussion of the interface, see the README
>file in the tarball.  The current release is available here:
>
>http://free.linux.hp.com/~awilliam/acpi/dev_acpi/dev_acpi-20041
>026.tar.bz2
>
>(it's a little big to post here raw, but if requested I'd be happy to
>post the driver by itself)
>
>   I've been tossing around sysfs and device file interfaces 
>to the ACPI
>namespace for a while now.  The idea is that there's way too much
>information in namespace to not provide a userspace interface to it.
>Examples include projects springing up to support ACPI features on
>various laptops, increasing dependence on developing code using ACPI,
>extracting system/platform information from ACPI namespace.  In short,
>there are a lot of really simple things that userspace could use ACPI
>namespace for, but there's currently no way to get to it.
>
>   Previous iterations using sysfs looked pretty, but never really
>achieved the full potential of the interface (no ioctl, read issues on
>files, complex data for sysfs, file per operation, etc...).  The device
>file interface provides a more comprehensive yet compact interface,
>along with a 32bit compatibility layer, and sane read semantics on the
>file.
>
>   This revision cleans up quite a bit of code, adds some documentation
>in the README file, adds a number of interfaces, and adds several more
>example program, with the intent of sparking more interest.  I've
>updated the acpitree program to list a bit more data, but it's 
>basically
>the same.  For anyone trying to wrap their head around ACPI namespace,
>it's a great tool for getting a simple visual representation 
>of the data
>available.  I added a tool called acpivideo that will hopefully be
>interesting to laptop users.  It's able to set the active video output
>device, much like the hotkey on most laptops (but from command line).
>It also has a daemon mode that sets up a notify handler (yes, from
>userspace) and listens for events on the VGA device.  When an event is
>received, it evaluates the requested state change and pokes ACPI to do
>it.  See the README for more info.  If anyone knows how to 
>poke X to not
>block the switch it'd be interesting to add the hooks (currently only
>seems to work from a vt).
>
>   I added another simple program called acpiundock.  If you have a
>laptop docking station with an electo-mechanical eject (like the
>omnibook 500), this one should be fun.  There are no option, 
>just run it
>and see what happens (please be prepared for it to work... it just
>might).
>
>   Another fun developer tool/hack is eventwatch.  This program is
>simply a version of acpitree that tries to install notify handlers on
>every device in namespace.  It then sits and waits for something to
>happen.  If you've wondered if that hotkey on your box does something,
>try this, it just might.
>
>   I skimmed though the ibm-acpi module and tried to provide enough
>interfaces in this version of dev_acpi that the entire ibm-acpi could
>potentially be done in userspace.  I don't have an IBM laptop to
>experiment with, but I'd be interested to hear if someone tries.
>
>   Anyway, please give this interface a shot.  It builds as a 
>standalone
>module and should work on any 2.6 kernel with headers available.  I've
>tested this version quite a bit more than the version I posted a couple
>weeks ago, especially the 32bit app on 64bit kernel code (ia64 and
>x86_64).  Bug reports, feedback, opinions gladly welcomed.  Thanks,
>
>	Alex
>
>-- 
>Alex Williamson                             HP Linux & Open Source Lab
>
>
>
>-------------------------------------------------------
>This SF.Net email is sponsored by:
>Sybase ASE Linux Express Edition - download now for FREE
>LinuxWorld Reader's Choice Award Winner for best database on Linux.
>http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
>_______________________________________________
>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:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_idU88&alloc_id\x12065&op=click

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

* RE: [RFC] dev_acpi: support for userspace access to acpi
  2004-10-27  2:30 [RFC] dev_acpi: support for userspace access to acpi Yu, Luming
@ 2004-10-27  3:27 ` Alex Williamson
  0 siblings, 0 replies; 5+ messages in thread
From: Alex Williamson @ 2004-10-27  3:27 UTC (permalink / raw)
  To: Yu, Luming; +Cc: linux-kernel, acpi-devel


   The kernel certainly needs an ACPI interpreter and it needs it before
userspace is launched.  Handing off the interpreter to userspace or
managing two interpreters poking ACPI at the same time seems like a much
more complicated problem.  The kernel is the primary consumer, I think
it would just shift the problem elsewhere to consider moving it.

  The problems quoted below were from the previous sysfs interface I was
developing.  I think these problems are fixed with this current device
file interface.  I'm hoping dev_acpi is already more clean.  Thanks,

	Alex

On Wed, 2004-10-27 at 10:30 +0800, Yu, Luming wrote:
> If you want to have a full access to acpi subsystem from userspace,
> why not firstly move ACPI interpreter out of kernel?
> Then, you can play with the whole ACPI subsystem with minimal cost of
> troubling kernel  in userspace.  Say, you can forget " 
> ioctl, read issues on files, complex data for sysfs, file per
> operation, etc...".  Is it a more clean way ?
>  
> Thanks
> Luming 
> 
> >-----Original Message-----
> >From: acpi-devel-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org 
> >[mailto:acpi-devel-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf Of 
> >Alex Williamson
> >Sent: 2004年10月27日 4:55
> >To: linux-kernel
> >Cc: acpi-devel
> >Subject: [ACPI] [RFC] dev_acpi: support for userspace access to acpi
> >
> >
> >   Announcing the next revision of dev_acpi.  The dev_acpi module
> >provides userspace access to ACPI namespace using a simple character
> >device file.  For further discussion of the interface, see the README
> >file in the tarball.  The current release is available here:
> >
> >http://free.linux.hp.com/~awilliam/acpi/dev_acpi/dev_acpi-20041
> >026.tar.bz2
> >
> >(it's a little big to post here raw, but if requested I'd be happy to
> >post the driver by itself)
> >
> >   I've been tossing around sysfs and device file interfaces 
> >to the ACPI
> >namespace for a while now.  The idea is that there's way too much
> >information in namespace to not provide a userspace interface to it.
> >Examples include projects springing up to support ACPI features on
> >various laptops, increasing dependence on developing code using ACPI,
> >extracting system/platform information from ACPI namespace.  In short,
> >there are a lot of really simple things that userspace could use ACPI
> >namespace for, but there's currently no way to get to it.
> >
> >   Previous iterations using sysfs looked pretty, but never really
> >achieved the full potential of the interface (no ioctl, read issues on
> >files, complex data for sysfs, file per operation, etc...).  The device
> >file interface provides a more comprehensive yet compact interface,
> >along with a 32bit compatibility layer, and sane read semantics on the
> >file.
> >
> >   This revision cleans up quite a bit of code, adds some documentation
> >in the README file, adds a number of interfaces, and adds several more
> >example program, with the intent of sparking more interest.  I've
> >updated the acpitree program to list a bit more data, but it's 
> >basically
> >the same.  For anyone trying to wrap their head around ACPI namespace,
> >it's a great tool for getting a simple visual representation 
> >of the data
> >available.  I added a tool called acpivideo that will hopefully be
> >interesting to laptop users.  It's able to set the active video output
> >device, much like the hotkey on most laptops (but from command line).
> >It also has a daemon mode that sets up a notify handler (yes, from
> >userspace) and listens for events on the VGA device.  When an event is
> >received, it evaluates the requested state change and pokes ACPI to do
> >it.  See the README for more info.  If anyone knows how to 
> >poke X to not
> >block the switch it'd be interesting to add the hooks (currently only
> >seems to work from a vt).
> >
> >   I added another simple program called acpiundock.  If you have a
> >laptop docking station with an electo-mechanical eject (like the
> >omnibook 500), this one should be fun.  There are no option, 
> >just run it
> >and see what happens (please be prepared for it to work... it just
> >might).
> >
> >   Another fun developer tool/hack is eventwatch.  This program is
> >simply a version of acpitree that tries to install notify handlers on
> >every device in namespace.  It then sits and waits for something to
> >happen.  If you've wondered if that hotkey on your box does something,
> >try this, it just might.
> >
> >   I skimmed though the ibm-acpi module and tried to provide enough
> >interfaces in this version of dev_acpi that the entire ibm-acpi could
> >potentially be done in userspace.  I don't have an IBM laptop to
> >experiment with, but I'd be interested to hear if someone tries.
> >
> >   Anyway, please give this interface a shot.  It builds as a 
> >standalone
> >module and should work on any 2.6 kernel with headers available.  I've
> >tested this version quite a bit more than the version I posted a couple
> >weeks ago, especially the 32bit app on 64bit kernel code (ia64 and
> >x86_64).  Bug reports, feedback, opinions gladly welcomed.  Thanks,
> >
> >	Alex
> >
> >-- 
> >Alex Williamson                             HP Linux & Open Source Lab
> >
> >
> >
> >-------------------------------------------------------
> >This SF.Net email is sponsored by:
> >Sybase ASE Linux Express Edition - download now for FREE
> >LinuxWorld Reader's Choice Award Winner for best database on Linux.
> >http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
> >_______________________________________________
> >Acpi-devel mailing list
> >Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> >https://lists.sourceforge.net/lists/listinfo/acpi-devel
> >
> 
-- 
Alex Williamson                             HP Linux & Open Source Lab



-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_idU88&alloc_id\x12065&op=click

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

* RE: [RFC] dev_acpi: support for userspace access to acpi
@ 2004-10-27 17:17 Yu, Luming
  2004-10-27 23:31 ` Bjorn Helgaas
  0 siblings, 1 reply; 5+ messages in thread
From: Yu, Luming @ 2004-10-27 17:17 UTC (permalink / raw)
  To: Alex Williamson; +Cc: linux-kernel, acpi-devel, Brown, Len

  If don't use acpi_early_init , acpi is initialized in do_basic_setup() in kernel thread --init.
It is very close to launch first user space process(/sbin/init ..). So, if we can invent 
acpi_later_init, it is possible to move interpreter out of kernel.

  The difficulty for inventing userspace interpreter is to eliminate the ACPI-interpreter dependency 
of drivers for booting. But this dependency is not mandatory. Once kernel booted to be able
to launch /sbin/init, it is also able to launch /sbin/user_space_interpreter, then kernel can enjoy
acpi from then on, despite the acpi interpreter is a user space daemon, we just need to invent
or user a communication method between kernel and user space daemon.

  But, Not sure what's the evil consequence from this approach. Say, if kernel need service
from ACPI interpreter, ACPI interpreter should be get scheduled.  Is it racy?

Thanks
Luming 

>-----Original Message-----
>From: Alex Williamson [mailto:alex.williamson-VXdhtT5mjnY@public.gmane.org] 
>Sent: 2004年10月27日 11:27
>To: Yu, Luming
>Cc: linux-kernel; acpi-devel
>Subject: RE: [ACPI] [RFC] dev_acpi: support for userspace 
>access to acpi
>
>
>   The kernel certainly needs an ACPI interpreter and it needs 
>it before
>userspace is launched.  Handing off the interpreter to userspace or
>managing two interpreters poking ACPI at the same time seems 
>like a much
>more complicated problem.  The kernel is the primary consumer, I think
>it would just shift the problem elsewhere to consider moving it.
>
>  The problems quoted below were from the previous sysfs 
>interface I was
>developing.  I think these problems are fixed with this current device
>file interface.  I'm hoping dev_acpi is already more clean.  Thanks,
>
>	Alex
>
>On Wed, 2004-10-27 at 10:30 +0800, Yu, Luming wrote:
>> If you want to have a full access to acpi subsystem from userspace,
>> why not firstly move ACPI interpreter out of kernel?
>> Then, you can play with the whole ACPI subsystem with minimal cost of
>> troubling kernel  in userspace.  Say, you can forget " 
>> ioctl, read issues on files, complex data for sysfs, file per
>> operation, etc...".  Is it a more clean way ?
>>  
>> Thanks
>> Luming 
>> 
>> >-----Original Message-----
>> >From: acpi-devel-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org 
>> >[mailto:acpi-devel-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf Of 
>> >Alex Williamson
>> >Sent: 2004年10月27日 4:55
>> >To: linux-kernel
>> >Cc: acpi-devel
>> >Subject: [ACPI] [RFC] dev_acpi: support for userspace access to acpi
>> >
>> >
>> >   Announcing the next revision of dev_acpi.  The dev_acpi module
>> >provides userspace access to ACPI namespace using a simple character
>> >device file.  For further discussion of the interface, see 
>the README
>> >file in the tarball.  The current release is available here:
>> >
>> >http://free.linux.hp.com/~awilliam/acpi/dev_acpi/dev_acpi-20041
>> >026.tar.bz2
>> >
>> >(it's a little big to post here raw, but if requested I'd 
>be happy to
>> >post the driver by itself)
>> >
>> >   I've been tossing around sysfs and device file interfaces 
>> >to the ACPI
>> >namespace for a while now.  The idea is that there's way too much
>> >information in namespace to not provide a userspace interface to it.
>> >Examples include projects springing up to support ACPI features on
>> >various laptops, increasing dependence on developing code 
>using ACPI,
>> >extracting system/platform information from ACPI namespace. 
> In short,
>> >there are a lot of really simple things that userspace 
>could use ACPI
>> >namespace for, but there's currently no way to get to it.
>> >
>> >   Previous iterations using sysfs looked pretty, but never really
>> >achieved the full potential of the interface (no ioctl, 
>read issues on
>> >files, complex data for sysfs, file per operation, etc...). 
> The device
>> >file interface provides a more comprehensive yet compact interface,
>> >along with a 32bit compatibility layer, and sane read 
>semantics on the
>> >file.
>> >
>> >   This revision cleans up quite a bit of code, adds some 
>documentation
>> >in the README file, adds a number of interfaces, and adds 
>several more
>> >example program, with the intent of sparking more interest.  I've
>> >updated the acpitree program to list a bit more data, but it's 
>> >basically
>> >the same.  For anyone trying to wrap their head around ACPI 
>namespace,
>> >it's a great tool for getting a simple visual representation 
>> >of the data
>> >available.  I added a tool called acpivideo that will hopefully be
>> >interesting to laptop users.  It's able to set the active 
>video output
>> >device, much like the hotkey on most laptops (but from 
>command line).
>> >It also has a daemon mode that sets up a notify handler (yes, from
>> >userspace) and listens for events on the VGA device.  When 
>an event is
>> >received, it evaluates the requested state change and pokes 
>ACPI to do
>> >it.  See the README for more info.  If anyone knows how to 
>> >poke X to not
>> >block the switch it'd be interesting to add the hooks 
>(currently only
>> >seems to work from a vt).
>> >
>> >   I added another simple program called acpiundock.  If you have a
>> >laptop docking station with an electo-mechanical eject (like the
>> >omnibook 500), this one should be fun.  There are no option, 
>> >just run it
>> >and see what happens (please be prepared for it to work... it just
>> >might).
>> >
>> >   Another fun developer tool/hack is eventwatch.  This program is
>> >simply a version of acpitree that tries to install notify 
>handlers on
>> >every device in namespace.  It then sits and waits for something to
>> >happen.  If you've wondered if that hotkey on your box does 
>something,
>> >try this, it just might.
>> >
>> >   I skimmed though the ibm-acpi module and tried to provide enough
>> >interfaces in this version of dev_acpi that the entire 
>ibm-acpi could
>> >potentially be done in userspace.  I don't have an IBM laptop to
>> >experiment with, but I'd be interested to hear if someone tries.
>> >
>> >   Anyway, please give this interface a shot.  It builds as a 
>> >standalone
>> >module and should work on any 2.6 kernel with headers 
>available.  I've
>> >tested this version quite a bit more than the version I 
>posted a couple
>> >weeks ago, especially the 32bit app on 64bit kernel code (ia64 and
>> >x86_64).  Bug reports, feedback, opinions gladly welcomed.  Thanks,
>> >
>> >	Alex
>> >
>> >-- 
>> >Alex Williamson                             HP Linux & Open 
>Source Lab
>> >
>> >
>> >
>> >-------------------------------------------------------
>> >This SF.Net email is sponsored by:
>> >Sybase ASE Linux Express Edition - download now for FREE
>> >LinuxWorld Reader's Choice Award Winner for best database on Linux.
>> >http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
>> >_______________________________________________
>> >Acpi-devel mailing list
>> >Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
>> >https://lists.sourceforge.net/lists/listinfo/acpi-devel
>> >
>> 
>-- 
>Alex Williamson                             HP Linux & Open Source Lab
>
>


-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_idU88&alloc_id\x12065&op=click

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

* Re: [RFC] dev_acpi: support for userspace access to acpi
  2004-10-27 17:17 Yu, Luming
@ 2004-10-27 23:31 ` Bjorn Helgaas
  0 siblings, 0 replies; 5+ messages in thread
From: Bjorn Helgaas @ 2004-10-27 23:31 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
  Cc: Yu, Luming, Alex Williamson, linux-kernel, Brown, Len

On Wednesday 27 October 2004 11:17 am, Yu, Luming wrote:
>   If don't use acpi_early_init , acpi is initialized in do_basic_setup() in kernel thread --init.
> It is very close to launch first user space process(/sbin/init ..). So, if we can invent 
> acpi_later_init, it is possible to move interpreter out of kernel.

It's true that some early init stuff is based on the static tables
and doesn't require the interpreter.  But there is a lot of stuff
that DOES require the interpreter, like finding PCI root bridges,
PRTs, PCI interrupt link devices, etc.  It's not clear to me that
it's feasible to deal with all these from userspace.

>   The difficulty for inventing userspace interpreter is to eliminate the ACPI-interpreter dependency 
> of drivers for booting. But this dependency is not mandatory. Once kernel booted to be able
> to launch /sbin/init, it is also able to launch /sbin/user_space_interpreter, then kernel can enjoy
> acpi from then on, despite the acpi interpreter is a user space daemon, we just need to invent
> or user a communication method between kernel and user space daemon.

Before the interpreter, you don't have ANY devices (legacy ones are
described via the namespace of course, and PCI devices depend on root
bridges that are also in the namespace).  So you end up at least
requiring a ramdisk, plus a bunch of encoding to communicate resource
information from the interpreter to the drivers.

Maybe not impossible, but it certainly requires a lot of work.  Moving
the interpreter to userspace has been proposed many times, but I've
never seen any indication that anybody is actually working on it.


-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click

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

end of thread, other threads:[~2004-10-27 23:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-27  2:30 [RFC] dev_acpi: support for userspace access to acpi Yu, Luming
2004-10-27  3:27 ` Alex Williamson
  -- strict thread matches above, loose matches on Subject: below --
2004-10-27 17:17 Yu, Luming
2004-10-27 23:31 ` Bjorn Helgaas
2004-09-20 21:41 [PATCH/RFC] exposing ACPI objects in sysfs Alex Williamson
2004-09-21 12:24 ` Pavel Machek
2004-09-21 16:48   ` Alex Williamson
2004-09-21 17:26     ` Pavel Machek
2004-09-21 19:06       ` [ACPI] " Andi Kleen
2004-09-21 19:13         ` Alex Williamson
2004-09-21 19:18           ` Andi Kleen
2004-09-21 19:45             ` Alex Williamson
2004-09-21 19:58               ` Pavel Machek
2004-09-21 20:40                 ` Alex Williamson
2004-09-21 21:02                   ` Pavel Machek
2004-10-15 22:39                     ` Alex Williamson
2004-10-26 20:55                       ` [RFC] dev_acpi: support for userspace access to acpi Alex Williamson

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