blob: 1275df83070f2186388cdf09aab3bbf1facf1326 [file] [log] [blame]
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001/******************************************************************************
2 * platform-pci.c
3 *
4 * Xen platform PCI device driver
Paul Gortmakere01dc532016-02-21 19:06:08 -05005 *
6 * Authors: ssmith@xensource.com and stefano.stabellini@eu.citrix.com
7 *
Stefano Stabellini183d03c2010-05-17 17:08:21 +01008 * Copyright (c) 2005, Intel Corporation.
9 * Copyright (c) 2007, XenSource Inc.
10 * Copyright (c) 2010, Citrix
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms and conditions of the GNU General Public License,
14 * version 2, as published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
23 * Place - Suite 330, Boston, MA 02111-1307 USA.
24 *
25 */
26
27
28#include <linux/interrupt.h>
29#include <linux/io.h>
Paul Gortmakere01dc532016-02-21 19:06:08 -050030#include <linux/init.h>
Stefano Stabellini183d03c2010-05-17 17:08:21 +010031#include <linux/pci.h>
32
Stefano Stabellinic1c54132010-05-14 12:44:30 +010033#include <xen/platform_pci.h>
Stefano Stabellini183d03c2010-05-17 17:08:21 +010034#include <xen/grant_table.h>
35#include <xen/xenbus.h>
36#include <xen/events.h>
37#include <xen/hvm.h>
Stefano Stabellini016b6f52010-05-14 12:45:07 +010038#include <xen/xen-ops.h>
Stefano Stabellini183d03c2010-05-17 17:08:21 +010039
40#define DRV_NAME "xen-platform-pci"
41
Stefano Stabellini183d03c2010-05-17 17:08:21 +010042static unsigned long platform_mmio;
43static unsigned long platform_mmio_alloc;
44static unsigned long platform_mmiolen;
Stefano Stabellinida72ff52017-01-13 10:07:23 -080045static uint64_t callback_via;
Stefano Stabellini183d03c2010-05-17 17:08:21 +010046
Rashika Kheria598ddb82014-02-09 16:29:30 +053047static unsigned long alloc_xen_mmio(unsigned long len)
Stefano Stabellini183d03c2010-05-17 17:08:21 +010048{
49 unsigned long addr;
50
51 addr = platform_mmio + platform_mmio_alloc;
52 platform_mmio_alloc += len;
53 BUG_ON(platform_mmio_alloc > platform_mmiolen);
54
55 return addr;
56}
57
Stefano Stabellinida72ff52017-01-13 10:07:23 -080058static uint64_t get_callback_via(struct pci_dev *pdev)
59{
60 u8 pin;
61 int irq;
62
63 irq = pdev->irq;
64 if (irq < 16)
65 return irq; /* ISA IRQ */
66
67 pin = pdev->pin;
68
69 /* We don't know the GSI. Specify the PCI INTx line instead. */
70 return ((uint64_t)0x01 << HVM_CALLBACK_VIA_TYPE_SHIFT) | /* PCI INTx identifier */
71 ((uint64_t)pci_domain_nr(pdev->bus) << 32) |
72 ((uint64_t)pdev->bus->number << 16) |
73 ((uint64_t)(pdev->devfn & 0xff) << 8) |
74 ((uint64_t)(pin - 1) & 3);
75}
76
77static irqreturn_t do_hvm_evtchn_intr(int irq, void *dev_id)
78{
79 xen_hvm_evtchn_do_upcall();
80 return IRQ_HANDLED;
81}
82
83static int xen_allocate_irq(struct pci_dev *pdev)
84{
85 return request_irq(pdev->irq, do_hvm_evtchn_intr,
86 IRQF_NOBALANCING | IRQF_TRIGGER_RISING,
87 "xen-platform-pci", pdev);
88}
89
90static int platform_pci_resume(struct pci_dev *pdev)
91{
92 int err;
Boris Ostrovsky84d582d2017-04-24 15:04:53 -040093
94 if (xen_have_vector_callback)
Stefano Stabellinida72ff52017-01-13 10:07:23 -080095 return 0;
Boris Ostrovsky84d582d2017-04-24 15:04:53 -040096
Stefano Stabellinida72ff52017-01-13 10:07:23 -080097 err = xen_set_callback_via(callback_via);
98 if (err) {
99 dev_err(&pdev->dev, "platform_pci_resume failure!\n");
100 return err;
101 }
102 return 0;
103}
104
Paul Gortmakere01dc532016-02-21 19:06:08 -0500105static int platform_pci_probe(struct pci_dev *pdev,
106 const struct pci_device_id *ent)
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100107{
108 int i, ret;
Ian Campbell00f28e42011-01-11 11:50:28 +0000109 long ioaddr;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100110 long mmio_addr, mmio_len;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100111 unsigned int max_nr_gframes;
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500112 unsigned long grant_frames;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100113
Olaf Hering38ad4f42012-07-10 15:31:39 +0200114 if (!xen_domain())
115 return -ENODEV;
116
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100117 i = pci_enable_device(pdev);
118 if (i)
119 return i;
120
121 ioaddr = pci_resource_start(pdev, 0);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100122
123 mmio_addr = pci_resource_start(pdev, 1);
124 mmio_len = pci_resource_len(pdev, 1);
125
126 if (mmio_addr == 0 || ioaddr == 0) {
127 dev_err(&pdev->dev, "no resources found\n");
128 ret = -ENOENT;
129 goto pci_out;
130 }
131
Ian Campbell00f28e42011-01-11 11:50:28 +0000132 ret = pci_request_region(pdev, 1, DRV_NAME);
133 if (ret < 0)
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100134 goto pci_out;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100135
Ian Campbell00f28e42011-01-11 11:50:28 +0000136 ret = pci_request_region(pdev, 0, DRV_NAME);
137 if (ret < 0)
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100138 goto mem_out;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100139
140 platform_mmio = mmio_addr;
141 platform_mmiolen = mmio_len;
Boris Ostrovsky84d582d2017-04-24 15:04:53 -0400142 if (!xen_have_vector_callback) {
Stefano Stabellinida72ff52017-01-13 10:07:23 -0800143 ret = xen_allocate_irq(pdev);
144 if (ret) {
145 dev_warn(&pdev->dev, "request_irq failed err=%d\n", ret);
146 goto out;
147 }
148 callback_via = get_callback_via(pdev);
149 ret = xen_set_callback_via(callback_via);
150 if (ret) {
151 dev_warn(&pdev->dev, "Unable to set the evtchn callback "
152 "err=%d\n", ret);
153 goto out;
154 }
155 }
156
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100157 max_nr_gframes = gnttab_max_grant_frames();
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500158 grant_frames = alloc_xen_mmio(PAGE_SIZE * max_nr_gframes);
Wei Yongjun89b9e082014-01-07 21:11:05 +0800159 ret = gnttab_setup_auto_xlat_frames(grant_frames);
160 if (ret)
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500161 goto out;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100162 ret = gnttab_init();
163 if (ret)
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500164 goto grant_out;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100165 xenbus_probe(NULL);
166 return 0;
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500167grant_out:
168 gnttab_free_auto_xlat_frames();
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100169out:
Ian Campbell00f28e42011-01-11 11:50:28 +0000170 pci_release_region(pdev, 0);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100171mem_out:
Ian Campbell00f28e42011-01-11 11:50:28 +0000172 pci_release_region(pdev, 1);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100173pci_out:
174 pci_disable_device(pdev);
175 return ret;
176}
177
Greg Kroah-Hartman345a5252012-12-21 13:00:00 -0800178static struct pci_device_id platform_pci_tbl[] = {
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100179 {PCI_VENDOR_ID_XEN, PCI_DEVICE_ID_XEN_PLATFORM,
180 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
181 {0,}
182};
183
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100184static struct pci_driver platform_driver = {
185 .name = DRV_NAME,
Paul Gortmakere01dc532016-02-21 19:06:08 -0500186 .probe = platform_pci_probe,
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100187 .id_table = platform_pci_tbl,
Stefano Stabellinida72ff52017-01-13 10:07:23 -0800188#ifdef CONFIG_PM
189 .resume_early = platform_pci_resume,
190#endif
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100191};
192
Geliang Tang1ea55e82016-11-14 20:52:26 +0800193builtin_pci_driver(platform_driver);