cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

msi.c (17327B)


      1// SPDX-License-Identifier: GPL-2.0-only
      2/*
      3 * Copyright 2006 Jake Moilanen <moilanen@austin.ibm.com>, IBM Corp.
      4 * Copyright 2006-2007 Michael Ellerman, IBM Corp.
      5 */
      6
      7#include <linux/crash_dump.h>
      8#include <linux/device.h>
      9#include <linux/irq.h>
     10#include <linux/irqdomain.h>
     11#include <linux/msi.h>
     12
     13#include <asm/rtas.h>
     14#include <asm/hw_irq.h>
     15#include <asm/ppc-pci.h>
     16#include <asm/machdep.h>
     17#include <asm/xive.h>
     18
     19#include "pseries.h"
     20
     21static int query_token, change_token;
     22
     23#define RTAS_QUERY_FN		0
     24#define RTAS_CHANGE_FN		1
     25#define RTAS_RESET_FN		2
     26#define RTAS_CHANGE_MSI_FN	3
     27#define RTAS_CHANGE_MSIX_FN	4
     28#define RTAS_CHANGE_32MSI_FN	5
     29
     30/* RTAS Helpers */
     31
     32static int rtas_change_msi(struct pci_dn *pdn, u32 func, u32 num_irqs)
     33{
     34	u32 addr, seq_num, rtas_ret[3];
     35	unsigned long buid;
     36	int rc;
     37
     38	addr = rtas_config_addr(pdn->busno, pdn->devfn, 0);
     39	buid = pdn->phb->buid;
     40
     41	seq_num = 1;
     42	do {
     43		if (func == RTAS_CHANGE_MSI_FN || func == RTAS_CHANGE_MSIX_FN ||
     44		    func == RTAS_CHANGE_32MSI_FN)
     45			rc = rtas_call(change_token, 6, 4, rtas_ret, addr,
     46					BUID_HI(buid), BUID_LO(buid),
     47					func, num_irqs, seq_num);
     48		else
     49			rc = rtas_call(change_token, 6, 3, rtas_ret, addr,
     50					BUID_HI(buid), BUID_LO(buid),
     51					func, num_irqs, seq_num);
     52
     53		seq_num = rtas_ret[1];
     54	} while (rtas_busy_delay(rc));
     55
     56	/*
     57	 * If the RTAS call succeeded, return the number of irqs allocated.
     58	 * If not, make sure we return a negative error code.
     59	 */
     60	if (rc == 0)
     61		rc = rtas_ret[0];
     62	else if (rc > 0)
     63		rc = -rc;
     64
     65	pr_debug("rtas_msi: ibm,change_msi(func=%d,num=%d), got %d rc = %d\n",
     66		 func, num_irqs, rtas_ret[0], rc);
     67
     68	return rc;
     69}
     70
     71static void rtas_disable_msi(struct pci_dev *pdev)
     72{
     73	struct pci_dn *pdn;
     74
     75	pdn = pci_get_pdn(pdev);
     76	if (!pdn)
     77		return;
     78
     79	/*
     80	 * disabling MSI with the explicit interface also disables MSI-X
     81	 */
     82	if (rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, 0) != 0) {
     83		/* 
     84		 * may have failed because explicit interface is not
     85		 * present
     86		 */
     87		if (rtas_change_msi(pdn, RTAS_CHANGE_FN, 0) != 0) {
     88			pr_debug("rtas_msi: Setting MSIs to 0 failed!\n");
     89		}
     90	}
     91}
     92
     93static int rtas_query_irq_number(struct pci_dn *pdn, int offset)
     94{
     95	u32 addr, rtas_ret[2];
     96	unsigned long buid;
     97	int rc;
     98
     99	addr = rtas_config_addr(pdn->busno, pdn->devfn, 0);
    100	buid = pdn->phb->buid;
    101
    102	do {
    103		rc = rtas_call(query_token, 4, 3, rtas_ret, addr,
    104			       BUID_HI(buid), BUID_LO(buid), offset);
    105	} while (rtas_busy_delay(rc));
    106
    107	if (rc) {
    108		pr_debug("rtas_msi: error (%d) querying source number\n", rc);
    109		return rc;
    110	}
    111
    112	return rtas_ret[0];
    113}
    114
    115static int check_req(struct pci_dev *pdev, int nvec, char *prop_name)
    116{
    117	struct device_node *dn;
    118	const __be32 *p;
    119	u32 req_msi;
    120
    121	dn = pci_device_to_OF_node(pdev);
    122
    123	p = of_get_property(dn, prop_name, NULL);
    124	if (!p) {
    125		pr_debug("rtas_msi: No %s on %pOF\n", prop_name, dn);
    126		return -ENOENT;
    127	}
    128
    129	req_msi = be32_to_cpup(p);
    130	if (req_msi < nvec) {
    131		pr_debug("rtas_msi: %s requests < %d MSIs\n", prop_name, nvec);
    132
    133		if (req_msi == 0) /* Be paranoid */
    134			return -ENOSPC;
    135
    136		return req_msi;
    137	}
    138
    139	return 0;
    140}
    141
    142static int check_req_msi(struct pci_dev *pdev, int nvec)
    143{
    144	return check_req(pdev, nvec, "ibm,req#msi");
    145}
    146
    147static int check_req_msix(struct pci_dev *pdev, int nvec)
    148{
    149	return check_req(pdev, nvec, "ibm,req#msi-x");
    150}
    151
    152/* Quota calculation */
    153
    154static struct device_node *__find_pe_total_msi(struct device_node *node, int *total)
    155{
    156	struct device_node *dn;
    157	const __be32 *p;
    158
    159	dn = of_node_get(node);
    160	while (dn) {
    161		p = of_get_property(dn, "ibm,pe-total-#msi", NULL);
    162		if (p) {
    163			pr_debug("rtas_msi: found prop on dn %pOF\n",
    164				dn);
    165			*total = be32_to_cpup(p);
    166			return dn;
    167		}
    168
    169		dn = of_get_next_parent(dn);
    170	}
    171
    172	return NULL;
    173}
    174
    175static struct device_node *find_pe_total_msi(struct pci_dev *dev, int *total)
    176{
    177	return __find_pe_total_msi(pci_device_to_OF_node(dev), total);
    178}
    179
    180static struct device_node *find_pe_dn(struct pci_dev *dev, int *total)
    181{
    182	struct device_node *dn;
    183	struct eeh_dev *edev;
    184
    185	/* Found our PE and assume 8 at that point. */
    186
    187	dn = pci_device_to_OF_node(dev);
    188	if (!dn)
    189		return NULL;
    190
    191	/* Get the top level device in the PE */
    192	edev = pdn_to_eeh_dev(PCI_DN(dn));
    193	if (edev->pe)
    194		edev = list_first_entry(&edev->pe->edevs, struct eeh_dev,
    195					entry);
    196	dn = pci_device_to_OF_node(edev->pdev);
    197	if (!dn)
    198		return NULL;
    199
    200	/* We actually want the parent */
    201	dn = of_get_parent(dn);
    202	if (!dn)
    203		return NULL;
    204
    205	/* Hardcode of 8 for old firmwares */
    206	*total = 8;
    207	pr_debug("rtas_msi: using PE dn %pOF\n", dn);
    208
    209	return dn;
    210}
    211
    212struct msi_counts {
    213	struct device_node *requestor;
    214	int num_devices;
    215	int request;
    216	int quota;
    217	int spare;
    218	int over_quota;
    219};
    220
    221static void *count_non_bridge_devices(struct device_node *dn, void *data)
    222{
    223	struct msi_counts *counts = data;
    224	const __be32 *p;
    225	u32 class;
    226
    227	pr_debug("rtas_msi: counting %pOF\n", dn);
    228
    229	p = of_get_property(dn, "class-code", NULL);
    230	class = p ? be32_to_cpup(p) : 0;
    231
    232	if ((class >> 8) != PCI_CLASS_BRIDGE_PCI)
    233		counts->num_devices++;
    234
    235	return NULL;
    236}
    237
    238static void *count_spare_msis(struct device_node *dn, void *data)
    239{
    240	struct msi_counts *counts = data;
    241	const __be32 *p;
    242	int req;
    243
    244	if (dn == counts->requestor)
    245		req = counts->request;
    246	else {
    247		/* We don't know if a driver will try to use MSI or MSI-X,
    248		 * so we just have to punt and use the larger of the two. */
    249		req = 0;
    250		p = of_get_property(dn, "ibm,req#msi", NULL);
    251		if (p)
    252			req = be32_to_cpup(p);
    253
    254		p = of_get_property(dn, "ibm,req#msi-x", NULL);
    255		if (p)
    256			req = max(req, (int)be32_to_cpup(p));
    257	}
    258
    259	if (req < counts->quota)
    260		counts->spare += counts->quota - req;
    261	else if (req > counts->quota)
    262		counts->over_quota++;
    263
    264	return NULL;
    265}
    266
    267static int msi_quota_for_device(struct pci_dev *dev, int request)
    268{
    269	struct device_node *pe_dn;
    270	struct msi_counts counts;
    271	int total;
    272
    273	pr_debug("rtas_msi: calc quota for %s, request %d\n", pci_name(dev),
    274		  request);
    275
    276	pe_dn = find_pe_total_msi(dev, &total);
    277	if (!pe_dn)
    278		pe_dn = find_pe_dn(dev, &total);
    279
    280	if (!pe_dn) {
    281		pr_err("rtas_msi: couldn't find PE for %s\n", pci_name(dev));
    282		goto out;
    283	}
    284
    285	pr_debug("rtas_msi: found PE %pOF\n", pe_dn);
    286
    287	memset(&counts, 0, sizeof(struct msi_counts));
    288
    289	/* Work out how many devices we have below this PE */
    290	pci_traverse_device_nodes(pe_dn, count_non_bridge_devices, &counts);
    291
    292	if (counts.num_devices == 0) {
    293		pr_err("rtas_msi: found 0 devices under PE for %s\n",
    294			pci_name(dev));
    295		goto out;
    296	}
    297
    298	counts.quota = total / counts.num_devices;
    299	if (request <= counts.quota)
    300		goto out;
    301
    302	/* else, we have some more calculating to do */
    303	counts.requestor = pci_device_to_OF_node(dev);
    304	counts.request = request;
    305	pci_traverse_device_nodes(pe_dn, count_spare_msis, &counts);
    306
    307	/* If the quota isn't an integer multiple of the total, we can
    308	 * use the remainder as spare MSIs for anyone that wants them. */
    309	counts.spare += total % counts.num_devices;
    310
    311	/* Divide any spare by the number of over-quota requestors */
    312	if (counts.over_quota)
    313		counts.quota += counts.spare / counts.over_quota;
    314
    315	/* And finally clamp the request to the possibly adjusted quota */
    316	request = min(counts.quota, request);
    317
    318	pr_debug("rtas_msi: request clamped to quota %d\n", request);
    319out:
    320	of_node_put(pe_dn);
    321
    322	return request;
    323}
    324
    325static void rtas_hack_32bit_msi_gen2(struct pci_dev *pdev)
    326{
    327	u32 addr_hi, addr_lo;
    328
    329	/*
    330	 * We should only get in here for IODA1 configs. This is based on the
    331	 * fact that we using RTAS for MSIs, we don't have the 32 bit MSI RTAS
    332	 * support, and we are in a PCIe Gen2 slot.
    333	 */
    334	dev_info(&pdev->dev,
    335		 "rtas_msi: No 32 bit MSI firmware support, forcing 32 bit MSI\n");
    336	pci_read_config_dword(pdev, pdev->msi_cap + PCI_MSI_ADDRESS_HI, &addr_hi);
    337	addr_lo = 0xffff0000 | ((addr_hi >> (48 - 32)) << 4);
    338	pci_write_config_dword(pdev, pdev->msi_cap + PCI_MSI_ADDRESS_LO, addr_lo);
    339	pci_write_config_dword(pdev, pdev->msi_cap + PCI_MSI_ADDRESS_HI, 0);
    340}
    341
    342static int rtas_prepare_msi_irqs(struct pci_dev *pdev, int nvec_in, int type,
    343				 msi_alloc_info_t *arg)
    344{
    345	struct pci_dn *pdn;
    346	int quota, rc;
    347	int nvec = nvec_in;
    348	int use_32bit_msi_hack = 0;
    349
    350	if (type == PCI_CAP_ID_MSIX)
    351		rc = check_req_msix(pdev, nvec);
    352	else
    353		rc = check_req_msi(pdev, nvec);
    354
    355	if (rc)
    356		return rc;
    357
    358	quota = msi_quota_for_device(pdev, nvec);
    359
    360	if (quota && quota < nvec)
    361		return quota;
    362
    363	/*
    364	 * Firmware currently refuse any non power of two allocation
    365	 * so we round up if the quota will allow it.
    366	 */
    367	if (type == PCI_CAP_ID_MSIX) {
    368		int m = roundup_pow_of_two(nvec);
    369		quota = msi_quota_for_device(pdev, m);
    370
    371		if (quota >= m)
    372			nvec = m;
    373	}
    374
    375	pdn = pci_get_pdn(pdev);
    376
    377	/*
    378	 * Try the new more explicit firmware interface, if that fails fall
    379	 * back to the old interface. The old interface is known to never
    380	 * return MSI-Xs.
    381	 */
    382again:
    383	if (type == PCI_CAP_ID_MSI) {
    384		if (pdev->no_64bit_msi) {
    385			rc = rtas_change_msi(pdn, RTAS_CHANGE_32MSI_FN, nvec);
    386			if (rc < 0) {
    387				/*
    388				 * We only want to run the 32 bit MSI hack below if
    389				 * the max bus speed is Gen2 speed
    390				 */
    391				if (pdev->bus->max_bus_speed != PCIE_SPEED_5_0GT)
    392					return rc;
    393
    394				use_32bit_msi_hack = 1;
    395			}
    396		} else
    397			rc = -1;
    398
    399		if (rc < 0)
    400			rc = rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, nvec);
    401
    402		if (rc < 0) {
    403			pr_debug("rtas_msi: trying the old firmware call.\n");
    404			rc = rtas_change_msi(pdn, RTAS_CHANGE_FN, nvec);
    405		}
    406
    407		if (use_32bit_msi_hack && rc > 0)
    408			rtas_hack_32bit_msi_gen2(pdev);
    409	} else
    410		rc = rtas_change_msi(pdn, RTAS_CHANGE_MSIX_FN, nvec);
    411
    412	if (rc != nvec) {
    413		if (nvec != nvec_in) {
    414			nvec = nvec_in;
    415			goto again;
    416		}
    417		pr_debug("rtas_msi: rtas_change_msi() failed\n");
    418		return rc;
    419	}
    420
    421	return 0;
    422}
    423
    424static int pseries_msi_ops_prepare(struct irq_domain *domain, struct device *dev,
    425				   int nvec, msi_alloc_info_t *arg)
    426{
    427	struct pci_dev *pdev = to_pci_dev(dev);
    428	int type = pdev->msix_enabled ? PCI_CAP_ID_MSIX : PCI_CAP_ID_MSI;
    429
    430	return rtas_prepare_msi_irqs(pdev, nvec, type, arg);
    431}
    432
    433/*
    434 * ->msi_free() is called before irq_domain_free_irqs_top() when the
    435 * handler data is still available. Use that to clear the XIVE
    436 * controller data.
    437 */
    438static void pseries_msi_ops_msi_free(struct irq_domain *domain,
    439				     struct msi_domain_info *info,
    440				     unsigned int irq)
    441{
    442	if (xive_enabled())
    443		xive_irq_free_data(irq);
    444}
    445
    446/*
    447 * RTAS can not disable one MSI at a time. It's all or nothing. Do it
    448 * at the end after all IRQs have been freed.
    449 */
    450static void pseries_msi_domain_free_irqs(struct irq_domain *domain,
    451					 struct device *dev)
    452{
    453	if (WARN_ON_ONCE(!dev_is_pci(dev)))
    454		return;
    455
    456	__msi_domain_free_irqs(domain, dev);
    457
    458	rtas_disable_msi(to_pci_dev(dev));
    459}
    460
    461static struct msi_domain_ops pseries_pci_msi_domain_ops = {
    462	.msi_prepare	= pseries_msi_ops_prepare,
    463	.msi_free	= pseries_msi_ops_msi_free,
    464	.domain_free_irqs = pseries_msi_domain_free_irqs,
    465};
    466
    467static void pseries_msi_shutdown(struct irq_data *d)
    468{
    469	d = d->parent_data;
    470	if (d->chip->irq_shutdown)
    471		d->chip->irq_shutdown(d);
    472}
    473
    474static void pseries_msi_mask(struct irq_data *d)
    475{
    476	pci_msi_mask_irq(d);
    477	irq_chip_mask_parent(d);
    478}
    479
    480static void pseries_msi_unmask(struct irq_data *d)
    481{
    482	pci_msi_unmask_irq(d);
    483	irq_chip_unmask_parent(d);
    484}
    485
    486static void pseries_msi_write_msg(struct irq_data *data, struct msi_msg *msg)
    487{
    488	struct msi_desc *entry = irq_data_get_msi_desc(data);
    489
    490	/*
    491	 * Do not update the MSIx vector table. It's not strictly necessary
    492	 * because the table is initialized by the underlying hypervisor, PowerVM
    493	 * or QEMU/KVM. However, if the MSIx vector entry is cleared, any further
    494	 * activation will fail. This can happen in some drivers (eg. IPR) which
    495	 * deactivate an IRQ used for testing MSI support.
    496	 */
    497	entry->msg = *msg;
    498}
    499
    500static struct irq_chip pseries_pci_msi_irq_chip = {
    501	.name		= "pSeries-PCI-MSI",
    502	.irq_shutdown	= pseries_msi_shutdown,
    503	.irq_mask	= pseries_msi_mask,
    504	.irq_unmask	= pseries_msi_unmask,
    505	.irq_eoi	= irq_chip_eoi_parent,
    506	.irq_write_msi_msg	= pseries_msi_write_msg,
    507};
    508
    509
    510/*
    511 * Set MSI_FLAG_MSIX_CONTIGUOUS as there is no way to express to
    512 * firmware to request a discontiguous or non-zero based range of
    513 * MSI-X entries. Core code will reject such setup attempts.
    514 */
    515static struct msi_domain_info pseries_msi_domain_info = {
    516	.flags = (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
    517		  MSI_FLAG_MULTI_PCI_MSI  | MSI_FLAG_PCI_MSIX |
    518		  MSI_FLAG_MSIX_CONTIGUOUS),
    519	.ops   = &pseries_pci_msi_domain_ops,
    520	.chip  = &pseries_pci_msi_irq_chip,
    521};
    522
    523static void pseries_msi_compose_msg(struct irq_data *data, struct msi_msg *msg)
    524{
    525	__pci_read_msi_msg(irq_data_get_msi_desc(data), msg);
    526}
    527
    528static struct irq_chip pseries_msi_irq_chip = {
    529	.name			= "pSeries-MSI",
    530	.irq_shutdown		= pseries_msi_shutdown,
    531	.irq_mask		= irq_chip_mask_parent,
    532	.irq_unmask		= irq_chip_unmask_parent,
    533	.irq_eoi		= irq_chip_eoi_parent,
    534	.irq_set_affinity	= irq_chip_set_affinity_parent,
    535	.irq_compose_msi_msg	= pseries_msi_compose_msg,
    536};
    537
    538static int pseries_irq_parent_domain_alloc(struct irq_domain *domain, unsigned int virq,
    539					   irq_hw_number_t hwirq)
    540{
    541	struct irq_fwspec parent_fwspec;
    542	int ret;
    543
    544	parent_fwspec.fwnode = domain->parent->fwnode;
    545	parent_fwspec.param_count = 2;
    546	parent_fwspec.param[0] = hwirq;
    547	parent_fwspec.param[1] = IRQ_TYPE_EDGE_RISING;
    548
    549	ret = irq_domain_alloc_irqs_parent(domain, virq, 1, &parent_fwspec);
    550	if (ret)
    551		return ret;
    552
    553	return 0;
    554}
    555
    556static int pseries_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
    557				    unsigned int nr_irqs, void *arg)
    558{
    559	struct pci_controller *phb = domain->host_data;
    560	msi_alloc_info_t *info = arg;
    561	struct msi_desc *desc = info->desc;
    562	struct pci_dev *pdev = msi_desc_to_pci_dev(desc);
    563	int hwirq;
    564	int i, ret;
    565
    566	hwirq = rtas_query_irq_number(pci_get_pdn(pdev), desc->msi_index);
    567	if (hwirq < 0) {
    568		dev_err(&pdev->dev, "Failed to query HW IRQ: %d\n", hwirq);
    569		return hwirq;
    570	}
    571
    572	dev_dbg(&pdev->dev, "%s bridge %pOF %d/%x #%d\n", __func__,
    573		phb->dn, virq, hwirq, nr_irqs);
    574
    575	for (i = 0; i < nr_irqs; i++) {
    576		ret = pseries_irq_parent_domain_alloc(domain, virq + i, hwirq + i);
    577		if (ret)
    578			goto out;
    579
    580		irq_domain_set_hwirq_and_chip(domain, virq + i, hwirq + i,
    581					      &pseries_msi_irq_chip, domain->host_data);
    582	}
    583
    584	return 0;
    585
    586out:
    587	/* TODO: handle RTAS cleanup in ->msi_finish() ? */
    588	irq_domain_free_irqs_parent(domain, virq, i - 1);
    589	return ret;
    590}
    591
    592static void pseries_irq_domain_free(struct irq_domain *domain, unsigned int virq,
    593				    unsigned int nr_irqs)
    594{
    595	struct irq_data *d = irq_domain_get_irq_data(domain, virq);
    596	struct pci_controller *phb = irq_data_get_irq_chip_data(d);
    597
    598	pr_debug("%s bridge %pOF %d #%d\n", __func__, phb->dn, virq, nr_irqs);
    599
    600	/* XIVE domain data is cleared through ->msi_free() */
    601}
    602
    603static const struct irq_domain_ops pseries_irq_domain_ops = {
    604	.alloc  = pseries_irq_domain_alloc,
    605	.free   = pseries_irq_domain_free,
    606};
    607
    608static int __pseries_msi_allocate_domains(struct pci_controller *phb,
    609					  unsigned int count)
    610{
    611	struct irq_domain *parent = irq_get_default_host();
    612
    613	phb->fwnode = irq_domain_alloc_named_id_fwnode("pSeries-MSI",
    614						       phb->global_number);
    615	if (!phb->fwnode)
    616		return -ENOMEM;
    617
    618	phb->dev_domain = irq_domain_create_hierarchy(parent, 0, count,
    619						      phb->fwnode,
    620						      &pseries_irq_domain_ops, phb);
    621	if (!phb->dev_domain) {
    622		pr_err("PCI: failed to create IRQ domain bridge %pOF (domain %d)\n",
    623		       phb->dn, phb->global_number);
    624		irq_domain_free_fwnode(phb->fwnode);
    625		return -ENOMEM;
    626	}
    627
    628	phb->msi_domain = pci_msi_create_irq_domain(of_node_to_fwnode(phb->dn),
    629						    &pseries_msi_domain_info,
    630						    phb->dev_domain);
    631	if (!phb->msi_domain) {
    632		pr_err("PCI: failed to create MSI IRQ domain bridge %pOF (domain %d)\n",
    633		       phb->dn, phb->global_number);
    634		irq_domain_free_fwnode(phb->fwnode);
    635		irq_domain_remove(phb->dev_domain);
    636		return -ENOMEM;
    637	}
    638
    639	return 0;
    640}
    641
    642int pseries_msi_allocate_domains(struct pci_controller *phb)
    643{
    644	int count;
    645
    646	if (!__find_pe_total_msi(phb->dn, &count)) {
    647		pr_err("PCI: failed to find MSIs for bridge %pOF (domain %d)\n",
    648		       phb->dn, phb->global_number);
    649		return -ENOSPC;
    650	}
    651
    652	return __pseries_msi_allocate_domains(phb, count);
    653}
    654
    655void pseries_msi_free_domains(struct pci_controller *phb)
    656{
    657	if (phb->msi_domain)
    658		irq_domain_remove(phb->msi_domain);
    659	if (phb->dev_domain)
    660		irq_domain_remove(phb->dev_domain);
    661	if (phb->fwnode)
    662		irq_domain_free_fwnode(phb->fwnode);
    663}
    664
    665static void rtas_msi_pci_irq_fixup(struct pci_dev *pdev)
    666{
    667	/* No LSI -> leave MSIs (if any) configured */
    668	if (!pdev->irq) {
    669		dev_dbg(&pdev->dev, "rtas_msi: no LSI, nothing to do.\n");
    670		return;
    671	}
    672
    673	/* No MSI -> MSIs can't have been assigned by fw, leave LSI */
    674	if (check_req_msi(pdev, 1) && check_req_msix(pdev, 1)) {
    675		dev_dbg(&pdev->dev, "rtas_msi: no req#msi/x, nothing to do.\n");
    676		return;
    677	}
    678
    679	dev_dbg(&pdev->dev, "rtas_msi: disabling existing MSI.\n");
    680	rtas_disable_msi(pdev);
    681}
    682
    683static int rtas_msi_init(void)
    684{
    685	query_token  = rtas_token("ibm,query-interrupt-source-number");
    686	change_token = rtas_token("ibm,change-msi");
    687
    688	if ((query_token == RTAS_UNKNOWN_SERVICE) ||
    689			(change_token == RTAS_UNKNOWN_SERVICE)) {
    690		pr_debug("rtas_msi: no RTAS tokens, no MSI support.\n");
    691		return -1;
    692	}
    693
    694	pr_debug("rtas_msi: Registering RTAS MSI callbacks.\n");
    695
    696	WARN_ON(ppc_md.pci_irq_fixup);
    697	ppc_md.pci_irq_fixup = rtas_msi_pci_irq_fixup;
    698
    699	return 0;
    700}
    701machine_arch_initcall(pseries, rtas_msi_init);