aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/Makefile2
-rw-r--r--drivers/xen/dbgp.c48
2 files changed, 49 insertions, 1 deletions
diff --git a/drivers/xen/Makefile b/drivers/xen/Makefile
index d80bea5535a..a4a3cab2f45 100644
--- a/drivers/xen/Makefile
+++ b/drivers/xen/Makefile
@@ -18,7 +18,7 @@ obj-$(CONFIG_XEN_PVHVM) += platform-pci.o
18obj-$(CONFIG_XEN_TMEM) += tmem.o 18obj-$(CONFIG_XEN_TMEM) += tmem.o
19obj-$(CONFIG_SWIOTLB_XEN) += swiotlb-xen.o 19obj-$(CONFIG_SWIOTLB_XEN) += swiotlb-xen.o
20obj-$(CONFIG_XEN_DOM0) += pcpu.o 20obj-$(CONFIG_XEN_DOM0) += pcpu.o
21obj-$(CONFIG_XEN_DOM0) += pci.o acpi.o 21obj-$(CONFIG_XEN_DOM0) += pci.o dbgp.o acpi.o
22obj-$(CONFIG_XEN_MCE_LOG) += mcelog.o 22obj-$(CONFIG_XEN_MCE_LOG) += mcelog.o
23obj-$(CONFIG_XEN_PCIDEV_BACKEND) += xen-pciback/ 23obj-$(CONFIG_XEN_PCIDEV_BACKEND) += xen-pciback/
24obj-$(CONFIG_XEN_PRIVCMD) += xen-privcmd.o 24obj-$(CONFIG_XEN_PRIVCMD) += xen-privcmd.o
diff --git a/drivers/xen/dbgp.c b/drivers/xen/dbgp.c
new file mode 100644
index 00000000000..42569c77ccc
--- /dev/null
+++ b/drivers/xen/dbgp.c
@@ -0,0 +1,48 @@
1#include <linux/pci.h>
2#include <linux/usb.h>
3#include <linux/usb/ehci_def.h>
4#include <linux/usb/hcd.h>
5#include <asm/xen/hypercall.h>
6#include <xen/interface/physdev.h>
7#include <xen/xen.h>
8
9static int xen_dbgp_op(struct usb_hcd *hcd, int op)
10{
11 const struct device *ctrlr = hcd_to_bus(hcd)->controller;
12 struct physdev_dbgp_op dbgp;
13
14 if (!xen_initial_domain())
15 return 0;
16
17 dbgp.op = op;
18
19#ifdef CONFIG_PCI
20 if (ctrlr->bus == &pci_bus_type) {
21 const struct pci_dev *pdev = to_pci_dev(ctrlr);
22
23 dbgp.u.pci.seg = pci_domain_nr(pdev->bus);
24 dbgp.u.pci.bus = pdev->bus->number;
25 dbgp.u.pci.devfn = pdev->devfn;
26 dbgp.bus = PHYSDEVOP_DBGP_BUS_PCI;
27 } else
28#endif
29 dbgp.bus = PHYSDEVOP_DBGP_BUS_UNKNOWN;
30
31 return HYPERVISOR_physdev_op(PHYSDEVOP_dbgp_op, &dbgp);
32}
33
34int xen_dbgp_reset_prep(struct usb_hcd *hcd)
35{
36 return xen_dbgp_op(hcd, PHYSDEVOP_DBGP_RESET_PREPARE);
37}
38
39int xen_dbgp_external_startup(struct usb_hcd *hcd)
40{
41 return xen_dbgp_op(hcd, PHYSDEVOP_DBGP_RESET_DONE);
42}
43
44#ifndef CONFIG_EARLY_PRINTK_DBGP
45#include <linux/export.h>
46EXPORT_SYMBOL_GPL(xen_dbgp_reset_prep);
47EXPORT_SYMBOL_GPL(xen_dbgp_external_startup);
48#endif