1 // SPDX-License-Identifier: GPL-2.0-only
2 /******************************************************************************
5 * Xen platform PCI device driver
7 * Authors: ssmith@xensource.com and stefano.stabellini@eu.citrix.com
9 * Copyright (c) 2005, Intel Corporation.
10 * Copyright (c) 2007, XenSource Inc.
11 * Copyright (c) 2010, Citrix
15 #include <linux/interrupt.h>
17 #include <linux/init.h>
18 #include <linux/pci.h>
20 #include <xen/platform_pci.h>
21 #include <xen/grant_table.h>
22 #include <xen/xenbus.h>
23 #include <xen/events.h>
25 #include <xen/xen-ops.h>
27 #define DRV_NAME "xen-platform-pci"
29 static unsigned long platform_mmio
;
30 static unsigned long platform_mmio_alloc
;
31 static unsigned long platform_mmiolen
;
32 static uint64_t callback_via
;
34 static unsigned long alloc_xen_mmio(unsigned long len
)
38 addr
= platform_mmio
+ platform_mmio_alloc
;
39 platform_mmio_alloc
+= len
;
40 BUG_ON(platform_mmio_alloc
> platform_mmiolen
);
45 static uint64_t get_callback_via(struct pci_dev
*pdev
)
52 return irq
; /* ISA IRQ */
56 /* We don't know the GSI. Specify the PCI INTx line instead. */
57 return ((uint64_t)0x01 << HVM_CALLBACK_VIA_TYPE_SHIFT
) | /* PCI INTx identifier */
58 ((uint64_t)pci_domain_nr(pdev
->bus
) << 32) |
59 ((uint64_t)pdev
->bus
->number
<< 16) |
60 ((uint64_t)(pdev
->devfn
& 0xff) << 8) |
61 ((uint64_t)(pin
- 1) & 3);
64 static irqreturn_t
do_hvm_evtchn_intr(int irq
, void *dev_id
)
66 xen_hvm_evtchn_do_upcall();
70 static int xen_allocate_irq(struct pci_dev
*pdev
)
72 return request_irq(pdev
->irq
, do_hvm_evtchn_intr
,
73 IRQF_NOBALANCING
| IRQF_TRIGGER_RISING
,
74 "xen-platform-pci", pdev
);
77 static int platform_pci_resume(struct device
*dev
)
81 if (xen_have_vector_callback
)
84 err
= xen_set_callback_via(callback_via
);
86 dev_err(dev
, "platform_pci_resume failure!\n");
92 static int platform_pci_probe(struct pci_dev
*pdev
,
93 const struct pci_device_id
*ent
)
97 long mmio_addr
, mmio_len
;
98 unsigned int max_nr_gframes
;
99 unsigned long grant_frames
;
104 i
= pci_enable_device(pdev
);
108 ioaddr
= pci_resource_start(pdev
, 0);
110 mmio_addr
= pci_resource_start(pdev
, 1);
111 mmio_len
= pci_resource_len(pdev
, 1);
113 if (mmio_addr
== 0 || ioaddr
== 0) {
114 dev_err(&pdev
->dev
, "no resources found\n");
119 ret
= pci_request_region(pdev
, 1, DRV_NAME
);
123 ret
= pci_request_region(pdev
, 0, DRV_NAME
);
127 platform_mmio
= mmio_addr
;
128 platform_mmiolen
= mmio_len
;
129 if (!xen_have_vector_callback
) {
130 ret
= xen_allocate_irq(pdev
);
132 dev_warn(&pdev
->dev
, "request_irq failed err=%d\n", ret
);
135 callback_via
= get_callback_via(pdev
);
136 ret
= xen_set_callback_via(callback_via
);
138 dev_warn(&pdev
->dev
, "Unable to set the evtchn callback "
144 max_nr_gframes
= gnttab_max_grant_frames();
145 grant_frames
= alloc_xen_mmio(PAGE_SIZE
* max_nr_gframes
);
146 ret
= gnttab_setup_auto_xlat_frames(grant_frames
);
155 gnttab_free_auto_xlat_frames();
157 pci_release_region(pdev
, 0);
159 pci_release_region(pdev
, 1);
161 pci_disable_device(pdev
);
165 static const struct pci_device_id platform_pci_tbl
[] = {
166 {PCI_VENDOR_ID_XEN
, PCI_DEVICE_ID_XEN_PLATFORM
,
167 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0},
171 static const struct dev_pm_ops platform_pm_ops
= {
172 .resume_noirq
= platform_pci_resume
,
175 static struct pci_driver platform_driver
= {
177 .probe
= platform_pci_probe
,
178 .id_table
= platform_pci_tbl
,
180 .pm
= &platform_pm_ops
,
184 builtin_pci_driver(platform_driver
);