]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/commit
MFC r257293.
authorneel <neel@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Wed, 30 Oct 2013 20:42:09 +0000 (20:42 +0000)
committerneel <neel@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Wed, 30 Oct 2013 20:42:09 +0000 (20:42 +0000)
commit285a87f8a3a28743f64f0e8cce30f1b8742d8a92
treef6b4a2154fde4216c91863cf56f0b0053acd592f
parentdac522c8ebc173f861e57c55bb3024017abc5631
MFC r257293.

Add support for PCI-to-ISA LPC bridge emulation. If the LPC bus is attached
to a virtual machine then we implicitly create COM1 and COM2 ISA devices.

Prior to this change the only way of attaching a COM port to the virtual
machine was by presenting it as a PCI device that is mapped at the legacy
I/O address 0x3F8 or 0x2F8.

There were some issues with the original approach:
- It did not work at all with UEFI because UEFI will reprogram the PCI device
  BARs and remap the COM1/COM2 ports at non-legacy addresses.
- OpenBSD GENERIC kernel does not create a /dev/console because it expects
  the uart device at the legacy 0x3F8/0x2F8 address to be an ISA device.
- It was functional with a FreeBSD guest but caused the console to appear
  on /dev/ttyu2 which was not intuitive.

The uart emulation is now independent of the bus on which it resides. Thus it
is possible to have uart devices on the PCI bus in addition to the legacy
COM1/COM2 devices behind the LPC bus.

The command line option to attach ISA COM1/COM2 ports to a virtual machine is
"-s <bus>,lpc -l com1,stdio".

The command line option to create a PCI-attached uart device is:
"-s <bus>,uart[,stdio]"

The command line option to create PCI-attached COM1/COM2 device is:
"-S <bus>,uart[,stdio]". This style of creating COM ports is deprecated.

Approved by: re (glebius)

git-svn-id: svn://svn.freebsd.org/base/stable/10@257396 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
14 files changed:
share/examples/bhyve/vmrun.sh
usr.sbin/bhyve/Makefile
usr.sbin/bhyve/bhyverun.c
usr.sbin/bhyve/inout.c
usr.sbin/bhyve/inout.h
usr.sbin/bhyve/legacy_irq.c [new file with mode: 0644]
usr.sbin/bhyve/legacy_irq.h [new file with mode: 0644]
usr.sbin/bhyve/pci_emul.c
usr.sbin/bhyve/pci_emul.h
usr.sbin/bhyve/pci_lpc.c [new file with mode: 0644]
usr.sbin/bhyve/pci_lpc.h [new file with mode: 0644]
usr.sbin/bhyve/pci_uart.c
usr.sbin/bhyve/uart_emul.c [new file with mode: 0644]
usr.sbin/bhyve/uart_emul.h [new file with mode: 0644]