summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpi/acpidebug.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use <stdint.h> types.kettenis2018-06-291-3/+3
| | | | ok mpi@, jung@, krw@, deraadt@
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
| | | | | | | have any direct symbols used. Tested for indirect use by compiling amd64/i386/sparc64 kernels. ok tedu@ deraadt@
* Add db_vprintf(), and then use it in ACPI's db_disprint() instead ofguenther2013-12-121-5/+2
| | | | | | formatting into a local buffer. ok miod@
* format string cleanupderaadt2013-11-181-2/+2
|
* spacing and indents that are driving me crazyderaadt2010-07-211-6/+6
|
* Add mapping for ACPI device to PCI bdf (match autoconf tree)jordan2010-07-081-5/+4
| | | | | | Simplify resource parsing function to use buffer argument Convert namespace linked lists to use queue macros ok marco@, deraadt@
* Backout recent AML changes, breaks on R210 and othersjordan2010-07-011-4/+5
|
* Change ACPI namespace to use SIMPLEQ macrosjordan2010-06-271-5/+4
| | | | ok mlarkin
* Added error handler for missing AML nameref; fixes PR6103jordan2009-05-301-6/+3
| | | | ok marco@
* Removed old AML disassembler codejordan2008-06-121-237/+16
| | | | ok @marco
* KNFmarco2008-06-061-2/+2
|
* Shrink acpi some more for floppies and while here re-enable acpi on themarco2008-06-061-1/+3
| | | | | | | floppies. Fixes crazy sony vaio kettenis has. tested by deraadt ok deraadt jordan kettenis
* Re-enable new parser. Lots of testing by various folks. Fits all mediamarco2008-06-011-11/+43
| | | | | | now too. ok kettenis deraadt
* back out jordans new parser.dlg2008-05-161-43/+11
| | | | | | | | it didnt have enough oks from the right people, it did break machines that were previously working, and it bloated the RAMDISKS and install media beyond the constraints of the media. requested by deraadt@
* Adding new ACPI Parser codejordan2008-05-141-11/+43
| | | | | | Old guts of code still exists, needs to be torn out next ok marco@ ok brad@
* spacingderaadt2007-11-121-8/+7
|
* Added support for calling _OSI methodjordan2007-02-061-6/+6
| | | | | Display byte/word/string/nameref for aml_mnem function ok marco@
* even more knf lovederaadt2006-12-211-4/+4
|
* more knfderaadt2006-12-211-45/+53
|
* Unused global variable.miod2006-11-291-4/+1
|
* Added stack trace to aml_die+acpidebugjordan2006-10-241-3/+27
| | | | ok marco@
* Fixed AML debugger code to use new interfacejordan2006-10-191-286/+218
| | | | ok marco@
* Massive ACPI changesjordan2006-10-121-15/+20
| | | | | | Fixed ACPI leaks new ACPI API ok marco@
* Disassembler now pretty prints AML code (like acpidump)jordan2006-03-211-94/+153
| | | | ok marco@
* Used common aml_opname for debuggerjordan2006-03-091-39/+4
| | | | | Removed redundant code ok marco@
* One more KNF nit.marco2006-03-091-8/+8
|
* Pretty.marco2006-03-091-15/+14
|
* Create separate function to parse name + scope. Should shave some bytes ofmarco2006-03-091-41/+20
| | | | | | and makes code more readable. ok jordan.
* Add showval to ddb interface. Now we can pretty much debug anything AMLmarco2006-03-081-5/+190
| | | | | | from ddb. Very useful. Help jordan.
* Add "disasm" code for ddb. With this one can disassemble AML code from DDB.marco2006-03-071-6/+321
| | | | | | | example : "machine acpi disasm \\_SB_.BIF_" dumps the battery AML on my laptop. Disasm code was written by jordan. Help from miod on ddb lexer magic. ok jordan.
* Hook acpi to ddb since we need to be able to do some live debugging.marco2006-03-051-0/+91
Lots and lots of help from miod@ and deraadt@ ok deraadt@ miod@