aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/acpica
Commit message (Expand)AuthorAgeFilesLines
* Add the ability to detach a battery. Now batteries that are detached areNate Lawson2004-07-123-1/+33
* Update for the KDB framework:Marcel Moolenaar2004-07-101-2/+3
* Make the default memory range in the top 2GB of ram in the hopes thatWarner Losh2004-07-041-3/+5
* Remove duplicate FreeBSD id.Nate Lawson2004-07-021-2/+0
* Get rid of the strict aliasing error by retrieving the ECDT via a tableNate Lawson2004-07-021-2/+3
* After re-exporting rman, et al, __RMAN_RESOURCE_VISIBLE is no longerWarner Losh2004-07-011-1/+0
* Trim a few things from the dmesg output and stick them under bootverbose toJohn Baldwin2004-07-011-9/+12
* Rework the code that waits for a response from the EC. Use an sx lockNate Lawson2004-07-011-48/+35
* Add missing function debug trace macros to the new powerres functions.Nate Lawson2004-06-301-0/+4
* Hide struct resource and struct rman. You must defineWarner Losh2004-06-301-0/+1
* Move flags into a private ivar so it can't collide with device flags.Nate Lawson2004-06-306-124/+137
* Add a method for referencing/switching power resources based on _PRW.Nate Lawson2004-06-301-11/+56
* Disable the EC GPE in the shutdown path. This is correct but is not knownNate Lawson2004-06-301-0/+13
* Diff reduction for style.Nate Lawson2004-06-301-6/+3
* Add new quirk code that disables problem BIOS versions. Remove old quirkNate Lawson2004-06-301-74/+19
* Add the table quirk matching code. It matches rules defined in acpi_quirksNate Lawson2004-06-301-0/+183
* Add machdep quirks functions. On i386, this disables acpi on systems withNate Lawson2004-06-301-0/+6
* Staticize acpi_MatchHid() and include acpi_if.hNate Lawson2004-06-291-1/+1
* Use the acpi_id_probe() method instead of acpi_MatchHid(), which is nowNate Lawson2004-06-298-65/+72
* Add implementation of the ACPI methods which hands them off to ACPI-CA.Nate Lawson2004-06-291-5/+58
* Add acpi methods for HID/CID probing, evaluating objects, and walking theNate Lawson2004-06-291-0/+77
* Use a default of the FADT for matching CreatorId quirks. Use XSDT to meanNate Lawson2004-06-291-6/+6
* Include isa/pnpvar.h and remove a duplicate copy of PNP_EISAID.Nate Lawson2004-06-291-13/+2
* While booting, use DELAY() for waiting for the EC to respond instead ofNate Lawson2004-06-281-6/+13
* rman_reserve_resource doesn't set the bushandle, so we have to do it here.Warner Losh2004-06-281-1/+1
* MFp4: Set the bus handle to the bus handle of the resource, not theWarner Losh2004-06-271-3/+2
* Update some comments and remove non-standard notation.Nate Lawson2004-06-241-4/+7
* Add a quirks array based on matching ACPI tables. The entries in this fileNate Lawson2004-06-241-0/+482
* Attach the correct handle, not the one that was just deleted. Also,Nate Lawson2004-06-241-3/+2
* Run the power off code directly instead of using indirection throughNate Lawson2004-06-241-28/+11
* Use uintmax_t for CPU statistics and add a cast to prevent truncation ofNate Lawson2004-06-241-2/+2
* - Defer BUS_CONFIG_INTR() on ACPI IRQ resources until the resources areJohn Baldwin2004-06-234-34/+143
* Now that we associate a device_t with ACPI device handles, lookup theJohn Baldwin2004-06-231-7/+41
* Fix typos and add spaces before `(' in some commentsChristian Brueffer2004-06-221-3/+3
* Add more precision to the cx_usage sysctl output and special-case 0%.Nate Lawson2004-06-191-5/+11
* Remove compat code and unused lock declarations.Nate Lawson2004-06-181-22/+2
* Remove compat defines.Nate Lawson2004-06-181-4/+0
* Do the dreaded s/dev_t/struct cdev */Poul-Henning Kamp2004-06-162-4/+4
* Revert the removal of the initial_irq hack for now as this code is moreJohn Baldwin2004-06-141-9/+7
* Remove disable_on_poweroff and our pre-sync shutdown handler. DisablingNate Lawson2004-06-141-30/+1
* Clean up acpi_probe_order() a bit and clarify some comments.Nate Lawson2004-06-141-9/+19
* Don't probe/attach in the ACPI_DEBUG case.Nate Lawson2004-06-141-2/+1
* Add support to ACPI to manage its own resources. Previously, resourceNate Lawson2004-06-1310-101/+246
* Associate a device_t with an ACPI_HANDLE. This make AcpiWalkNamespace moreNate Lawson2004-06-132-0/+21
* Remove accidental change.Nate Lawson2004-06-071-1/+1
* Avoid printing extraneous warning messages when trying to switch a deviceNate Lawson2004-06-072-17/+17
* - Use PCI_INVALID_IRQ macro rather than a magic number.John Baldwin2004-06-071-2/+1
* Don't forget to pass shutdown events down to children first now that weNate Lawson2004-06-051-0/+3
* Disable wake GPEs in the reboot path as well as poweroff path. This fixesNate Lawson2004-06-051-4/+11
* Rework acpi_cpu_idle() to select the next idle state before sleeping, notNate Lawson2004-06-051-109/+78