Regarding powerTop Application
by nisha jain
Hi All,
Can any one help me with my previous mail? I have modified the powertop
code for CPU1 related idle state but not able to see states also not sure
how to get cpu states while on full load if it is possible?
Thanks and Regards,
Nisha
12 years, 6 months
Using latest acpica release to write a driver.
by Samuel Serapion
Hi guys, this is my second attempt trying to write an acpi driver for ReactOS/Windows using your library.
But ive been running into some problems trying to run it in vmware 7.0. Attached is a log of this. If this isnt the right forum for this please feel free to point me in the right direction and call me names and what not.
I would also like to say 2 other things, first thanks for making this great library, without it it would be imposible for open source projects to implement sane acpi support and second, stop confusing windows with msvc, gcc has been ported to windows since forever ago and a lot of people use it.(re platform headers).
Thanks in advance!
_________________________________________________________________
Windows Live: Make it easier for your friends to see what you’re up to on Facebook.
http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/...
12 years, 6 months
Problem in compilation of ACPI test suite
by nisha jain
Hi All,
I am new to ACPI development. I have downloaded the UNIX Format Source Code
and Build Environment
<http://www.acpica.org/downloads/unix_source_code.php>of the ACPI
and successfully compiled it. I am facing problem in UNIX Format Test
Suite<http://www.acpica.org/downloads/unix_test_suite.php>installation
as i am getting following compilation errors.
After looking into Make file i am still unable to figure what is the reason
of the error.
Please if some one can tell me what is going wrong here?
root@utd-desktop:/home/utd/ACPI/acpica-unix-20091112/tests/aslts# make
install
/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src
make[1]: Entering directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src'
/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime
make[2]: Entering directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime'
/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections
make[3]: Entering directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections'
/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections/bdemo
make[4]: Entering directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections/bdemo'
/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections/bdemo/ACPICA
make[5]: Entering directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections/bdemo/ACPICA'
/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo
make[6]: Entering directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo'
Bad iASL 1: <>
make[6]: *** [install_test_case] Error 1
make[6]: Leaving directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo'
/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof
make[6]: Entering directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof'
Bad iASL 1: <>
...........
........... so on
............
make[2]: *** [install] Error 2
make[2]: Leaving directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src/runtime'
make[1]: *** [install] Error 2
make[1]: Leaving directory
`/home/utd/ACPI/acpica-unix-20091112/tests/aslts/src'
make: *** [install] Error 2
I want to use the ACPI library for writing a small application for power
management and display.
My understanding is that in through test code i can understand the sequence
for API call and
their functionality. I have gone through the Programmer reference for API
functionality but
not sure if there is any specific sequence to call them. I am using Intel
dual core and Ubuntu platform.
I have enabled the BIOS settings for ACPI and i am able to run some of
applications to see the power
state of the CPU...
Thanks and Regards,
Nisha
12 years, 7 months
Masters degree with no efforts.
by Glen Cherry
BECAUSE YOU DESERVE IT! Is your lack of a degree holding you back from career advancement?
Are you having difficulty finding employment in your field of interest because you don’t have the
paper to back it up – even though you are qualified?
If you are looking for a fast and effective solution, we can help!
Call us right now for your customized diploma: Inside U.SA.: 1-312-260-79-39 Outside U.S.A.: +1-312-260-79-39.
Just leave your NAME & TEL. PHONE # (with country-code) on the voicemail and one of our staff members will get back to you promptly!
12 years, 7 months
ACPICA version 20091112 released
by Moore, Robert
12 November 2009. Summary of changes for version 20091112:
This release is available at www.acpica.org/downloads
1) ACPI CA Core Subsystem:
Implemented a post-order callback to AcpiWalkNamespace. The existing interface only has a pre-order callback. This change adds an additional parameter for a post-order callback which will be more useful for bus scans. ACPICA BZ 779. Lin Ming. Updated the ACPICA Programmer Reference.
Modified the behavior of the operation region memory mapping cache for SystemMemory. Ensure that the memory mappings created for operation regions do not cross 4K page boundaries. Crossing a page boundary while mapping regions can cause kernel warnings on some hosts if the pages have different attributes. Such regions are probably BIOS bugs, and this is the workaround. Linux BZ 14445. Lin Ming.
Implemented an automatic repair for predefined methods that must return sorted lists. This change will repair (by sorting) packages returned by _ALR, _PSS, and _TSS. Drivers can now assume that the packages are correctly sorted and do not contain NULL package elements. Adds one new file, namespace/nsrepair2.c. ACPICA BZ 784. Lin Ming, Bob Moore.
Fixed a possible fault during predefined name validation if a return Package object contains NULL elements. Also adds a warning if a NULL element is followed by any non-null elements. ACPICA BZ 813, 814. Future enhancement may include repair or removal of all such NULL elements where possible.
Implemented additional module-level executable AML code support. This change will execute module-level code that is not at the root of the namespace (under a Device object, etc.) at table load time. Module-level executable AML code has been illegal since ACPI 2.0. ACPICA BZ 762. Lin Ming.
Implemented a new internal function to create Integer objects. This function simplifies miscellaneous object creation code. ACPICA BZ 823.
Reduced the severity of predefined repair messages, Warning to Info. Since the object was successfully repaired, a warning is too severe. Reduced to an info message for now. These messages may eventually be changed to debug-only. ACPICA BZ 812.
Example Code and Data Size: These are the sizes for the OS-independent acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The debug version of the code includes the debug output trace mechanism and has a much larger code and data size.
Previous Release:
Non-Debug Version: 85.8K Code, 18.0K Data, 103.8K Total
Debug Version: 161.8K Code, 50.6K Data, 212.4K Total
Current Release:
Non-Debug Version: 86.6K Code, 18.2K Data, 104.8K Total
Debug Version: 162.7K Code, 50.8K Data, 213.5K Total
2) iASL Compiler/Disassembler and Tools:
iASL: Implemented Switch() with While(1) so that Break works correctly. This change correctly implements the Switch operator with a surrounding While(1) so that the Break operator works as expected. ACPICA BZ 461. Lin Ming.
iASL: Added a message if a package initializer list is shorter than package length. Adds a new remark for a Package() declaration if an initializer list exists, but is shorter than the declared length of the package. Although technically legal, this is probably a coding error and it is seen in the field. ACPICA BZ 815. Lin Ming, Bob Moore.
iASL: Fixed a problem where the compiler could fault after the maximum number of errors was reached (200).
acpixtract: Fixed a possible warning for pointer cast if the compiler warning level set very high.
12 years, 7 months
DOMAIN OWNER: http://acpica.org/
by Intel Web Resource Center
Web Marketing along with Intel Security, Legal, Privacy and Corporate Brand Identity teams are ensuring all external facing Web content is up to date, especially for any microsite or externally hosted Intel content. We are looking for the Business Owner for the following site(s). In an effort to keep our records up to date could you please respond to us with the following information. PLEASE REPLY TO THIS EMAIL ACCOUNT WITH YOUR ANSWERS TO 1-3.
Please answer each question below per URL that you own. It is critical that we keep information up to date and that for any site no longer needed, appropriate End of Life processes are followed.
1. I AM / AM NOT the current owner
2. This site is still active and necessary (YES / NO)
3. This site will be EOL'd on (DATE)
http://acpica.org/
________________________________
Reminder: If your site(s) are still active, please take time to ensure your current content is up to date. Full content update suggestions are found on WRC - https://wrc.intel.com/resources/playbooks.htm. Below is a quick overview of things you should be checking every 6 weeks.
* Are the trademarks and brand names current?
* Are the benchmarks and claims current?
* Are the legal disclaimers up to date?
* Has time-sensitive content been updated or removed, such as outdated events, contests, or promotions?
* Are all of your links active (no broken links)?
* Are there any metrics reporting or customer feedback indications that your site needs to add or eliminate content?
Regards,
Janine (J9) Wilson
FM1-2-H9
12 years, 7 months