]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/xen/platform-pci.c
xen: Fix event channel callback via INTX/GSI
[thirdparty/linux.git] / drivers / xen / platform-pci.c
CommitLineData
3b20eb23 1// SPDX-License-Identifier: GPL-2.0-only
183d03cc
SS
2/******************************************************************************
3 * platform-pci.c
4 *
5 * Xen platform PCI device driver
e01dc539
PG
6 *
7 * Authors: ssmith@xensource.com and stefano.stabellini@eu.citrix.com
8 *
183d03cc
SS
9 * Copyright (c) 2005, Intel Corporation.
10 * Copyright (c) 2007, XenSource Inc.
11 * Copyright (c) 2010, Citrix
183d03cc
SS
12 */
13
14
15#include <linux/interrupt.h>
16#include <linux/io.h>
e01dc539 17#include <linux/init.h>
183d03cc
SS
18#include <linux/pci.h>
19
c1c5413a 20#include <xen/platform_pci.h>
183d03cc
SS
21#include <xen/grant_table.h>
22#include <xen/xenbus.h>
23#include <xen/events.h>
24#include <xen/hvm.h>
016b6f5f 25#include <xen/xen-ops.h>
183d03cc
SS
26
27#define DRV_NAME "xen-platform-pci"
28
183d03cc
SS
29static unsigned long platform_mmio;
30static unsigned long platform_mmio_alloc;
31static unsigned long platform_mmiolen;
da72ff5b 32static uint64_t callback_via;
183d03cc 33
598ddb8c 34static unsigned long alloc_xen_mmio(unsigned long len)
183d03cc
SS
35{
36 unsigned long addr;
37
38 addr = platform_mmio + platform_mmio_alloc;
39 platform_mmio_alloc += len;
40 BUG_ON(platform_mmio_alloc > platform_mmiolen);
41
42 return addr;
43}
44
da72ff5b
SS
45static uint64_t get_callback_via(struct pci_dev *pdev)
46{
47 u8 pin;
48 int irq;
49
50 irq = pdev->irq;
51 if (irq < 16)
52 return irq; /* ISA IRQ */
53
54 pin = pdev->pin;
55
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);
62}
63
64static irqreturn_t do_hvm_evtchn_intr(int irq, void *dev_id)
65{
66 xen_hvm_evtchn_do_upcall();
67 return IRQ_HANDLED;
68}
69
70static int xen_allocate_irq(struct pci_dev *pdev)
71{
72 return request_irq(pdev->irq, do_hvm_evtchn_intr,
73 IRQF_NOBALANCING | IRQF_TRIGGER_RISING,
74 "xen-platform-pci", pdev);
75}
76
77b84bb3 77static int platform_pci_resume(struct device *dev)
da72ff5b
SS
78{
79 int err;
84d582d2
BO
80
81 if (xen_have_vector_callback)
da72ff5b 82 return 0;
84d582d2 83
da72ff5b
SS
84 err = xen_set_callback_via(callback_via);
85 if (err) {
77b84bb3 86 dev_err(dev, "platform_pci_resume failure!\n");
da72ff5b
SS
87 return err;
88 }
89 return 0;
90}
91
e01dc539
PG
92static int platform_pci_probe(struct pci_dev *pdev,
93 const struct pci_device_id *ent)
183d03cc
SS
94{
95 int i, ret;
00f28e40 96 long ioaddr;
183d03cc 97 long mmio_addr, mmio_len;
183d03cc 98 unsigned int max_nr_gframes;
efaf30a3 99 unsigned long grant_frames;
183d03cc 100
38ad4f4b
OH
101 if (!xen_domain())
102 return -ENODEV;
103
183d03cc
SS
104 i = pci_enable_device(pdev);
105 if (i)
106 return i;
107
108 ioaddr = pci_resource_start(pdev, 0);
183d03cc
SS
109
110 mmio_addr = pci_resource_start(pdev, 1);
111 mmio_len = pci_resource_len(pdev, 1);
112
113 if (mmio_addr == 0 || ioaddr == 0) {
114 dev_err(&pdev->dev, "no resources found\n");
115 ret = -ENOENT;
116 goto pci_out;
117 }
118
00f28e40
IC
119 ret = pci_request_region(pdev, 1, DRV_NAME);
120 if (ret < 0)
183d03cc 121 goto pci_out;
183d03cc 122
00f28e40
IC
123 ret = pci_request_region(pdev, 0, DRV_NAME);
124 if (ret < 0)
183d03cc 125 goto mem_out;
183d03cc
SS
126
127 platform_mmio = mmio_addr;
128 platform_mmiolen = mmio_len;
84d582d2 129 if (!xen_have_vector_callback) {
da72ff5b
SS
130 ret = xen_allocate_irq(pdev);
131 if (ret) {
132 dev_warn(&pdev->dev, "request_irq failed err=%d\n", ret);
133 goto out;
134 }
135 callback_via = get_callback_via(pdev);
136 ret = xen_set_callback_via(callback_via);
137 if (ret) {
138 dev_warn(&pdev->dev, "Unable to set the evtchn callback "
139 "err=%d\n", ret);
140 goto out;
141 }
142 }
143
183d03cc 144 max_nr_gframes = gnttab_max_grant_frames();
efaf30a3 145 grant_frames = alloc_xen_mmio(PAGE_SIZE * max_nr_gframes);
89b9e08f
WY
146 ret = gnttab_setup_auto_xlat_frames(grant_frames);
147 if (ret)
efaf30a3 148 goto out;
183d03cc
SS
149 ret = gnttab_init();
150 if (ret)
efaf30a3 151 goto grant_out;
183d03cc 152 return 0;
efaf30a3
KRW
153grant_out:
154 gnttab_free_auto_xlat_frames();
183d03cc 155out:
00f28e40 156 pci_release_region(pdev, 0);
183d03cc 157mem_out:
00f28e40 158 pci_release_region(pdev, 1);
183d03cc
SS
159pci_out:
160 pci_disable_device(pdev);
161 return ret;
162}
163
fff219d9 164static const struct pci_device_id platform_pci_tbl[] = {
183d03cc
SS
165 {PCI_VENDOR_ID_XEN, PCI_DEVICE_ID_XEN_PLATFORM,
166 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
167 {0,}
168};
169
c17db640 170static const struct dev_pm_ops platform_pm_ops = {
77b84bb3
BH
171 .resume_noirq = platform_pci_resume,
172};
173
183d03cc
SS
174static struct pci_driver platform_driver = {
175 .name = DRV_NAME,
e01dc539 176 .probe = platform_pci_probe,
183d03cc 177 .id_table = platform_pci_tbl,
77b84bb3
BH
178 .driver = {
179 .pm = &platform_pm_ops,
180 },
183d03cc
SS
181};
182
1ea55e80 183builtin_pci_driver(platform_driver);