summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpi/ipmi_acpi.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add glue to make ipmi(4) attach to FDT.kettenis2020-03-291-1/+2
| | | | ok deraadt@
* Allow ipmi(4) to attach using mmio. Use the IPMI revision provided by thekettenis2020-01-061-22/+45
| | | | | | | _SRV method if present. tested by sthen@ ok jmatthew@
* Reorganize the ipmi(4) code a bit in anticipation of adding SSIF support:kettenis2019-08-131-4/+3
| | | | | | | | | - Put function prototypes in more logical places. - Inroduce a ipmi_attach_common() function. - Move all the SMBIOS related code to the end of the file and only compile it in on amd64 & i386. ok jmatthew@ and deraadt@
* On newer machines IPMI attaches only using the ACPI tables instead ofpatrick2018-03-141-0/+161
the SMBIOS table. Some machines even have IPMI defined in both tables. This attachment driver makes ipmi(4) available via ACPI. There can only attach one ipmi(4) device, either on ACPI or SMBIOS. Akin to the SMBIOS-attached ipmi(4) this driver is disabled by default. Feedback from jsg@ ok deraadt@