summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica
Commit message (Collapse)AuthorAgeFilesLines
* Merge ACPICA 20110112. Switch to BSD/GPLv2 dual license[1].jkim2011-01-13236-24796/+8855
|\ | | | | | | Discussed with: core [1]
* \ Merge ACPICA 20101209.jkim2010-12-1530-1357/+1786
|\ \ | |/
* | Merge ACPICA 20101013.jkim2010-10-1330-502/+904
|\ \ | |/
* | Merge ACPICA 20100915.jkim2010-09-1649-537/+1593
|\ \ | |/
* | Merge ACPICA 20100806.jkim2010-08-0628-288/+1208
|\ \ | |/
* | Merge ACPICA 20100702.jkim2010-07-06100-1498/+8532
|\ \ | |/
* | Merge ACPICA 20100428.jkim2010-04-2845-3908/+6034
|\ \ | |/
* | Merge ACPICA 20100331 (and four additional upstream patches).jkim2010-04-0228-566/+831
| |
* | Since the interpreter slack mode is a tunable now, enable a local hack onlyjkim2010-03-091-6/+9
| | | | | | | | when it is set. Note the default behaviour does not change by this change.
* | Merge ACPICA 20100304.jkim2010-03-0573-986/+1402
|\ \ | |/
* | Fix a new header inclusion.jkim2010-01-211-1/+1
| |
* | Merge ACPICA 20100121.jkim2010-01-21211-661/+794
| |
* | Merge ACPICA 20091214.jkim2009-12-1431-330/+859
| |
* | Merge ACPICA 20091112.jkim2009-11-1640-224/+1249
|\ \ | |/
* | Merge ACPICA 20091013.jkim2009-10-1922-487/+1105
|\ \ | |/
* | Canonify include paths for newly added files.jkim2009-09-114-9/+9
| |
* | MFV: r196804jkim2009-09-1176-2295/+5743
|\ \ | |/ | | | | Import ACPICA 20090903
* | Revert previous commit and add myself to the list of people who shouldphk2009-09-081-1/+0
| | | | | | | | know better than to commit with a cat in the area.
* | Add necessary include.phk2009-09-081-0/+1
| |
* | Remove build timestamps from the following files:cperciva2009-07-112-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | /boot/kernel/hptrr.ko /etc/mail/*.cf /lib/libcrypto.so.5 /usr/bin/ntpq /usr/sbin/amd /usr/sbin/iasl /usr/sbin/ntpd /usr/sbin/ntpdate /usr/sbin/ntpdc There does not appear to be any purpose to having these timestamps, and they have the irritating consequence that the aforementioned files will be different every time they are rebuilt. After this commit, the only remaining build timestamps are in the kernel, the boot loaders, /usr/include/osreldate.h (the year in the copyright notice), and lib*.a (the timestamps on all of the included .o files). Reviewed by: scottl (hptrr), gshapiro (sendmail), simon (openssl), roberto (ntp), jkim (acpica) Approved by: re (kib)
* | Rewrite OsdSynch.c to reflect the latest ACPICA more closely:jkim2009-06-081-0/+1
| | | | | | | | | | | | - Implement ACPI semaphore (ACPI_SEMAPHORE) with condvar(9) and mutex(9). - Implement ACPI mutex (ACPI_MUTEX) with mutex(9). - Implement ACPI lock (ACPI_SPINLOCK) with spin mutex(9).
* | Clean up FreeBSD-specific header file:jkim2009-06-081-6/+3
| | | | | | | | | | | | - Define ACPI_USE_DO_WHILE_0 to add do while(0) around return_*() macros. - Define __cdecl only for user land. It will never be used in kernel. - Remove __cli() and __sti(). They were deprecated long ago.
* | Do not install SSDT when DSDT is overriden by user.jkim2009-06-041-0/+15
| |
* | Trim unnecessary files from the import.jkim2009-06-0331-13100/+5
| |
* | Remove function redeclaration. It was upstreamed but lost somehow.jkim2009-06-021-8/+0
| |
* | Canonify include paths again.jkim2009-06-02175-706/+706
| |
* | Fix include path fixup for contrib/dev/acpica/include/platform/*.h.jkim2009-06-021-0/+5
| |
* | MFV: ACPICA 20090521jkim2009-06-02239-15290/+37027
|\ \ | |/
| * flatten acpica vendor areaavg2009-05-19201-146106/+0
| | | | | | | | | | | | | | | | do it for current ('dist') and previous versions; disable keywords expansion at the same time Reviewed by: attilio Approved by: rpaulo
* | This commit was generated by cvs2svn to compensate for changes in r175256,njl2008-01-121-3/+19
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Fix GPE livelock that occurs on HP/Compaq laptops, mostly in the thermalnjl2008-01-121-3/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | zone code. The GPE handler method (i.e. _L00) generates various Notify events that need to be run to completion before the GPE is re-enabled. In ACPI-CA, we queue an asynch callback at the same priority as a Notify so that it will only run after all Notify handlers have completed. The callback re-enables the GPE afterwards. We also changed the priority of Notifies to be the same as GPEs, given the possibility that another GPE could arrive before the Notifies have completed and we don't want it to get queued ahead of the rest. The ACPI-CA change was submitted by Alexey Starikovskiy (SUSE) and will appear in a later release. Special thanks to him for helping track this bug down. MFC after: 1 week Tested by: jhb, Yousif Hassan <yousif / alumni.jmu.edu>
* | This commit was generated by cvs2svn to compensate for changes in r172314,jkim2007-09-242-10/+15
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Fix global lock recursion bug.jkim2007-09-242-10/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch was part of ACPI-CA 20070508 release and the following is excerpt from its change log: Fixed a problem where the Global Lock handle was not properly updated if a thread that acquired the Global Lock via executing AML code then attempted to acquire the lock via the AcpiAcquireGlobalLock interface. Reported by Joe Liu. Approved by: re (kensmith) Tested by: ambrisko Obtained from: Intel
* | This commit was generated by cvs2svn to compensate for changes in r168616,ru2007-04-111-0/+2
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Unbreak world build.ru2007-04-111-0/+2
| |
* | This commit was generated by cvs2svn to compensate for changes in r168609,njl2007-04-111-0/+3
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Put some overly verbose prints under bootverbose. This is on the vendornjl2007-04-111-0/+3
| | | | | | | | branch but we need to work out a different interface with the vendor.
* | Merge from vendor branch to fix tinderbox breakage.jkim2007-03-221-2/+4
| |
* | This commit was generated by cvs2svn to compensate for changes in r167817,jkim2007-03-221-1/+2
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Fix tinderbox build breakage.jkim2007-03-222-3/+6
| | | | | | | | | | Note that it is committed on the vendor branch because it will be submitted to the vendor.
| * Remove files that are no longer needed or removed by vendor.jkim2007-03-225-3071/+0
| |
* | Update to reflect import of ACPI-CA 20070320.jkim2007-03-221-7/+6
| |
* | Resolve conflicts from import of Intel ACPI-CA 20070320.jkim2007-03-223-103/+143
| |
* | Resolve conflicts of unchanged files that are off the vendor branch.jkim2007-03-2221-1056/+1410
| |
* | Remove files that removed on the vendor branch.jkim2007-03-222-1549/+0
| |
* | This commit was generated by cvs2svn to compensate for changes in r167807,jkim2007-03-223-1522/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | This commit was generated by cvs2svn to compensate for changes in r167805,jkim2007-03-224-5/+21
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Add fixes for FreeBSD build that were submitted upstream.jkim2007-03-225-6/+22
| |
* | This commit was generated by cvs2svn to compensate for changes in r167802,jkim2007-03-22177-12462/+22966
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of Intel ACPI-CA 20070320jkim2007-03-22201-13627/+24503
| |
OpenPOWER on IntegriCloud