2011-03-14 15:29:37 +00:00
|
|
|
obj-y += grant-table.o features.o events.o manage.o balloon.o
|
2007-07-18 01:37:06 +00:00
|
|
|
obj-y += xenbus/
|
2011-05-26 16:02:21 +00:00
|
|
|
obj-y += tmem.o
|
2009-01-08 02:07:11 +00:00
|
|
|
|
2009-08-27 19:46:35 +00:00
|
|
|
nostackp := $(call cc-option, -fno-stack-protector)
|
|
|
|
CFLAGS_features.o := $(nostackp)
|
|
|
|
|
2011-04-04 12:39:53 +00:00
|
|
|
obj-$(CONFIG_BLOCK) += biomerge.o
|
|
|
|
obj-$(CONFIG_HOTPLUG_CPU) += cpu_hotplug.o
|
|
|
|
obj-$(CONFIG_XEN_XENCOMM) += xencomm.o
|
|
|
|
obj-$(CONFIG_XEN_BALLOON) += xen-balloon.o
|
|
|
|
obj-$(CONFIG_XEN_DEV_EVTCHN) += xen-evtchn.o
|
|
|
|
obj-$(CONFIG_XEN_GNTDEV) += xen-gntdev.o
|
2011-02-07 22:23:05 +00:00
|
|
|
obj-$(CONFIG_XEN_GRANT_DEV_ALLOC) += xen-gntalloc.o
|
2011-04-04 12:39:53 +00:00
|
|
|
obj-$(CONFIG_XENFS) += xenfs/
|
2010-05-17 16:08:21 +00:00
|
|
|
obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o
|
2011-04-04 12:39:53 +00:00
|
|
|
obj-$(CONFIG_XEN_PLATFORM_PCI) += xen-platform-pci.o
|
|
|
|
obj-$(CONFIG_SWIOTLB_XEN) += swiotlb-xen.o
|
|
|
|
obj-$(CONFIG_XEN_DOM0) += pci.o
|
xen/pciback: xen pci backend driver.
This is the host side counterpart to the frontend driver in
drivers/pci/xen-pcifront.c. The PV protocol is also implemented by
frontend drivers in other OSes too, such as the BSDs.
The PV protocol is rather simple. There is page shared with the guest,
which has the 'struct xen_pci_sharedinfo' embossed in it. The backend
has a thread that is kicked every-time the structure is changed and
based on the operation field it performs specific tasks:
XEN_PCI_OP_conf_[read|write]:
Read/Write 0xCF8/0xCFC filtered data. (conf_space*.c)
Based on which field is probed, we either enable/disable the PCI
device, change power state, read VPD, etc. The major goal of this
call is to provide a Physical IRQ (PIRQ) to the guest.
The PIRQ is Xen hypervisor global IRQ value irrespective of the IRQ
is tied in to the IO-APIC, or is a vector. For GSI type
interrupts, the PIRQ==GSI holds. For MSI/MSI-X the
PIRQ value != Linux IRQ number (thought PIRQ==vector).
Please note, that with Xen, all interrupts (except those level shared ones)
are injected directly to the guest - there is no host interaction.
XEN_PCI_OP_[enable|disable]_msi[|x] (pciback_ops.c)
Enables/disables the MSI/MSI-X capability of the device. These operations
setup the MSI/MSI-X vectors for the guest and pass them to the frontend.
When the device is activated, the interrupts are directly injected in the
guest without involving the host.
XEN_PCI_OP_aer_[detected|resume|mmio|slotreset]: In case of failure,
perform the appropriate AER commands on the guest. Right now that is
a cop-out - we just kill the guest.
Besides implementing those commands, it can also
- hide a PCI device from the host. When booting up, the user can specify
xen-pciback.hide=(1:0:0)(BDF..) so that host does not try to use the
device.
The driver was lifted from linux-2.6.18.hg tree and fixed up
so that it could compile under v3.0. Per suggestion from Jesse Barnes
moved the driver to drivers/xen/xen-pciback.
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
2009-10-13 21:22:20 +00:00
|
|
|
obj-$(CONFIG_XEN_PCIDEV_BACKEND) += xen-pciback/
|
2009-12-08 01:10:27 +00:00
|
|
|
|
2011-04-04 12:39:53 +00:00
|
|
|
xen-evtchn-y := evtchn.o
|
2010-12-14 18:40:46 +00:00
|
|
|
xen-gntdev-y := gntdev.o
|
2011-02-07 22:23:05 +00:00
|
|
|
xen-gntalloc-y := gntalloc.o
|
2009-12-08 01:10:27 +00:00
|
|
|
|
2011-04-04 12:39:53 +00:00
|
|
|
xen-platform-pci-y := platform-pci.o
|