aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/acpica/acpi_ec.c
Commit message (Expand)AuthorAgeFilesLines
* acpi: Use device_set_descf()Mark Johnston2024-06-021-5/+3
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* acpi: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin2022-05-061-2/+1
* acpi_ec: Use device_get_devclass to find devclass in probe.John Baldwin2022-04-211-1/+1
* acpi_ec(4): Don't probe erroneously if success occurredConrad Meyer2020-04-231-0/+2
* acpi_ec(4): Do not probe "successfully" if an error occurredConrad Meyer2020-04-201-5/+4
* Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (17 of many)Pawel Biernacki2020-02-261-1/+3
* Include ktr.h in more compilation unitsConrad Meyer2019-05-211-0/+1
* acpi/ec: Fix regression caused by r340644Ben Widawsky2018-11-261-11/+18
* acpi: fix acpi_ec_probe to only check EC devicesBen Widawsky2018-11-191-76/+78
* Distinguish _CID match and _HID match and make lower priority probeTakanori Watanabe2018-10-261-5/+8
* Fix for endless recursion in the ACPI GPE handler during boot.Hans Petter Selasky2016-12-021-9/+31
* Silence PVS-Studio warning (V595).Jung-uk Kim2016-02-231-3/+1
* Simplify retry loops. No functional change.Jung-uk Kim2015-01-231-11/+7
* Revert r216942. This commit was premature and caused too many complaints.Jung-uk Kim2015-01-231-13/+3
* Pull in r267961 and r267973 again. Fix for issues reported will follow.Hans Petter Selasky2014-06-281-6/+3
* Revert r267961, r267973:Glen Barber2014-06-271-3/+6
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifHans Petter Selasky2014-06-271-6/+3
* Use DEVMETHOD_END macro defined in sys/bus.h instead of {0, 0} sentinel on de...Sofian Brabez2013-01-301-1/+1
* Consistently use ACPI_SUCCESS() and ACPI_FAILURE() macros wherever possible.Jung-uk Kim2012-06-011-8/+8
* Centralize declaration of the debug.acpi sysctl node.John Baldwin2012-05-171-1/+0
* - Give all clocks and timers on acpi0 the equal probing order.Jung-uk Kim2012-02-071-1/+1
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-1/+1
* Clarify the previous commit. AcpiFinishGpe() will not clear GPE for usJung-uk Kim2011-01-041-1/+3
* Clear GPE from a query handler if the task was deferred.Jung-uk Kim2011-01-041-8/+11
* Fix parameters for wakeup(9) and tsleep(9).Jung-uk Kim2011-01-031-2/+2
* Merge ACPICA 20101209.Jung-uk Kim2010-12-151-6/+11
* acpi_ec: changes in communication with hardwareAndriy Gapon2010-10-121-83/+89
* When EC burst mode is activated and multiple bytes are accessed, do notJung-uk Kim2010-08-061-54/+27
* Merge ACPICA 20100702.Jung-uk Kim2010-07-061-3/+2
* Remove unnecessary pointer type castings, shift operations and dead code.Jung-uk Kim2010-06-011-18/+17
* Merge ACPICA 20100331 (and four additional upstream patches).Jung-uk Kim2010-04-021-9/+3
* Merge ACPICA 20100121.Jung-uk Kim2010-01-211-7/+7
* acpi_ec: remove redundant acpi_disabled check in probe methodAndriy Gapon2010-01-181-2/+1
* acpi_ec: clean up 'private' ivar when freeing memory to which it pointsAndriy Gapon2010-01-181-0/+1
* acpi: remove 'magic' ivarAndriy Gapon2009-11-071-8/+6
* Import ACPICA 20090521.Jung-uk Kim2009-06-051-1/+3
* Initial suspend/resume support for amd64.Jung-uk Kim2009-03-171-1/+1
* Whitespace only.Nate Lawson2007-11-081-2/+0
* More style nit.Takanori Watanabe2007-10-251-6/+3
* Fix variable name to be clear what it means.Takanori Watanabe2007-10-251-3/+3
* Turn EC into poll mode before device_resume invoked .Takanori Watanabe2007-10-251-3/+34
* Rewrite the EC driver event model. The main goal is to avoidNate Lawson2007-09-241-304/+189
* Convert magic to a uintptr_t. This should get rid of some warnings onNate Lawson2007-06-151-2/+2
* AcpiAcquireGlobalLock() can sometimes sleep if the mutex is contested.Nate Lawson2007-06-021-13/+10
* Optimize sx locks to use simple atomic operations for the common cases ofJohn Baldwin2007-03-311-0/+1
* Catch up with ACPI-CA 20070320 import.Jung-uk Kim2007-03-221-23/+10
* If we got an OBE/IBF event, we failed to re-enable the GPE. This wouldNate Lawson2007-03-201-5/+14
* Disable burst mode by default. Testing has shown that while it works onNate Lawson2007-03-181-2/+2
* Rework EC I/O approach. Implement burst mode, including proper handling ofNate Lawson2007-02-271-109/+206