blob: b59c9455aae1d79753fd4bd9aca72cc1e6ae40a5 [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;
45
Rashika Kheria598ddb82014-02-09 16:29:30 +053046static unsigned long alloc_xen_mmio(unsigned long len)
Stefano Stabellini183d03c2010-05-17 17:08:21 +010047{
48 unsigned long addr;
49
50 addr = platform_mmio + platform_mmio_alloc;
51 platform_mmio_alloc += len;
52 BUG_ON(platform_mmio_alloc > platform_mmiolen);
53
54 return addr;
55}
56
Paul Gortmakere01dc532016-02-21 19:06:08 -050057static int platform_pci_probe(struct pci_dev *pdev,
58 const struct pci_device_id *ent)
Stefano Stabellini183d03c2010-05-17 17:08:21 +010059{
60 int i, ret;
Ian Campbell00f28e42011-01-11 11:50:28 +000061 long ioaddr;
Stefano Stabellini183d03c2010-05-17 17:08:21 +010062 long mmio_addr, mmio_len;
Stefano Stabellini183d03c2010-05-17 17:08:21 +010063 unsigned int max_nr_gframes;
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -050064 unsigned long grant_frames;
Stefano Stabellini183d03c2010-05-17 17:08:21 +010065
Olaf Hering38ad4f42012-07-10 15:31:39 +020066 if (!xen_domain())
67 return -ENODEV;
68
Stefano Stabellini183d03c2010-05-17 17:08:21 +010069 i = pci_enable_device(pdev);
70 if (i)
71 return i;
72
73 ioaddr = pci_resource_start(pdev, 0);
Stefano Stabellini183d03c2010-05-17 17:08:21 +010074
75 mmio_addr = pci_resource_start(pdev, 1);
76 mmio_len = pci_resource_len(pdev, 1);
77
78 if (mmio_addr == 0 || ioaddr == 0) {
79 dev_err(&pdev->dev, "no resources found\n");
80 ret = -ENOENT;
81 goto pci_out;
82 }
83
Ian Campbell00f28e42011-01-11 11:50:28 +000084 ret = pci_request_region(pdev, 1, DRV_NAME);
85 if (ret < 0)
Stefano Stabellini183d03c2010-05-17 17:08:21 +010086 goto pci_out;
Stefano Stabellini183d03c2010-05-17 17:08:21 +010087
Ian Campbell00f28e42011-01-11 11:50:28 +000088 ret = pci_request_region(pdev, 0, DRV_NAME);
89 if (ret < 0)
Stefano Stabellini183d03c2010-05-17 17:08:21 +010090 goto mem_out;
Stefano Stabellini183d03c2010-05-17 17:08:21 +010091
92 platform_mmio = mmio_addr;
93 platform_mmiolen = mmio_len;
94
Stefano Stabellini183d03c2010-05-17 17:08:21 +010095 max_nr_gframes = gnttab_max_grant_frames();
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -050096 grant_frames = alloc_xen_mmio(PAGE_SIZE * max_nr_gframes);
Wei Yongjun89b9e082014-01-07 21:11:05 +080097 ret = gnttab_setup_auto_xlat_frames(grant_frames);
98 if (ret)
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -050099 goto out;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100100 ret = gnttab_init();
101 if (ret)
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500102 goto grant_out;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100103 xenbus_probe(NULL);
104 return 0;
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500105grant_out:
106 gnttab_free_auto_xlat_frames();
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100107out:
Ian Campbell00f28e42011-01-11 11:50:28 +0000108 pci_release_region(pdev, 0);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100109mem_out:
Ian Campbell00f28e42011-01-11 11:50:28 +0000110 pci_release_region(pdev, 1);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100111pci_out:
112 pci_disable_device(pdev);
113 return ret;
114}
115
Greg Kroah-Hartman345a5252012-12-21 13:00:00 -0800116static struct pci_device_id platform_pci_tbl[] = {
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100117 {PCI_VENDOR_ID_XEN, PCI_DEVICE_ID_XEN_PLATFORM,
118 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
119 {0,}
120};
121
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100122static struct pci_driver platform_driver = {
123 .name = DRV_NAME,
Paul Gortmakere01dc532016-02-21 19:06:08 -0500124 .probe = platform_pci_probe,
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100125 .id_table = platform_pci_tbl,
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100126};
127
Paul Gortmakere01dc532016-02-21 19:06:08 -0500128static int __init platform_pci_init(void)
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100129{
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100130 return pci_register_driver(&platform_driver);
131}
Paul Gortmakere01dc532016-02-21 19:06:08 -0500132device_initcall(platform_pci_init);