Advanced Configuration and Power Interface, a specification that provides an open standard for device configuration and power management by the operating system.

learn more… | top users | synonyms

6
votes
1answer
126 views

How do I call ACPI control methods from C++ or C# on Windows?

I'm getting tired of waiting for HP to fix the switchable graphics driver for my laptop, but I think I can switch GPUs myself by calling ACPI methods. The switching works using vga_switcheroo in ...
5
votes
5answers
3k views

Programmatically access CPU fan on a laptop? (Windows)

Is there a Windows standard way to do things such as "start fan", "decrease speed" or the like, from C/C++? I have a suspicion it might be ACPI, but I am a frail mortal and cannot read that kind of ...
4
votes
3answers
874 views

C#: How to wake up system which has been shutdown?

Is there any Win32 API for waking up a system that has been shut down, at a specific time? I have seen a program named Autopower On which is able to power the system on at a specified time.
4
votes
2answers
1k views

Shutdown computer in MS-DOS using ACPI

I have MS-DOS 6.22 running on a Pentium based computer (motherboard supports ACPI), and would like to know if there was an assembly language routine I could use to shut down the computer, or is it a ...
4
votes
2answers
590 views

How to get the battery life of mac os x macbooks programatically?

What I wanted to do is take a log on battery percentage. I know the equivalent in linux is sysctl(hw.acpi.battery.life). However when I went through the man of sysctl in mac os x I did not find the ...
4
votes
4answers
995 views

Schedule machine to wake up

What's the best way to programmatically cause a Windows XP (or above) machine to wake up at a specific time. (Ideally a lot like how Media Center can start up automatically to record a particular TV ...
3
votes
1answer
81 views
+50

In gnome w/ xmonad, how can I call a script when a monitor is plugged in OR when docking my laptop?

Problem: I have an extra set of top and bottom gnome-panels for a second monitor. When I undock my lenovo Thinkpad (T510), the extra top and bottom panels remain, so I have two on top and two on the ...
3
votes
3answers
604 views

How can I obtain battery level inside a Linux kernel module?

I am trying to get the battery level inside a Linux kernel module (the module is inserted via modprobe). I would ideally like to use a kernel API call to get the battery information. I have searched ...
3
votes
3answers
3k views

Run a batch file on Windows 7 shutdown before closing programs (preferrably on power button press)

I have a Windows 7 box with multiple VMWare Player machines that are started on boot. I use WMWare VIX and a batch file to shutdown the virtual machines like so: "C:\path\to\VMWare VIX\vmrun.exe" ...
3
votes
1answer
464 views

Help me decipher this ACPI Source Language code?

I used this .NET program to do a binary dump of the Windows Registry at HKLM/Hardware/ACPI/DSDT. Then, running Microsoft's ASL Compiler on that, I can get this ACPI Source Language: Scope(\_TZ_) { ...
3
votes
1answer
108 views

Developing power consumption aware applications

Firstly, please don't move to serverfault. It is indeed a programming question :-) We are developing occasionally connected applications. These applications reside on laptop and handhelds. In my ...
2
votes
2answers
102 views

parsing different files of the same grammar and calculating file to file similarities

I've got a bunch of ACPI Source Language files and I want to calculate file to file similarities between them. I thought of using something like Perl's Parse::RecDescent but I am stuck at: 1) ...
2
votes
1answer
199 views

Does anyone know how to modify/disable the blinking power LED when OS enter into sleep mode?

Does anyone know how to modify/disable the blinking power LED when OS enter into sleep mode? Or is it feasible to do this by using OS? Does the power LED only controlled by hardware? Or OS could ...
2
votes
1answer
67 views

What's the last instruction to cause the machine go to S3 sleep?

From ACPI Spec 4.0 page 299, there is some sample code to show how to put the machine into S3 sleep. I just wondering what are the last instructions to cause the hardware to sleep? What happens after ...
2
votes
1answer
698 views

Programmatically change Windows power settings

Is it possible to change the power-saving behaviour of a laptop computer on lid close from hibernate/standby/shutdown to Do Nothing from the .NET Framework? Edit: it would appear that by setting the ...
2
votes
1answer
879 views

How to communicate with “Microsoft ACPI-Compliant Embedded Controller” driver?

I'd like to communicate with an Embedded Controller device in a Notebook through I/O ports 62/66. When running on XP, the communication might collide with "Microsoft ACPI-Compliant Embedded ...
1
vote
1answer
103 views

Hybrid graphics in linux

I came across Nvidia optimus implementation for linux called bumblebee project https://github.com/Bumblebee-Project I installed bumblebee on my laptop with Nvidia graphics card. The issue is that for ...
1
vote
1answer
183 views

ACPI Methods exposure in OS

I want to write a ACPI method for windows Operating System, as a part of my college project and I am new to this assembly level programming. I want to know whether ACPI Method will be in BIOS or it ...
1
vote
1answer
308 views

How to detect system power events such as suspend, hibernate, etc

I want to make a Linux application that send a message to a remote host when a local system (where the application runs) is going to suspend, hibernate or shutdown. I googled how to do this and found ...
1
vote
1answer
125 views

Where's the catalog of objects in the ACPI namespace?

I'm trying to read and maybe write some ACPI Source Language. I see in the code I'm looking at, statements that store values to particular... ah, registers I guess, in the ACPI object namespace. It ...
1
vote
3answers
98 views

configure a PC to default on state

I am writing device software for a PC and for that, I want the PC to be usable as a device. When power is supplied, it should switch on without requiring to press the power button. There are power ...
1
vote
1answer
1k views

Disable ACPI power button

is there any simple way to disable processing ACPI power button events (Shutdown) temporarily using the Windows API in Visual C++, so the user isn't able to shut down the computer using the power ...
1
vote
1answer
911 views

Linux ACPI Configuration

In my Fedora Core Linux (kernel 2.6.16.11), I've been trying to test the auto-shutdown mechanism associated with the CPU temperature. It does not automatically shutdown properly. If my current ...
1
vote
12answers
1k views

How to deny shutdown when pressing the power button for a while?

On most newer computers you can shutdown the hard way by pressing the power button for a couple of seconds. But I want to prevent this completely. You're able to prevent some soft events like the ...
1
vote
1answer
972 views

Responding to ACPI fixed feature button in Windows?

My laptop's got a mysterious extra button on it that doesn't cause any keyboard messages -- I've verified this with a low-level keyboard hook. It appears that it's an "ACPI Fixed Feature Button". Any ...
0
votes
0answers
82 views

Customize the power button action (ubuntu 10.04)

I would like to customize the power button action. The tutorial at http://blog.metalight.dk/2010/07/ubuntu-lucid-custom-power-button-event/ works but not always (the number of shutdown processes can ...
0
votes
0answers
87 views

C++ Power Management - ACPI or APM for listening Sleep Events

I've been reading about power management, I did find good information regarding APM in windows and how to develop with the API en C++. However for ACPI I didn't find out anything concrete (sample ...
0
votes
2answers
149 views

virsh shutdown for OpenBSD (libvirt/kvm)

Is it possible to correctly shutdown a openbsd 4.7 or 4.9 with virsh shutdown OpenBSD The openbsd is under kvm/qemu configured from libvirt. shutdown should send an ACPI signal "Power button ...
0
votes
1answer
45 views

Determining length of ACPI state file

I am writing a tool to log battery charge to a CSV file (I know it'd be a bash one-liner but this is yet another Common Lisp learning exercise for me). My plan is to slurp the entire battery state ...
0
votes
1answer
190 views

Remotely get power state of a pc (like LogMeIn)

on a device (iphone, mac, pc, etc.) i want to know if a pc (on the same lan and running windows) is 1) "on" (meaning powered on) and lan-connected with my device 2) on but the network cable is ...
0
votes
1answer
95 views

When and how does Linux to save VGA memroy to RAM? Is it in pm-suspend script? or in kernel after echo mem > /sys/power/state

Does anyone know when Linux save VGA memory to RAM? Is it in pm-suspend script before echo mem to /sys/power/state? Is it in kernel after echo -n "mem" > /sys/power/state? or both? I have looked at ...
0
votes
1answer
425 views

how ther linux kernel process the write to /sys/power/state

I want to find out the source file of the Linux kernel (x86, 2.6.18 or similar) that handle the write to /sys/power/state. I googled and try to search sysfs_create_file (and dir) in the source code. ...
0
votes
0answers
50 views

Tool to compare ACPI source files

I've got a bunch of ACPI DSDT tables and I would like to have a method to compare them. Each file comes from a given laptop model, and for a each new file I get, I would like to be able to find the ...
0
votes
1answer
116 views

Execute a PyQt app from an acpi event in linux

I want to use a PyQt application to display an image when some acpi event is triggered under linux. I already setting up the configuration for the event and the python scrip is executed when the ...
0
votes
3answers
179 views

Setting an ACPI field in Linux

I've a netbook that is running the fan a bit to early for my liking. I've found a Windows-only solution to reducing the fan noise but I'm using Ubuntu on this computer. In the Windows solution the ...
0
votes
3answers
837 views

resume/suspend enery star linux from command line

I have an ssh connection to a linux machine which is hibernated after some non-activity time. I want to make it resume, how do I do that? (writing to /dev/mouse to simulate mouse movement didn't do ...
-1
votes
1answer
115 views

ACPI script , how to know about current TTY displaying to users?

I'm running a script in acpi , if current displayed virtual terminal , switch back to the terminal X11 is running ; else switch to tty1. So the only problem is , how can i use a program to get the ...