blob: 357243d76f108fe184d2079736726e89a0ad0846 [file] [log] [blame]
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001/*
2 * VFIO PCI I/O Port & MMIO access
3 *
4 * Copyright (C) 2012 Red Hat, Inc. All rights reserved.
5 * Author: Alex Williamson <alex.williamson@redhat.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Derived from original vfio:
12 * Copyright 2010 Cisco Systems, Inc. All rights reserved.
13 * Author: Tom Lyon, pugs@cisco.com
14 */
15
16#include <linux/fs.h>
17#include <linux/pci.h>
18#include <linux/uaccess.h>
19#include <linux/io.h>
Alex Williamson84237a82013-02-18 10:11:13 -070020#include <linux/vgaarb.h>
Alex Williamson89e1f7d2012-07-31 08:16:24 -060021
22#include "vfio_pci_private.h"
23
Alex Williamson89e1f7d2012-07-31 08:16:24 -060024/*
Alex Williamson906ee992013-02-14 14:02:12 -070025 * Read or write from an __iomem region (MMIO or I/O port) with an excluded
26 * range which is inaccessible. The excluded range drops writes and fills
27 * reads with -1. This is intended for handling MSI-X vector tables and
28 * leftover space for ROM BARs.
Alex Williamson89e1f7d2012-07-31 08:16:24 -060029 */
Alex Williamson906ee992013-02-14 14:02:12 -070030static ssize_t do_io_rw(void __iomem *io, char __user *buf,
31 loff_t off, size_t count, size_t x_start,
32 size_t x_end, bool iswrite)
Alex Williamson89e1f7d2012-07-31 08:16:24 -060033{
Alex Williamson906ee992013-02-14 14:02:12 -070034 ssize_t done = 0;
Alex Williamson89e1f7d2012-07-31 08:16:24 -060035
36 while (count) {
37 size_t fillable, filled;
38
Alex Williamson906ee992013-02-14 14:02:12 -070039 if (off < x_start)
40 fillable = min(count, (size_t)(x_start - off));
41 else if (off >= x_end)
42 fillable = count;
Alex Williamson89e1f7d2012-07-31 08:16:24 -060043 else
44 fillable = 0;
45
Alex Williamson906ee992013-02-14 14:02:12 -070046 if (fillable >= 4 && !(off % 4)) {
Alex Williamson89e1f7d2012-07-31 08:16:24 -060047 __le32 val;
48
49 if (iswrite) {
50 if (copy_from_user(&val, buf, 4))
Alex Williamson906ee992013-02-14 14:02:12 -070051 return -EFAULT;
Alex Williamson89e1f7d2012-07-31 08:16:24 -060052
Alex Williamson906ee992013-02-14 14:02:12 -070053 iowrite32(le32_to_cpu(val), io + off);
Alex Williamson89e1f7d2012-07-31 08:16:24 -060054 } else {
Alex Williamson906ee992013-02-14 14:02:12 -070055 val = cpu_to_le32(ioread32(io + off));
Alex Williamson89e1f7d2012-07-31 08:16:24 -060056
57 if (copy_to_user(buf, &val, 4))
Alex Williamson906ee992013-02-14 14:02:12 -070058 return -EFAULT;
Alex Williamson89e1f7d2012-07-31 08:16:24 -060059 }
60
61 filled = 4;
Alex Williamson906ee992013-02-14 14:02:12 -070062 } else if (fillable >= 2 && !(off % 2)) {
Alex Williamson89e1f7d2012-07-31 08:16:24 -060063 __le16 val;
64
65 if (iswrite) {
66 if (copy_from_user(&val, buf, 2))
Alex Williamson906ee992013-02-14 14:02:12 -070067 return -EFAULT;
Alex Williamson89e1f7d2012-07-31 08:16:24 -060068
Alex Williamson906ee992013-02-14 14:02:12 -070069 iowrite16(le16_to_cpu(val), io + off);
Alex Williamson89e1f7d2012-07-31 08:16:24 -060070 } else {
Alex Williamson906ee992013-02-14 14:02:12 -070071 val = cpu_to_le16(ioread16(io + off));
Alex Williamson89e1f7d2012-07-31 08:16:24 -060072
73 if (copy_to_user(buf, &val, 2))
Alex Williamson906ee992013-02-14 14:02:12 -070074 return -EFAULT;
Alex Williamson89e1f7d2012-07-31 08:16:24 -060075 }
76
77 filled = 2;
78 } else if (fillable) {
79 u8 val;
80
81 if (iswrite) {
82 if (copy_from_user(&val, buf, 1))
Alex Williamson906ee992013-02-14 14:02:12 -070083 return -EFAULT;
Alex Williamson89e1f7d2012-07-31 08:16:24 -060084
Alex Williamson906ee992013-02-14 14:02:12 -070085 iowrite8(val, io + off);
Alex Williamson89e1f7d2012-07-31 08:16:24 -060086 } else {
Alex Williamson906ee992013-02-14 14:02:12 -070087 val = ioread8(io + off);
Alex Williamson89e1f7d2012-07-31 08:16:24 -060088
89 if (copy_to_user(buf, &val, 1))
Alex Williamson906ee992013-02-14 14:02:12 -070090 return -EFAULT;
Alex Williamson89e1f7d2012-07-31 08:16:24 -060091 }
92
93 filled = 1;
94 } else {
Alex Williamson906ee992013-02-14 14:02:12 -070095 /* Fill reads with -1, drop writes */
96 filled = min(count, (size_t)(x_end - off));
Alex Williamson89e1f7d2012-07-31 08:16:24 -060097 if (!iswrite) {
Alex Williamson906ee992013-02-14 14:02:12 -070098 u8 val = 0xFF;
Alex Williamson89e1f7d2012-07-31 08:16:24 -060099 size_t i;
100
Alex Williamson906ee992013-02-14 14:02:12 -0700101 for (i = 0; i < filled; i++)
102 if (copy_to_user(buf + i, &val, 1))
103 return -EFAULT;
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600104 }
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600105 }
106
107 count -= filled;
108 done += filled;
Alex Williamson906ee992013-02-14 14:02:12 -0700109 off += filled;
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600110 buf += filled;
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600111 }
112
Alex Williamson906ee992013-02-14 14:02:12 -0700113 return done;
114}
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600115
Alex Williamson906ee992013-02-14 14:02:12 -0700116ssize_t vfio_pci_bar_rw(struct vfio_pci_device *vdev, char __user *buf,
117 size_t count, loff_t *ppos, bool iswrite)
118{
119 struct pci_dev *pdev = vdev->pdev;
120 loff_t pos = *ppos & VFIO_PCI_OFFSET_MASK;
121 int bar = VFIO_PCI_OFFSET_TO_INDEX(*ppos);
122 size_t x_start = 0, x_end = 0;
123 resource_size_t end;
124 void __iomem *io;
125 ssize_t done;
126
Alex Williamsona13b6452016-02-22 16:02:46 -0700127 if (pci_resource_start(pdev, bar))
128 end = pci_resource_len(pdev, bar);
129 else if (bar == PCI_ROM_RESOURCE &&
130 pdev->resource[bar].flags & IORESOURCE_ROM_SHADOW)
131 end = 0x20000;
132 else
Alex Williamson906ee992013-02-14 14:02:12 -0700133 return -EINVAL;
134
Alex Williamson906ee992013-02-14 14:02:12 -0700135 if (pos >= end)
136 return -EINVAL;
137
138 count = min(count, (size_t)(end - pos));
139
140 if (bar == PCI_ROM_RESOURCE) {
141 /*
142 * The ROM can fill less space than the BAR, so we start the
143 * excluded range at the end of the actual ROM. This makes
144 * filling large ROM BARs much faster.
145 */
146 io = pci_map_rom(pdev, &x_start);
147 if (!io)
148 return -ENOMEM;
149 x_end = end;
150 } else if (!vdev->barmap[bar]) {
151 int ret;
152
153 ret = pci_request_selected_regions(pdev, 1 << bar, "vfio");
154 if (ret)
155 return ret;
156
157 io = pci_iomap(pdev, bar, 0);
158 if (!io) {
159 pci_release_selected_regions(pdev, 1 << bar);
160 return -ENOMEM;
161 }
162
163 vdev->barmap[bar] = io;
164 } else
165 io = vdev->barmap[bar];
166
167 if (bar == vdev->msix_bar) {
168 x_start = vdev->msix_offset;
169 x_end = vdev->msix_offset + vdev->msix_size;
170 }
171
172 done = do_io_rw(io, buf, pos, count, x_start, x_end, iswrite);
173
174 if (done >= 0)
175 *ppos += done;
176
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600177 if (bar == PCI_ROM_RESOURCE)
178 pci_unmap_rom(pdev, io);
179
Alex Williamson906ee992013-02-14 14:02:12 -0700180 return done;
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600181}
Alex Williamson84237a82013-02-18 10:11:13 -0700182
183ssize_t vfio_pci_vga_rw(struct vfio_pci_device *vdev, char __user *buf,
184 size_t count, loff_t *ppos, bool iswrite)
185{
186 int ret;
187 loff_t off, pos = *ppos & VFIO_PCI_OFFSET_MASK;
188 void __iomem *iomem = NULL;
189 unsigned int rsrc;
190 bool is_ioport;
191 ssize_t done;
192
193 if (!vdev->has_vga)
194 return -EINVAL;
195
Arnd Bergmannc7d0c0d2016-12-30 08:13:47 -0700196 if (pos > 0xbfffful)
197 return -EINVAL;
198
199 switch ((u32)pos) {
Alex Williamson84237a82013-02-18 10:11:13 -0700200 case 0xa0000 ... 0xbffff:
201 count = min(count, (size_t)(0xc0000 - pos));
202 iomem = ioremap_nocache(0xa0000, 0xbffff - 0xa0000 + 1);
203 off = pos - 0xa0000;
204 rsrc = VGA_RSRC_LEGACY_MEM;
205 is_ioport = false;
206 break;
207 case 0x3b0 ... 0x3bb:
208 count = min(count, (size_t)(0x3bc - pos));
209 iomem = ioport_map(0x3b0, 0x3bb - 0x3b0 + 1);
210 off = pos - 0x3b0;
211 rsrc = VGA_RSRC_LEGACY_IO;
212 is_ioport = true;
213 break;
214 case 0x3c0 ... 0x3df:
215 count = min(count, (size_t)(0x3e0 - pos));
216 iomem = ioport_map(0x3c0, 0x3df - 0x3c0 + 1);
217 off = pos - 0x3c0;
218 rsrc = VGA_RSRC_LEGACY_IO;
219 is_ioport = true;
220 break;
221 default:
222 return -EINVAL;
223 }
224
225 if (!iomem)
226 return -ENOMEM;
227
228 ret = vga_get_interruptible(vdev->pdev, rsrc);
229 if (ret) {
230 is_ioport ? ioport_unmap(iomem) : iounmap(iomem);
231 return ret;
232 }
233
234 done = do_io_rw(iomem, buf, off, count, 0, 0, iswrite);
235
236 vga_put(vdev->pdev, rsrc);
237
238 is_ioport ? ioport_unmap(iomem) : iounmap(iomem);
239
240 if (done >= 0)
241 *ppos += done;
242
243 return done;
244}