pciback_ops.c 10.5 KB
Newer Older
1 2 3 4 5
/*
 * PCI Backend Operations - respond to PCI requests from Frontend
 *
 *   Author: Ryan Wilson <hap9@epoch.ncsc.mil>
 */
J
Joe Perches 已提交
6 7 8

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

9 10 11 12 13 14 15 16 17 18
#include <linux/module.h>
#include <linux/wait.h>
#include <linux/bitops.h>
#include <xen/events.h>
#include <linux/sched.h>
#include "pciback.h"

int verbose_request;
module_param(verbose_request, int, 0644);

19 20
static irqreturn_t xen_pcibk_guest_interrupt(int irq, void *dev_id);

21
/* Ensure a device is has the fake IRQ handler "turned on/off" and is
22
 * ready to be exported. This MUST be run after xen_pcibk_reset_device
23 24
 * which does the actual PCI device enable/disable.
 */
25
static void xen_pcibk_control_isr(struct pci_dev *dev, int reset)
26
{
27
	struct xen_pcibk_dev_data *dev_data;
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
	int rc;
	int enable = 0;

	dev_data = pci_get_drvdata(dev);
	if (!dev_data)
		return;

	/* We don't deal with bridges */
	if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL)
		return;

	if (reset) {
		dev_data->enable_intx = 0;
		dev_data->ack_intr = 0;
	}
	enable =  dev_data->enable_intx;

	/* Asked to disable, but ISR isn't runnig */
	if (!enable && !dev_data->isr_on)
		return;

	/* Squirrel away the IRQs in the dev_data. We need this
	 * b/c when device transitions to MSI, the dev->irq is
	 * overwritten with the MSI vector.
	 */
	if (enable)
		dev_data->irq = dev->irq;

56 57 58 59 60 61 62
	/*
	 * SR-IOV devices in all use MSI-X and have no legacy
	 * interrupts, so inhibit creating a fake IRQ handler for them.
	 */
	if (dev_data->irq == 0)
		goto out;

63 64 65 66 67 68 69 70 71 72 73
	dev_dbg(&dev->dev, "%s: #%d %s %s%s %s-> %s\n",
		dev_data->irq_name,
		dev_data->irq,
		pci_is_enabled(dev) ? "on" : "off",
		dev->msi_enabled ? "MSI" : "",
		dev->msix_enabled ? "MSI/X" : "",
		dev_data->isr_on ? "enable" : "disable",
		enable ? "enable" : "disable");

	if (enable) {
		rc = request_irq(dev_data->irq,
74
				xen_pcibk_guest_interrupt, IRQF_SHARED,
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
				dev_data->irq_name, dev);
		if (rc) {
			dev_err(&dev->dev, "%s: failed to install fake IRQ " \
				"handler for IRQ %d! (rc:%d)\n",
				dev_data->irq_name, dev_data->irq, rc);
			goto out;
		}
	} else {
		free_irq(dev_data->irq, dev);
		dev_data->irq = 0;
	}
	dev_data->isr_on = enable;
	dev_data->ack_intr = enable;
out:
	dev_dbg(&dev->dev, "%s: #%d %s %s%s %s\n",
		dev_data->irq_name,
		dev_data->irq,
		pci_is_enabled(dev) ? "on" : "off",
		dev->msi_enabled ? "MSI" : "",
		dev->msix_enabled ? "MSI/X" : "",
		enable ? (dev_data->isr_on ? "enabled" : "failed to enable") :
			(dev_data->isr_on ? "failed to disable" : "disabled"));
}

99
/* Ensure a device is "turned off" and ready to be exported.
100
 * (Also see xen_pcibk_config_reset to ensure virtual configuration space is
101 102
 * ready to be re-exported)
 */
103
void xen_pcibk_reset_device(struct pci_dev *dev)
104 105 106
{
	u16 cmd;

107
	xen_pcibk_control_isr(dev, 1 /* reset device */);
108

109 110
	/* Disable devices (but not bridges) */
	if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) {
111 112 113 114 115 116 117 118
#ifdef CONFIG_PCI_MSI
		/* The guest could have been abruptly killed without
		 * disabling MSI/MSI-X interrupts.*/
		if (dev->msix_enabled)
			pci_disable_msix(dev);
		if (dev->msi_enabled)
			pci_disable_msi(dev);
#endif
119 120
		if (pci_is_enabled(dev))
			pci_disable_device(dev);
121 122 123 124 125 126 127 128 129 130 131 132 133 134

		pci_write_config_word(dev, PCI_COMMAND, 0);

		dev->is_busmaster = 0;
	} else {
		pci_read_config_word(dev, PCI_COMMAND, &cmd);
		if (cmd & (PCI_COMMAND_INVALIDATE)) {
			cmd &= ~(PCI_COMMAND_INVALIDATE);
			pci_write_config_word(dev, PCI_COMMAND, cmd);

			dev->is_busmaster = 0;
		}
	}
}
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149

#ifdef CONFIG_PCI_MSI
static
int xen_pcibk_enable_msi(struct xen_pcibk_device *pdev,
			 struct pci_dev *dev, struct xen_pci_op *op)
{
	struct xen_pcibk_dev_data *dev_data;
	int status;

	if (unlikely(verbose_request))
		printk(KERN_DEBUG DRV_NAME ": %s: enable MSI\n", pci_name(dev));

	status = pci_enable_msi(dev);

	if (status) {
J
Joe Perches 已提交
150
		pr_warn_ratelimited("%s: error enabling MSI for guest %u: err %d\n",
151 152
				    pci_name(dev), pdev->xdev->otherend_id,
				    status);
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
		op->value = 0;
		return XEN_PCI_ERR_op_failed;
	}

	/* The value the guest needs is actually the IDT vector, not the
	 * the local domain's IRQ number. */

	op->value = dev->irq ? xen_pirq_from_irq(dev->irq) : 0;
	if (unlikely(verbose_request))
		printk(KERN_DEBUG DRV_NAME ": %s: MSI: %d\n", pci_name(dev),
			op->value);

	dev_data = pci_get_drvdata(dev);
	if (dev_data)
		dev_data->ack_intr = 0;

	return 0;
}

static
int xen_pcibk_disable_msi(struct xen_pcibk_device *pdev,
			  struct pci_dev *dev, struct xen_pci_op *op)
{
	struct xen_pcibk_dev_data *dev_data;

	if (unlikely(verbose_request))
		printk(KERN_DEBUG DRV_NAME ": %s: disable MSI\n",
		       pci_name(dev));
	pci_disable_msi(dev);

	op->value = dev->irq ? xen_pirq_from_irq(dev->irq) : 0;
	if (unlikely(verbose_request))
		printk(KERN_DEBUG DRV_NAME ": %s: MSI: %d\n", pci_name(dev),
			op->value);
	dev_data = pci_get_drvdata(dev);
	if (dev_data)
		dev_data->ack_intr = 1;
	return 0;
}

static
int xen_pcibk_enable_msix(struct xen_pcibk_device *pdev,
			  struct pci_dev *dev, struct xen_pci_op *op)
{
	struct xen_pcibk_dev_data *dev_data;
	int i, result;
	struct msix_entry *entries;

	if (unlikely(verbose_request))
		printk(KERN_DEBUG DRV_NAME ": %s: enable MSI-X\n",
		       pci_name(dev));
	if (op->value > SH_INFO_MAX_VEC)
		return -EINVAL;

	entries = kmalloc(op->value * sizeof(*entries), GFP_KERNEL);
	if (entries == NULL)
		return -ENOMEM;

	for (i = 0; i < op->value; i++) {
		entries[i].entry = op->msix_entries[i].entry;
		entries[i].vector = op->msix_entries[i].vector;
	}

216
	result = pci_enable_msix_exact(dev, entries, op->value);
217 218 219
	if (result == 0) {
		for (i = 0; i < op->value; i++) {
			op->msix_entries[i].entry = entries[i].entry;
220
			if (entries[i].vector) {
221 222 223 224 225 226 227
				op->msix_entries[i].vector =
					xen_pirq_from_irq(entries[i].vector);
				if (unlikely(verbose_request))
					printk(KERN_DEBUG DRV_NAME ": %s: " \
						"MSI-X[%d]: %d\n",
						pci_name(dev), i,
						op->msix_entries[i].vector);
228
			}
229
		}
230
	} else
J
Joe Perches 已提交
231
		pr_warn_ratelimited("%s: error enabling MSI-X for guest %u: err %d!\n",
232 233
				    pci_name(dev), pdev->xdev->otherend_id,
				    result);
234 235 236 237 238 239 240
	kfree(entries);

	op->value = result;
	dev_data = pci_get_drvdata(dev);
	if (dev_data)
		dev_data->ack_intr = 0;

241
	return result > 0 ? 0 : result;
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
}

static
int xen_pcibk_disable_msix(struct xen_pcibk_device *pdev,
			   struct pci_dev *dev, struct xen_pci_op *op)
{
	struct xen_pcibk_dev_data *dev_data;
	if (unlikely(verbose_request))
		printk(KERN_DEBUG DRV_NAME ": %s: disable MSI-X\n",
			pci_name(dev));
	pci_disable_msix(dev);

	/*
	 * SR-IOV devices (which don't have any legacy IRQ) have
	 * an undefined IRQ value of zero.
	 */
	op->value = dev->irq ? xen_pirq_from_irq(dev->irq) : 0;
	if (unlikely(verbose_request))
		printk(KERN_DEBUG DRV_NAME ": %s: MSI-X: %d\n", pci_name(dev),
			op->value);
	dev_data = pci_get_drvdata(dev);
	if (dev_data)
		dev_data->ack_intr = 1;
	return 0;
}
#endif
268 269 270
/*
* Now the same evtchn is used for both pcifront conf_read_write request
* as well as pcie aer front end ack. We use a new work_queue to schedule
271
* xen_pcibk conf_read_write service for avoiding confict with aer_core
272 273
* do_recovery job which also use the system default work_queue
*/
274
void xen_pcibk_test_and_schedule_op(struct xen_pcibk_device *pdev)
275 276 277 278 279
{
	/* Check that frontend is requesting an operation and that we are not
	 * already processing a request */
	if (test_bit(_XEN_PCIF_active, (unsigned long *)&pdev->sh_info->flags)
	    && !test_and_set_bit(_PDEVF_op_active, &pdev->flags)) {
280
		queue_work(xen_pcibk_wq, &pdev->op_work);
281 282
	}
	/*_XEN_PCIB_active should have been cleared by pcifront. And also make
283
	sure xen_pcibk is waiting for ack by checking _PCIB_op_pending*/
284 285
	if (!test_bit(_XEN_PCIB_active, (unsigned long *)&pdev->sh_info->flags)
	    && test_bit(_PCIB_op_pending, &pdev->flags)) {
286
		wake_up(&xen_pcibk_aer_wait_queue);
287 288 289 290 291 292
	}
}

/* Performing the configuration space reads/writes must not be done in atomic
 * context because some of the pci_* functions can sleep (mostly due to ACPI
 * use of semaphores). This function is intended to be called from a work
293
 * queue in process context taking a struct xen_pcibk_device as a parameter */
294

295
void xen_pcibk_do_op(struct work_struct *data)
296
{
297 298
	struct xen_pcibk_device *pdev =
		container_of(data, struct xen_pcibk_device, op_work);
299
	struct pci_dev *dev;
300
	struct xen_pcibk_dev_data *dev_data = NULL;
301
	struct xen_pci_op *op = &pdev->sh_info->op;
302
	int test_intx = 0;
303

304
	dev = xen_pcibk_get_pci_dev(pdev, op->domain, op->bus, op->devfn);
305 306 307 308

	if (dev == NULL)
		op->err = XEN_PCI_ERR_dev_not_found;
	else {
309 310 311
		dev_data = pci_get_drvdata(dev);
		if (dev_data)
			test_intx = dev_data->enable_intx;
312 313
		switch (op->cmd) {
		case XEN_PCI_OP_conf_read:
314
			op->err = xen_pcibk_config_read(dev,
315 316 317
				  op->offset, op->size, &op->value);
			break;
		case XEN_PCI_OP_conf_write:
318
			op->err = xen_pcibk_config_write(dev,
319 320 321 322
				  op->offset, op->size,	op->value);
			break;
#ifdef CONFIG_PCI_MSI
		case XEN_PCI_OP_enable_msi:
323
			op->err = xen_pcibk_enable_msi(pdev, dev, op);
324 325
			break;
		case XEN_PCI_OP_disable_msi:
326
			op->err = xen_pcibk_disable_msi(pdev, dev, op);
327 328
			break;
		case XEN_PCI_OP_enable_msix:
329
			op->err = xen_pcibk_enable_msix(pdev, dev, op);
330 331
			break;
		case XEN_PCI_OP_disable_msix:
332
			op->err = xen_pcibk_disable_msix(pdev, dev, op);
333 334 335 336 337 338 339
			break;
#endif
		default:
			op->err = XEN_PCI_ERR_not_implemented;
			break;
		}
	}
340 341 342
	if (!op->err && dev && dev_data) {
		/* Transition detected */
		if ((dev_data->enable_intx != test_intx))
343
			xen_pcibk_control_isr(dev, 0 /* no reset */);
344
	}
345 346 347 348 349 350
	/* Tell the driver domain that we're done. */
	wmb();
	clear_bit(_XEN_PCIF_active, (unsigned long *)&pdev->sh_info->flags);
	notify_remote_via_irq(pdev->evtchn_irq);

	/* Mark that we're done. */
351
	smp_mb__before_atomic(); /* /after/ clearing PCIF_active */
352
	clear_bit(_PDEVF_op_active, &pdev->flags);
353
	smp_mb__after_atomic(); /* /before/ final check for work */
354 355 356 357

	/* Check to see if the driver domain tried to start another request in
	 * between clearing _XEN_PCIF_active and clearing _PDEVF_op_active.
	*/
358
	xen_pcibk_test_and_schedule_op(pdev);
359 360
}

361
irqreturn_t xen_pcibk_handle_event(int irq, void *dev_id)
362
{
363
	struct xen_pcibk_device *pdev = dev_id;
364

365
	xen_pcibk_test_and_schedule_op(pdev);
366 367 368

	return IRQ_HANDLED;
}
369
static irqreturn_t xen_pcibk_guest_interrupt(int irq, void *dev_id)
370 371
{
	struct pci_dev *dev = (struct pci_dev *)dev_id;
372
	struct xen_pcibk_dev_data *dev_data = pci_get_drvdata(dev);
373 374 375 376 377

	if (dev_data->isr_on && dev_data->ack_intr) {
		dev_data->handled++;
		if ((dev_data->handled % 1000) == 0) {
			if (xen_test_irq_shared(irq)) {
J
Joe Perches 已提交
378
				pr_info("%s IRQ line is not shared "
379 380 381 382 383 384 385 386 387
					"with other domains. Turning ISR off\n",
					 dev_data->irq_name);
				dev_data->ack_intr = 0;
			}
		}
		return IRQ_HANDLED;
	}
	return IRQ_NONE;
}