summaryrefslogtreecommitdiffstats
path: root/sys/dev/pv/pvbus.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Determine and print Xen hypervisor version.mikeb2015-07-291-2/+16
| | | | ok reyk, with deraadt@'s permission
* Add callbacks for supported hypervisors in pvbus(4) to print morereyk2015-07-281-28/+53
| | | | | | | | | | information and for some generic CPUID/MSR-level initialization. This changes the attach/match path a bit. Hypervisor informatiom may include a version number, for example: pvbus0 at mainbus0: Hyper-V 6.3.9600 OK mlarkin@
* Add the bhyve id to recognize if we're running under this hypervisor.reyk2015-07-231-1/+2
| | | | OK mlarkin@
* Switch pvbus(4) to fully dynamic autoconf - drivers don't have to bereyk2015-07-211-17/+19
| | | | | | listed in pvbus.c anymore and are defined by the config only. OK mlarkin@ sf@
* Add pvbus(4), a pseudo-bus to attach non-PCI paravirtual devices and buses.reyk2015-07-211-0/+193
vmt(4) is moved from mainbus0 to pvbus0, more devices will follow. OK sf@ deraadt@