msi.c 19.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8
/*
 * File:	msi.c
 * Purpose:	PCI Message Signaled Interrupt (MSI)
 *
 * Copyright (C) 2003-2004 Intel
 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
 */

9
#include <linux/err.h>
L
Linus Torvalds 已提交
10 11 12 13 14 15 16
#include <linux/mm.h>
#include <linux/irq.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/pci.h>
#include <linux/proc_fs.h>
17
#include <linux/msi.h>
D
Dan Williams 已提交
18
#include <linux/smp.h>
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27

#include <asm/errno.h>
#include <asm/io.h>

#include "pci.h"
#include "msi.h"

static int pci_msi_enable = 1;

28 29
/* Arch hooks */

30 31
#ifndef arch_msi_check_device
int arch_msi_check_device(struct pci_dev *dev, int nvec, int type)
32 33 34
{
	return 0;
}
35
#endif
36

37 38
#ifndef arch_setup_msi_irqs
int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
39 40 41 42 43 44
{
	struct msi_desc *entry;
	int ret;

	list_for_each_entry(entry, &dev->msi_list, list) {
		ret = arch_setup_msi_irq(dev, entry);
45
		if (ret < 0)
46
			return ret;
47 48
		if (ret > 0)
			return -ENOSPC;
49 50 51 52
	}

	return 0;
}
53
#endif
54

55 56
#ifndef arch_teardown_msi_irqs
void arch_teardown_msi_irqs(struct pci_dev *dev)
57 58 59 60 61 62 63 64
{
	struct msi_desc *entry;

	list_for_each_entry(entry, &dev->msi_list, list) {
		if (entry->irq != 0)
			arch_teardown_msi_irq(entry->irq);
	}
}
65
#endif
66

67
static void __msi_set_enable(struct pci_dev *dev, int pos, int enable)
68 69 70 71 72 73 74 75 76 77 78 79
{
	u16 control;

	if (pos) {
		pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
		control &= ~PCI_MSI_FLAGS_ENABLE;
		if (enable)
			control |= PCI_MSI_FLAGS_ENABLE;
		pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
	}
}

80 81 82 83 84
static void msi_set_enable(struct pci_dev *dev, int enable)
{
	__msi_set_enable(dev, pci_find_capability(dev, PCI_CAP_ID_MSI), enable);
}

85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
static void msix_set_enable(struct pci_dev *dev, int enable)
{
	int pos;
	u16 control;

	pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
	if (pos) {
		pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
		control &= ~PCI_MSIX_FLAGS_ENABLE;
		if (enable)
			control |= PCI_MSIX_FLAGS_ENABLE;
		pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
	}
}

100 101
static inline __attribute_const__ u32 msi_mask(unsigned x)
{
102 103 104 105
	/* Don't shift by >= width of type */
	if (x >= 5)
		return 0xffffffff;
	return (1 << (1 << x)) - 1;
106 107
}

108
static inline __attribute_const__ u32 msi_capable_mask(u16 control)
M
Mitch Williams 已提交
109
{
110 111
	return msi_mask((control >> 1) & 7);
}
M
Mitch Williams 已提交
112

113 114 115
static inline __attribute_const__ u32 msi_enabled_mask(u16 control)
{
	return msi_mask((control >> 4) & 7);
M
Mitch Williams 已提交
116 117
}

118 119 120 121 122 123 124 125 126
/*
 * PCI 2.3 does not specify mask bits for each MSI interrupt.  Attempting to
 * mask all MSI interrupts by clearing the MSI enable bit does not work
 * reliably as devices without an INTx disable bit will then generate a
 * level IRQ which will never be cleared.
 *
 * Returns 1 if it succeeded in masking the interrupt and 0 if the device
 * doesn't support MSI masking.
 */
127
static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
L
Linus Torvalds 已提交
128
{
129
	u32 mask_bits = desc->masked;
L
Linus Torvalds 已提交
130

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
	if (!desc->msi_attrib.maskbit)
		return;

	mask_bits &= ~mask;
	mask_bits |= flag;
	pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
	desc->masked = mask_bits;
}

/*
 * This internal function does not flush PCI writes to the device.
 * All users must ensure that they read from the device before either
 * assuming that the device state is up to date, or returning out of this
 * file.  This saves a few milliseconds when initialising devices with lots
 * of MSI-X interrupts.
 */
static void msix_mask_irq(struct msi_desc *desc, u32 flag)
{
	u32 mask_bits = desc->masked;
	unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
					PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
	mask_bits &= ~1;
	mask_bits |= flag;
	writel(mask_bits, desc->mask_base + offset);
	desc->masked = mask_bits;
}
157

158 159 160
static void msi_set_mask_bit(unsigned irq, u32 flag)
{
	struct msi_desc *desc = get_irq_msi(irq);
161

162 163 164 165 166
	if (desc->msi_attrib.is_msix) {
		msix_mask_irq(desc, flag);
		readl(desc->mask_base);		/* Flush write to device */
	} else {
		msi_mask_irq(desc, 1, flag);
L
Linus Torvalds 已提交
167
	}
168 169 170 171 172 173 174 175 176 177
}

void mask_msi_irq(unsigned int irq)
{
	msi_set_mask_bit(irq, 1);
}

void unmask_msi_irq(unsigned int irq)
{
	msi_set_mask_bit(irq, 0);
L
Linus Torvalds 已提交
178 179
}

Y
Yinghai Lu 已提交
180
void read_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg)
L
Linus Torvalds 已提交
181
{
Y
Yinghai Lu 已提交
182
	struct msi_desc *entry = get_irq_desc_msi(desc);
183 184 185 186 187 188 189 190
	if (entry->msi_attrib.is_msix) {
		void __iomem *base = entry->mask_base +
			entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;

		msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
		msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
		msg->data = readl(base + PCI_MSIX_ENTRY_DATA_OFFSET);
	} else {
191 192 193 194 195 196 197 198 199 200 201 202
		struct pci_dev *dev = entry->dev;
		int pos = entry->msi_attrib.pos;
		u16 data;

		pci_read_config_dword(dev, msi_lower_address_reg(pos),
					&msg->address_lo);
		if (entry->msi_attrib.is_64) {
			pci_read_config_dword(dev, msi_upper_address_reg(pos),
						&msg->address_hi);
			pci_read_config_word(dev, msi_data_reg(pos, 1), &data);
		} else {
			msg->address_hi = 0;
203
			pci_read_config_word(dev, msi_data_reg(pos, 0), &data);
204 205 206 207
		}
		msg->data = data;
	}
}
L
Linus Torvalds 已提交
208

Y
Yinghai Lu 已提交
209
void read_msi_msg(unsigned int irq, struct msi_msg *msg)
210
{
Y
Yinghai Lu 已提交
211 212 213 214 215 216 217 218
	struct irq_desc *desc = irq_to_desc(irq);

	read_msi_msg_desc(desc, msg);
}

void write_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg)
{
	struct msi_desc *entry = get_irq_desc_msi(desc);
219 220 221 222 223 224 225 226 227 228 229
	if (entry->msi_attrib.is_msix) {
		void __iomem *base;
		base = entry->mask_base +
			entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;

		writel(msg->address_lo,
			base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
		writel(msg->address_hi,
			base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
		writel(msg->data, base + PCI_MSIX_ENTRY_DATA_OFFSET);
	} else {
230 231 232 233 234 235 236 237 238 239 240 241 242 243
		struct pci_dev *dev = entry->dev;
		int pos = entry->msi_attrib.pos;

		pci_write_config_dword(dev, msi_lower_address_reg(pos),
					msg->address_lo);
		if (entry->msi_attrib.is_64) {
			pci_write_config_dword(dev, msi_upper_address_reg(pos),
						msg->address_hi);
			pci_write_config_word(dev, msi_data_reg(pos, 1),
						msg->data);
		} else {
			pci_write_config_word(dev, msi_data_reg(pos, 0),
						msg->data);
		}
L
Linus Torvalds 已提交
244
	}
245
	entry->msg = *msg;
L
Linus Torvalds 已提交
246
}
247

Y
Yinghai Lu 已提交
248 249 250 251 252 253 254
void write_msi_msg(unsigned int irq, struct msi_msg *msg)
{
	struct irq_desc *desc = irq_to_desc(irq);

	write_msi_msg_desc(desc, msg);
}

255
static int msi_free_irqs(struct pci_dev* dev);
S
Satoru Takeuchi 已提交
256

257
static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
L
Linus Torvalds 已提交
258
{
259 260
	struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
	if (!desc)
L
Linus Torvalds 已提交
261 262
		return NULL;

263 264
	INIT_LIST_HEAD(&desc->list);
	desc->dev = dev;
L
Linus Torvalds 已提交
265

266
	return desc;
L
Linus Torvalds 已提交
267 268
}

269 270 271 272 273 274
static void pci_intx_for_msi(struct pci_dev *dev, int enable)
{
	if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
		pci_intx(dev, enable);
}

275
static void __pci_restore_msi_state(struct pci_dev *dev)
276
{
277
	int pos;
278
	u16 control;
279
	struct msi_desc *entry;
280

281 282 283
	if (!dev->msi_enabled)
		return;

284 285
	entry = get_irq_msi(dev->irq);
	pos = entry->msi_attrib.pos;
286

287
	pci_intx_for_msi(dev, 0);
288
	msi_set_enable(dev, 0);
289 290 291
	write_msi_msg(dev->irq, &entry->msg);

	pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
292
	msi_mask_irq(entry, msi_capable_mask(control), entry->masked);
293 294
	control &= ~PCI_MSI_FLAGS_QSIZE;
	control |= PCI_MSI_FLAGS_ENABLE;
295
	pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
296 297 298
}

static void __pci_restore_msix_state(struct pci_dev *dev)
299 300 301
{
	int pos;
	struct msi_desc *entry;
302
	u16 control;
303

E
Eric W. Biederman 已提交
304 305 306
	if (!dev->msix_enabled)
		return;

307
	/* route the table */
308
	pci_intx_for_msi(dev, 0);
309
	msix_set_enable(dev, 0);
310

311 312
	list_for_each_entry(entry, &dev->msi_list, list) {
		write_msi_msg(entry->irq, &entry->msg);
313
		msix_mask_irq(entry, entry->masked);
314 315
	}

316 317
	BUG_ON(list_empty(&dev->msi_list));
	entry = list_entry(dev->msi_list.next, struct msi_desc, list);
318
	pos = entry->msi_attrib.pos;
319 320 321 322
	pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
	control &= ~PCI_MSIX_FLAGS_MASKALL;
	control |= PCI_MSIX_FLAGS_ENABLE;
	pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
323
}
324 325 326 327 328 329

void pci_restore_msi_state(struct pci_dev *dev)
{
	__pci_restore_msi_state(dev);
	__pci_restore_msix_state(dev);
}
330
EXPORT_SYMBOL_GPL(pci_restore_msi_state);
331

L
Linus Torvalds 已提交
332 333 334 335
/**
 * msi_capability_init - configure device's MSI capability structure
 * @dev: pointer to the pci_dev data structure of MSI device function
 *
336
 * Setup the MSI capability structure of device function with a single
337
 * MSI irq, regardless of device function is capable of handling
L
Linus Torvalds 已提交
338
 * multiple messages. A return of zero indicates the successful setup
339
 * of an entry zero with the new MSI irq or non-zero for otherwise.
L
Linus Torvalds 已提交
340 341 342 343
 **/
static int msi_capability_init(struct pci_dev *dev)
{
	struct msi_desc *entry;
344
	int pos, ret;
L
Linus Torvalds 已提交
345
	u16 control;
346
	unsigned mask;
L
Linus Torvalds 已提交
347

348 349
	msi_set_enable(dev, 0);	/* Ensure msi is disabled as I set it up */

L
Linus Torvalds 已提交
350 351 352
   	pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
	pci_read_config_word(dev, msi_control_reg(pos), &control);
	/* MSI Entry Initialization */
353
	entry = alloc_msi_entry(dev);
354 355
	if (!entry)
		return -ENOMEM;
356

357
	entry->msi_attrib.is_msix = 0;
358
	entry->msi_attrib.is_64 = is_64bit_address(control);
L
Linus Torvalds 已提交
359 360
	entry->msi_attrib.entry_nr = 0;
	entry->msi_attrib.maskbit = is_mask_bit_support(control);
361
	entry->msi_attrib.default_irq = dev->irq;	/* Save IOAPIC IRQ */
362
	entry->msi_attrib.pos = pos;
363 364 365 366 367 368 369 370

	entry->mask_pos = msi_mask_bits_reg(pos, entry->msi_attrib.is_64);
	/* All MSIs are unmasked by default, Mask them all */
	if (entry->msi_attrib.maskbit)
		pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
	mask = msi_capable_mask(control);
	msi_mask_irq(entry, mask, mask);

371
	list_add_tail(&entry->list, &dev->msi_list);
372

L
Linus Torvalds 已提交
373
	/* Configure MSI capability structure */
374
	ret = arch_setup_msi_irqs(dev, 1, PCI_CAP_ID_MSI);
375
	if (ret) {
376
		msi_free_irqs(dev);
377
		return ret;
378
	}
379

L
Linus Torvalds 已提交
380
	/* Set MSI enabled bits	 */
381
	pci_intx_for_msi(dev, 0);
382 383
	msi_set_enable(dev, 1);
	dev->msi_enabled = 1;
L
Linus Torvalds 已提交
384

385
	dev->irq = entry->irq;
L
Linus Torvalds 已提交
386 387 388 389 390 391
	return 0;
}

/**
 * msix_capability_init - configure device's MSI-X capability
 * @dev: pointer to the pci_dev data structure of MSI-X device function
R
Randy Dunlap 已提交
392 393
 * @entries: pointer to an array of struct msix_entry entries
 * @nvec: number of @entries
L
Linus Torvalds 已提交
394
 *
395
 * Setup the MSI-X capability structure of device function with a
396 397
 * single MSI-X irq. A return of zero indicates the successful setup of
 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
L
Linus Torvalds 已提交
398 399 400 401
 **/
static int msix_capability_init(struct pci_dev *dev,
				struct msix_entry *entries, int nvec)
{
402
	struct msi_desc *entry;
403
	int pos, i, j, nr_entries, ret;
404 405
	unsigned long phys_addr;
	u32 table_offset;
L
Linus Torvalds 已提交
406 407 408 409
 	u16 control;
	u8 bir;
	void __iomem *base;

410 411
	msix_set_enable(dev, 0);/* Ensure msix is disabled as I set it up */

L
Linus Torvalds 已提交
412 413 414 415
   	pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
	/* Request & Map MSI-X table region */
 	pci_read_config_word(dev, msi_control_reg(pos), &control);
	nr_entries = multi_msix_capable(control);
416 417

 	pci_read_config_dword(dev, msix_table_offset_reg(pos), &table_offset);
L
Linus Torvalds 已提交
418
	bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
419 420
	table_offset &= ~PCI_MSIX_FLAGS_BIRMASK;
	phys_addr = pci_resource_start (dev, bir) + table_offset;
L
Linus Torvalds 已提交
421 422 423 424 425 426
	base = ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
	if (base == NULL)
		return -ENOMEM;

	/* MSI-X Table Initialization */
	for (i = 0; i < nvec; i++) {
427
		entry = alloc_msi_entry(dev);
428
		if (!entry)
L
Linus Torvalds 已提交
429 430 431
			break;

 		j = entries[i].entry;
432
		entry->msi_attrib.is_msix = 1;
433
		entry->msi_attrib.is_64 = 1;
L
Linus Torvalds 已提交
434
		entry->msi_attrib.entry_nr = j;
435
		entry->msi_attrib.default_irq = dev->irq;
436
		entry->msi_attrib.pos = pos;
L
Linus Torvalds 已提交
437
		entry->mask_base = base;
438 439 440
		entry->masked = readl(base + j * PCI_MSIX_ENTRY_SIZE +
					PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET);
		msix_mask_irq(entry, 1);
441

442
		list_add_tail(&entry->list, &dev->msi_list);
L
Linus Torvalds 已提交
443
	}
444 445

	ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
446 447 448
	if (ret < 0) {
		/* If we had some success report the number of irqs
		 * we succeeded in setting up. */
449 450 451 452 453
		int avail = 0;
		list_for_each_entry(entry, &dev->msi_list, list) {
			if (entry->irq != 0) {
				avail++;
			}
L
Linus Torvalds 已提交
454
		}
455

456 457 458
		if (avail != 0)
			ret = avail;
	}
459

460 461 462
	if (ret) {
		msi_free_irqs(dev);
		return ret;
L
Linus Torvalds 已提交
463
	}
464 465 466 467 468 469 470

	i = 0;
	list_for_each_entry(entry, &dev->msi_list, list) {
		entries[i].vector = entry->irq;
		set_irq_msi(entry->irq, entry);
		i++;
	}
L
Linus Torvalds 已提交
471
	/* Set MSI-X enabled bits */
472
	pci_intx_for_msi(dev, 0);
473 474
	msix_set_enable(dev, 1);
	dev->msix_enabled = 1;
L
Linus Torvalds 已提交
475 476 477 478

	return 0;
}

479
/**
480
 * pci_msi_check_device - check whether MSI may be enabled on a device
481
 * @dev: pointer to the pci_dev data structure of MSI device function
482
 * @nvec: how many MSIs have been requested ?
483
 * @type: are we checking for MSI or MSI-X ?
484
 *
485
 * Look at global flags, the device itself, and its parent busses
486 487
 * to determine if MSI/-X are supported for the device. If MSI/-X is
 * supported return 0, else return an error code.
488
 **/
489
static int pci_msi_check_device(struct pci_dev* dev, int nvec, int type)
490 491
{
	struct pci_bus *bus;
492
	int ret;
493

494
	/* MSI must be globally enabled and supported by the device */
495 496 497
	if (!pci_msi_enable || !dev || dev->no_msi)
		return -EINVAL;

498 499 500 501 502 503 504 505
	/*
	 * You can't ask to have 0 or less MSIs configured.
	 *  a) it's stupid ..
	 *  b) the list manipulation code assumes nvec >= 1.
	 */
	if (nvec < 1)
		return -ERANGE;

506 507 508 509 510 511
	/* Any bridge which does NOT route MSI transactions from it's
	 * secondary bus to it's primary bus must set NO_MSI flag on
	 * the secondary pci_bus.
	 * We expect only arch-specific PCI host bus controller driver
	 * or quirks for specific PCI bridges to be setting NO_MSI.
	 */
512 513 514 515
	for (bus = dev->bus; bus; bus = bus->parent)
		if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
			return -EINVAL;

516 517 518 519
	ret = arch_msi_check_device(dev, nvec, type);
	if (ret)
		return ret;

520 521 522
	if (!pci_find_capability(dev, type))
		return -EINVAL;

523 524 525
	return 0;
}

L
Linus Torvalds 已提交
526 527 528 529 530
/**
 * pci_enable_msi - configure device's MSI capability structure
 * @dev: pointer to the pci_dev data structure of MSI device function
 *
 * Setup the MSI capability structure of device function with
531
 * a single MSI irq upon its software driver call to request for
L
Linus Torvalds 已提交
532 533
 * MSI mode enabled on its hardware device function. A return of zero
 * indicates the successful setup of an entry zero with the new MSI
534
 * irq or non-zero for otherwise.
L
Linus Torvalds 已提交
535 536 537
 **/
int pci_enable_msi(struct pci_dev* dev)
{
538
	int status;
L
Linus Torvalds 已提交
539

540 541 542
	status = pci_msi_check_device(dev, 1, PCI_CAP_ID_MSI);
	if (status)
		return status;
L
Linus Torvalds 已提交
543

E
Eric W. Biederman 已提交
544
	WARN_ON(!!dev->msi_enabled);
L
Linus Torvalds 已提交
545

546
	/* Check whether driver already requested for MSI-X irqs */
547
	if (dev->msix_enabled) {
548 549
		dev_info(&dev->dev, "can't enable MSI "
			 "(MSI-X already enabled)\n");
550
		return -EINVAL;
L
Linus Torvalds 已提交
551 552 553 554
	}
	status = msi_capability_init(dev);
	return status;
}
555
EXPORT_SYMBOL(pci_enable_msi);
L
Linus Torvalds 已提交
556

557
void pci_msi_shutdown(struct pci_dev *dev)
L
Linus Torvalds 已提交
558
{
559 560 561
	struct msi_desc *desc;
	u32 mask;
	u16 ctrl;
L
Linus Torvalds 已提交
562

563
	if (!pci_msi_enable || !dev || !dev->msi_enabled)
E
Eric W. Biederman 已提交
564 565
		return;

566
	msi_set_enable(dev, 0);
567
	pci_intx_for_msi(dev, 1);
568
	dev->msi_enabled = 0;
569

570
	BUG_ON(list_empty(&dev->msi_list));
571 572 573 574
	desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
	pci_read_config_word(dev, desc->msi_attrib.pos + PCI_MSI_FLAGS, &ctrl);
	mask = msi_capable_mask(ctrl);
	msi_mask_irq(desc, mask, ~mask);
575 576

	/* Restore dev->irq to its default pin-assertion irq */
577
	dev->irq = desc->msi_attrib.default_irq;
578
}
579

580 581 582 583 584 585 586 587 588 589
void pci_disable_msi(struct pci_dev* dev)
{
	struct msi_desc *entry;

	if (!pci_msi_enable || !dev || !dev->msi_enabled)
		return;

	pci_msi_shutdown(dev);

	entry = list_entry(dev->msi_list.next, struct msi_desc, list);
590
	if (entry->msi_attrib.is_msix)
591 592 593
		return;

	msi_free_irqs(dev);
L
Linus Torvalds 已提交
594
}
595
EXPORT_SYMBOL(pci_disable_msi);
L
Linus Torvalds 已提交
596

597
static int msi_free_irqs(struct pci_dev* dev)
L
Linus Torvalds 已提交
598
{
599
	struct msi_desc *entry, *tmp;
M
Michael Ellerman 已提交
600

601 602 603 604
	list_for_each_entry(entry, &dev->msi_list, list) {
		if (entry->irq)
			BUG_ON(irq_has_action(entry->irq));
	}
L
Linus Torvalds 已提交
605

606
	arch_teardown_msi_irqs(dev);
L
Linus Torvalds 已提交
607

608
	list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
609
		if (entry->msi_attrib.is_msix) {
610 611 612
			writel(1, entry->mask_base + entry->msi_attrib.entry_nr
				  * PCI_MSIX_ENTRY_SIZE
				  + PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET);
613 614 615

			if (list_is_last(&entry->list, &dev->msi_list))
				iounmap(entry->mask_base);
616 617 618
		}
		list_del(&entry->list);
		kfree(entry);
L
Linus Torvalds 已提交
619 620 621 622 623
	}

	return 0;
}

624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
/**
 * pci_msix_table_size - return the number of device's MSI-X table entries
 * @dev: pointer to the pci_dev data structure of MSI-X device function
 */
int pci_msix_table_size(struct pci_dev *dev)
{
	int pos;
	u16 control;

	pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
	if (!pos)
		return 0;

	pci_read_config_word(dev, msi_control_reg(pos), &control);
	return multi_msix_capable(control);
}

L
Linus Torvalds 已提交
641 642 643
/**
 * pci_enable_msix - configure device's MSI-X capability structure
 * @dev: pointer to the pci_dev data structure of MSI-X device function
644
 * @entries: pointer to an array of MSI-X entries
645
 * @nvec: number of MSI-X irqs requested for allocation by device driver
L
Linus Torvalds 已提交
646 647
 *
 * Setup the MSI-X capability structure of device function with the number
648
 * of requested irqs upon its software driver call to request for
L
Linus Torvalds 已提交
649 650
 * MSI-X mode enabled on its hardware device function. A return of zero
 * indicates the successful configuration of MSI-X capability structure
651
 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
L
Linus Torvalds 已提交
652
 * Or a return of > 0 indicates that driver request is exceeding the number
653
 * of irqs available. Driver should use the returned value to re-send
L
Linus Torvalds 已提交
654 655 656 657
 * its request.
 **/
int pci_enable_msix(struct pci_dev* dev, struct msix_entry *entries, int nvec)
{
658
	int status, nr_entries;
E
Eric W. Biederman 已提交
659
	int i, j;
L
Linus Torvalds 已提交
660

661
	if (!entries)
L
Linus Torvalds 已提交
662 663
 		return -EINVAL;

664 665 666 667
	status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
	if (status)
		return status;

668
	nr_entries = pci_msix_table_size(dev);
L
Linus Torvalds 已提交
669 670 671 672 673 674 675 676 677 678 679 680
	if (nvec > nr_entries)
		return -EINVAL;

	/* Check for any invalid entries */
	for (i = 0; i < nvec; i++) {
		if (entries[i].entry >= nr_entries)
			return -EINVAL;		/* invalid entry */
		for (j = i + 1; j < nvec; j++) {
			if (entries[i].entry == entries[j].entry)
				return -EINVAL;	/* duplicate entry */
		}
	}
E
Eric W. Biederman 已提交
681
	WARN_ON(!!dev->msix_enabled);
682

683
	/* Check whether driver already requested for MSI irq */
684
   	if (dev->msi_enabled) {
685 686
		dev_info(&dev->dev, "can't enable MSI-X "
		       "(MSI IRQ already assigned)\n");
L
Linus Torvalds 已提交
687 688 689 690 691
		return -EINVAL;
	}
	status = msix_capability_init(dev, entries, nvec);
	return status;
}
692
EXPORT_SYMBOL(pci_enable_msix);
L
Linus Torvalds 已提交
693

694
static void msix_free_all_irqs(struct pci_dev *dev)
L
Linus Torvalds 已提交
695
{
696
	msi_free_irqs(dev);
697 698
}

699
void pci_msix_shutdown(struct pci_dev* dev)
700
{
701
	if (!pci_msi_enable || !dev || !dev->msix_enabled)
E
Eric W. Biederman 已提交
702 703
		return;

704
	msix_set_enable(dev, 0);
705
	pci_intx_for_msi(dev, 1);
706
	dev->msix_enabled = 0;
707 708 709 710 711 712 713
}
void pci_disable_msix(struct pci_dev* dev)
{
	if (!pci_msi_enable || !dev || !dev->msix_enabled)
		return;

	pci_msix_shutdown(dev);
714

715
	msix_free_all_irqs(dev);
L
Linus Torvalds 已提交
716
}
717
EXPORT_SYMBOL(pci_disable_msix);
L
Linus Torvalds 已提交
718 719

/**
720
 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
L
Linus Torvalds 已提交
721 722
 * @dev: pointer to the pci_dev data structure of MSI(X) device function
 *
723
 * Being called during hotplug remove, from which the device function
724
 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
L
Linus Torvalds 已提交
725 726 727 728 729 730 731 732
 * allocated for this device function, are reclaimed to unused state,
 * which may be used later on.
 **/
void msi_remove_pci_irq_vectors(struct pci_dev* dev)
{
	if (!pci_msi_enable || !dev)
 		return;

733 734
	if (dev->msi_enabled)
		msi_free_irqs(dev);
L
Linus Torvalds 已提交
735

736 737
	if (dev->msix_enabled)
		msix_free_all_irqs(dev);
L
Linus Torvalds 已提交
738 739
}

740 741 742 743
void pci_no_msi(void)
{
	pci_msi_enable = 0;
}
744

745 746 747 748 749 750 751
/**
 * pci_msi_enabled - is MSI enabled?
 *
 * Returns true if MSI has not been disabled by the command-line option
 * pci=nomsi.
 **/
int pci_msi_enabled(void)
752
{
753
	return pci_msi_enable;
754
}
755
EXPORT_SYMBOL(pci_msi_enabled);
756

757
void pci_msi_init_pci_dev(struct pci_dev *dev)
758
{
759
	INIT_LIST_HEAD(&dev->msi_list);
760
}