blob: 326ef0dd603812561e08a2d3139d19de31fa0490 [file] [log] [blame]
Michael Ellerman85f2bf92007-05-08 12:58:35 +10001/*
2 * Copyright 2006 Jake Moilanen <moilanen@austin.ibm.com>, IBM Corp.
3 * Copyright 2006-2007 Michael Ellerman, IBM Corp.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; version 2 of the
8 * License.
9 *
10 */
11
12#include <linux/device.h>
13#include <linux/irq.h>
14#include <linux/msi.h>
15
16#include <asm/rtas.h>
17#include <asm/hw_irq.h>
18#include <asm/ppc-pci.h>
Michael Ellerman8e83e902014-07-16 12:02:43 +100019#include <asm/machdep.h>
Michael Ellerman85f2bf92007-05-08 12:58:35 +100020
Daniel Axtens1d14b872015-04-14 14:27:57 +100021#include "pseries.h"
22
Michael Ellerman85f2bf92007-05-08 12:58:35 +100023static int query_token, change_token;
24
25#define RTAS_QUERY_FN 0
26#define RTAS_CHANGE_FN 1
27#define RTAS_RESET_FN 2
28#define RTAS_CHANGE_MSI_FN 3
29#define RTAS_CHANGE_MSIX_FN 4
Brian Kinge61133d2013-05-03 11:30:59 +000030#define RTAS_CHANGE_32MSI_FN 5
Michael Ellerman85f2bf92007-05-08 12:58:35 +100031
Michael Ellerman85f2bf92007-05-08 12:58:35 +100032/* RTAS Helpers */
33
34static int rtas_change_msi(struct pci_dn *pdn, u32 func, u32 num_irqs)
35{
36 u32 addr, seq_num, rtas_ret[3];
37 unsigned long buid;
38 int rc;
39
40 addr = rtas_config_addr(pdn->busno, pdn->devfn, 0);
41 buid = pdn->phb->buid;
42
43 seq_num = 1;
44 do {
Brian Kinge61133d2013-05-03 11:30:59 +000045 if (func == RTAS_CHANGE_MSI_FN || func == RTAS_CHANGE_MSIX_FN ||
46 func == RTAS_CHANGE_32MSI_FN)
Michael Ellerman85f2bf92007-05-08 12:58:35 +100047 rc = rtas_call(change_token, 6, 4, rtas_ret, addr,
48 BUID_HI(buid), BUID_LO(buid),
49 func, num_irqs, seq_num);
50 else
51 rc = rtas_call(change_token, 6, 3, rtas_ret, addr,
52 BUID_HI(buid), BUID_LO(buid),
53 func, num_irqs, seq_num);
54
55 seq_num = rtas_ret[1];
56 } while (rtas_busy_delay(rc));
57
Michael Ellermand3853662007-09-20 16:36:50 +100058 /*
Michael Ellerman6071ed02009-01-22 20:54:33 +000059 * If the RTAS call succeeded, return the number of irqs allocated.
60 * If not, make sure we return a negative error code.
Michael Ellermand3853662007-09-20 16:36:50 +100061 */
Michael Ellerman6071ed02009-01-22 20:54:33 +000062 if (rc == 0)
63 rc = rtas_ret[0];
64 else if (rc > 0)
65 rc = -rc;
Michael Ellerman85f2bf92007-05-08 12:58:35 +100066
Michael Ellermand3853662007-09-20 16:36:50 +100067 pr_debug("rtas_msi: ibm,change_msi(func=%d,num=%d), got %d rc = %d\n",
68 func, num_irqs, rtas_ret[0], rc);
Michael Ellerman85f2bf92007-05-08 12:58:35 +100069
70 return rc;
71}
72
73static void rtas_disable_msi(struct pci_dev *pdev)
74{
75 struct pci_dn *pdn;
76
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +000077 pdn = pci_get_pdn(pdev);
Michael Ellerman85f2bf92007-05-08 12:58:35 +100078 if (!pdn)
79 return;
80
Nishanth Aravamudan964a2992011-03-03 15:41:02 +000081 /*
82 * disabling MSI with the explicit interface also disables MSI-X
83 */
84 if (rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, 0) != 0) {
85 /*
86 * may have failed because explicit interface is not
87 * present
88 */
89 if (rtas_change_msi(pdn, RTAS_CHANGE_FN, 0) != 0) {
90 pr_debug("rtas_msi: Setting MSIs to 0 failed!\n");
91 }
92 }
Michael Ellerman85f2bf92007-05-08 12:58:35 +100093}
94
95static int rtas_query_irq_number(struct pci_dn *pdn, int offset)
96{
97 u32 addr, rtas_ret[2];
98 unsigned long buid;
99 int rc;
100
101 addr = rtas_config_addr(pdn->busno, pdn->devfn, 0);
102 buid = pdn->phb->buid;
103
104 do {
105 rc = rtas_call(query_token, 4, 3, rtas_ret, addr,
106 BUID_HI(buid), BUID_LO(buid), offset);
107 } while (rtas_busy_delay(rc));
108
109 if (rc) {
110 pr_debug("rtas_msi: error (%d) querying source number\n", rc);
111 return rc;
112 }
113
114 return rtas_ret[0];
115}
116
117static void rtas_teardown_msi_irqs(struct pci_dev *pdev)
118{
119 struct msi_desc *entry;
120
Jiang Liu2921d172015-07-09 16:00:38 +0800121 for_each_pci_msi_entry(entry, pdev) {
Michael Ellermanef24ba72016-09-06 21:53:24 +1000122 if (!entry->irq)
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000123 continue;
124
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100125 irq_set_msi_desc(entry->irq, NULL);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000126 irq_dispose_mapping(entry->irq);
127 }
128
129 rtas_disable_msi(pdev);
130}
131
Michael Ellerman3a51c0c2009-01-22 20:54:31 +0000132static int check_req(struct pci_dev *pdev, int nvec, char *prop_name)
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000133{
134 struct device_node *dn;
135 struct pci_dn *pdn;
Anton Blanchard8d153152013-12-12 15:59:40 +1100136 const __be32 *p;
137 u32 req_msi;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000138
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000139 pdn = pci_get_pdn(pdev);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000140 if (!pdn)
141 return -ENODEV;
142
143 dn = pdn->node;
144
Anton Blanchard8d153152013-12-12 15:59:40 +1100145 p = of_get_property(dn, prop_name, NULL);
146 if (!p) {
Michael Ellerman3a51c0c2009-01-22 20:54:31 +0000147 pr_debug("rtas_msi: No %s on %s\n", prop_name, dn->full_name);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000148 return -ENOENT;
149 }
150
Anton Blanchard8d153152013-12-12 15:59:40 +1100151 req_msi = be32_to_cpup(p);
152 if (req_msi < nvec) {
Michael Ellerman3a51c0c2009-01-22 20:54:31 +0000153 pr_debug("rtas_msi: %s requests < %d MSIs\n", prop_name, nvec);
Michael Ellermand523cc32009-02-17 00:18:49 +0000154
Anton Blanchard8d153152013-12-12 15:59:40 +1100155 if (req_msi == 0) /* Be paranoid */
Michael Ellermand523cc32009-02-17 00:18:49 +0000156 return -ENOSPC;
157
Anton Blanchard8d153152013-12-12 15:59:40 +1100158 return req_msi;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000159 }
160
161 return 0;
162}
163
Michael Ellerman3a51c0c2009-01-22 20:54:31 +0000164static int check_req_msi(struct pci_dev *pdev, int nvec)
165{
166 return check_req(pdev, nvec, "ibm,req#msi");
167}
168
169static int check_req_msix(struct pci_dev *pdev, int nvec)
170{
171 return check_req(pdev, nvec, "ibm,req#msi-x");
172}
173
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000174/* Quota calculation */
175
176static struct device_node *find_pe_total_msi(struct pci_dev *dev, int *total)
177{
178 struct device_node *dn;
Anton Blanchard8d153152013-12-12 15:59:40 +1100179 const __be32 *p;
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000180
181 dn = of_node_get(pci_device_to_OF_node(dev));
182 while (dn) {
183 p = of_get_property(dn, "ibm,pe-total-#msi", NULL);
184 if (p) {
185 pr_debug("rtas_msi: found prop on dn %s\n",
186 dn->full_name);
Anton Blanchard8d153152013-12-12 15:59:40 +1100187 *total = be32_to_cpup(p);
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000188 return dn;
189 }
190
191 dn = of_get_next_parent(dn);
192 }
193
194 return NULL;
195}
196
197static struct device_node *find_pe_dn(struct pci_dev *dev, int *total)
198{
199 struct device_node *dn;
Gavin Shanc6406d82015-03-17 16:15:08 +1100200 struct pci_dn *pdn;
Gavin Shan66523d92012-09-07 22:44:13 +0000201 struct eeh_dev *edev;
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000202
203 /* Found our PE and assume 8 at that point. */
204
205 dn = pci_device_to_OF_node(dev);
206 if (!dn)
207 return NULL;
208
Gavin Shan66523d92012-09-07 22:44:13 +0000209 /* Get the top level device in the PE */
Gavin Shanc6406d82015-03-17 16:15:08 +1100210 edev = pdn_to_eeh_dev(PCI_DN(dn));
Alexey Kardashevskiybb461882012-11-23 13:25:39 +1100211 if (edev->pe)
212 edev = list_first_entry(&edev->pe->edevs, struct eeh_dev, list);
Gavin Shanc6406d82015-03-17 16:15:08 +1100213 pdn = eeh_dev_to_pdn(edev);
214 dn = pdn ? pdn->node : NULL;
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000215 if (!dn)
216 return NULL;
217
218 /* We actually want the parent */
219 dn = of_get_parent(dn);
220 if (!dn)
221 return NULL;
222
223 /* Hardcode of 8 for old firmwares */
224 *total = 8;
225 pr_debug("rtas_msi: using PE dn %s\n", dn->full_name);
226
227 return dn;
228}
229
230struct msi_counts {
231 struct device_node *requestor;
232 int num_devices;
233 int request;
234 int quota;
235 int spare;
236 int over_quota;
237};
238
239static void *count_non_bridge_devices(struct device_node *dn, void *data)
240{
241 struct msi_counts *counts = data;
Anton Blanchard8d153152013-12-12 15:59:40 +1100242 const __be32 *p;
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000243 u32 class;
244
245 pr_debug("rtas_msi: counting %s\n", dn->full_name);
246
247 p = of_get_property(dn, "class-code", NULL);
Anton Blanchard8d153152013-12-12 15:59:40 +1100248 class = p ? be32_to_cpup(p) : 0;
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000249
250 if ((class >> 8) != PCI_CLASS_BRIDGE_PCI)
251 counts->num_devices++;
252
253 return NULL;
254}
255
256static void *count_spare_msis(struct device_node *dn, void *data)
257{
258 struct msi_counts *counts = data;
Anton Blanchard8d153152013-12-12 15:59:40 +1100259 const __be32 *p;
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000260 int req;
261
262 if (dn == counts->requestor)
263 req = counts->request;
264 else {
265 /* We don't know if a driver will try to use MSI or MSI-X,
266 * so we just have to punt and use the larger of the two. */
267 req = 0;
268 p = of_get_property(dn, "ibm,req#msi", NULL);
269 if (p)
Anton Blanchard8d153152013-12-12 15:59:40 +1100270 req = be32_to_cpup(p);
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000271
272 p = of_get_property(dn, "ibm,req#msi-x", NULL);
273 if (p)
Anton Blanchard8d153152013-12-12 15:59:40 +1100274 req = max(req, (int)be32_to_cpup(p));
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000275 }
276
277 if (req < counts->quota)
278 counts->spare += counts->quota - req;
279 else if (req > counts->quota)
280 counts->over_quota++;
281
282 return NULL;
283}
284
285static int msi_quota_for_device(struct pci_dev *dev, int request)
286{
287 struct device_node *pe_dn;
288 struct msi_counts counts;
289 int total;
290
291 pr_debug("rtas_msi: calc quota for %s, request %d\n", pci_name(dev),
292 request);
293
294 pe_dn = find_pe_total_msi(dev, &total);
295 if (!pe_dn)
296 pe_dn = find_pe_dn(dev, &total);
297
298 if (!pe_dn) {
299 pr_err("rtas_msi: couldn't find PE for %s\n", pci_name(dev));
300 goto out;
301 }
302
303 pr_debug("rtas_msi: found PE %s\n", pe_dn->full_name);
304
305 memset(&counts, 0, sizeof(struct msi_counts));
306
307 /* Work out how many devices we have below this PE */
Gavin Shancdddc572016-05-03 15:41:42 +1000308 pci_traverse_device_nodes(pe_dn, count_non_bridge_devices, &counts);
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000309
310 if (counts.num_devices == 0) {
311 pr_err("rtas_msi: found 0 devices under PE for %s\n",
312 pci_name(dev));
313 goto out;
314 }
315
316 counts.quota = total / counts.num_devices;
317 if (request <= counts.quota)
318 goto out;
319
320 /* else, we have some more calculating to do */
321 counts.requestor = pci_device_to_OF_node(dev);
322 counts.request = request;
Gavin Shancdddc572016-05-03 15:41:42 +1000323 pci_traverse_device_nodes(pe_dn, count_spare_msis, &counts);
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000324
325 /* If the quota isn't an integer multiple of the total, we can
326 * use the remainder as spare MSIs for anyone that wants them. */
327 counts.spare += total % counts.num_devices;
328
329 /* Divide any spare by the number of over-quota requestors */
330 if (counts.over_quota)
331 counts.quota += counts.spare / counts.over_quota;
332
333 /* And finally clamp the request to the possibly adjusted quota */
334 request = min(counts.quota, request);
335
336 pr_debug("rtas_msi: request clamped to quota %d\n", request);
337out:
338 of_node_put(pe_dn);
339
340 return request;
341}
342
Michael Ellerman94afa5a2009-03-05 14:44:26 +0000343static int check_msix_entries(struct pci_dev *pdev)
344{
345 struct msi_desc *entry;
346 int expected;
347
348 /* There's no way for us to express to firmware that we want
349 * a discontiguous, or non-zero based, range of MSI-X entries.
350 * So we must reject such requests. */
351
352 expected = 0;
Jiang Liu2921d172015-07-09 16:00:38 +0800353 for_each_pci_msi_entry(entry, pdev) {
Michael Ellerman94afa5a2009-03-05 14:44:26 +0000354 if (entry->msi_attrib.entry_nr != expected) {
355 pr_debug("rtas_msi: bad MSI-X entries.\n");
356 return -EINVAL;
357 }
358 expected++;
359 }
360
361 return 0;
362}
363
Brian Kingf1dd1532013-05-22 11:07:46 +0000364static void rtas_hack_32bit_msi_gen2(struct pci_dev *pdev)
365{
366 u32 addr_hi, addr_lo;
367
368 /*
369 * We should only get in here for IODA1 configs. This is based on the
370 * fact that we using RTAS for MSIs, we don't have the 32 bit MSI RTAS
371 * support, and we are in a PCIe Gen2 slot.
372 */
373 dev_info(&pdev->dev,
374 "rtas_msi: No 32 bit MSI firmware support, forcing 32 bit MSI\n");
375 pci_read_config_dword(pdev, pdev->msi_cap + PCI_MSI_ADDRESS_HI, &addr_hi);
376 addr_lo = 0xffff0000 | ((addr_hi >> (48 - 32)) << 4);
377 pci_write_config_dword(pdev, pdev->msi_cap + PCI_MSI_ADDRESS_LO, addr_lo);
378 pci_write_config_dword(pdev, pdev->msi_cap + PCI_MSI_ADDRESS_HI, 0);
379}
380
Anton Blanchard752f5212012-06-04 16:47:03 +0000381static int rtas_setup_msi_irqs(struct pci_dev *pdev, int nvec_in, int type)
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000382{
383 struct pci_dn *pdn;
Alexander Gordeev6b2fd7ef2014-09-07 20:57:53 +0200384 int hwirq, virq, i, quota, rc;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000385 struct msi_desc *entry;
Michael Ellerman1db3e892007-10-23 14:23:44 +1000386 struct msi_msg msg;
Anton Blanchard752f5212012-06-04 16:47:03 +0000387 int nvec = nvec_in;
Brian Kingf1dd1532013-05-22 11:07:46 +0000388 int use_32bit_msi_hack = 0;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000389
Alexander Gordeev6b2fd7ef2014-09-07 20:57:53 +0200390 if (type == PCI_CAP_ID_MSIX)
391 rc = check_req_msix(pdev, nvec);
392 else
393 rc = check_req_msi(pdev, nvec);
394
395 if (rc)
396 return rc;
397
398 quota = msi_quota_for_device(pdev, nvec);
399
400 if (quota && quota < nvec)
401 return quota;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000402
Michael Ellerman94afa5a2009-03-05 14:44:26 +0000403 if (type == PCI_CAP_ID_MSIX && check_msix_entries(pdev))
404 return -EINVAL;
405
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000406 /*
Anton Blanchard752f5212012-06-04 16:47:03 +0000407 * Firmware currently refuse any non power of two allocation
408 * so we round up if the quota will allow it.
409 */
410 if (type == PCI_CAP_ID_MSIX) {
411 int m = roundup_pow_of_two(nvec);
Alexander Gordeev6b2fd7ef2014-09-07 20:57:53 +0200412 quota = msi_quota_for_device(pdev, m);
Anton Blanchard752f5212012-06-04 16:47:03 +0000413
414 if (quota >= m)
415 nvec = m;
416 }
417
Alexander Gordeev6b2fd7ef2014-09-07 20:57:53 +0200418 pdn = pci_get_pdn(pdev);
419
Anton Blanchard752f5212012-06-04 16:47:03 +0000420 /*
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000421 * Try the new more explicit firmware interface, if that fails fall
422 * back to the old interface. The old interface is known to never
423 * return MSI-Xs.
424 */
Anton Blanchard752f5212012-06-04 16:47:03 +0000425again:
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000426 if (type == PCI_CAP_ID_MSI) {
Benjamin Herrenschmidt415072a2014-10-07 16:12:55 +1100427 if (pdev->no_64bit_msi) {
Brian Kinge61133d2013-05-03 11:30:59 +0000428 rc = rtas_change_msi(pdn, RTAS_CHANGE_32MSI_FN, nvec);
Brian Kingf1dd1532013-05-22 11:07:46 +0000429 if (rc < 0) {
430 /*
431 * We only want to run the 32 bit MSI hack below if
432 * the max bus speed is Gen2 speed
433 */
434 if (pdev->bus->max_bus_speed != PCIE_SPEED_5_0GT)
435 return rc;
436
437 use_32bit_msi_hack = 1;
438 }
439 } else
440 rc = -1;
441
442 if (rc < 0)
Brian Kinge61133d2013-05-03 11:30:59 +0000443 rc = rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, nvec);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000444
Brian Kingf1dd1532013-05-22 11:07:46 +0000445 if (rc < 0) {
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000446 pr_debug("rtas_msi: trying the old firmware call.\n");
447 rc = rtas_change_msi(pdn, RTAS_CHANGE_FN, nvec);
448 }
Brian Kingf1dd1532013-05-22 11:07:46 +0000449
450 if (use_32bit_msi_hack && rc > 0)
451 rtas_hack_32bit_msi_gen2(pdev);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000452 } else
453 rc = rtas_change_msi(pdn, RTAS_CHANGE_MSIX_FN, nvec);
454
Michael Ellerman6071ed02009-01-22 20:54:33 +0000455 if (rc != nvec) {
Anton Blanchard752f5212012-06-04 16:47:03 +0000456 if (nvec != nvec_in) {
457 nvec = nvec_in;
458 goto again;
459 }
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000460 pr_debug("rtas_msi: rtas_change_msi() failed\n");
Michael Ellermanfcbe8092007-09-20 16:36:48 +1000461 return rc;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000462 }
463
464 i = 0;
Jiang Liu2921d172015-07-09 16:00:38 +0800465 for_each_pci_msi_entry(entry, pdev) {
Michael Ellermane27ed692009-01-22 20:54:31 +0000466 hwirq = rtas_query_irq_number(pdn, i++);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000467 if (hwirq < 0) {
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000468 pr_debug("rtas_msi: error (%d) getting hwirq\n", rc);
Michael Ellermanfcbe8092007-09-20 16:36:48 +1000469 return hwirq;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000470 }
471
472 virq = irq_create_mapping(NULL, hwirq);
473
Michael Ellermanef24ba72016-09-06 21:53:24 +1000474 if (!virq) {
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000475 pr_debug("rtas_msi: Failed mapping hwirq %d\n", hwirq);
Michael Ellermanfcbe8092007-09-20 16:36:48 +1000476 return -ENOSPC;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000477 }
478
479 dev_dbg(&pdev->dev, "rtas_msi: allocated virq %d\n", virq);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100480 irq_set_msi_desc(virq, entry);
Michael Ellerman1db3e892007-10-23 14:23:44 +1000481
482 /* Read config space back so we can restore after reset */
Jiang Liu891d4a42014-11-09 23:10:33 +0800483 __pci_read_msi_msg(entry, &msg);
Michael Ellerman1db3e892007-10-23 14:23:44 +1000484 entry->msg = msg;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000485 }
486
487 return 0;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000488}
489
490static void rtas_msi_pci_irq_fixup(struct pci_dev *pdev)
491{
492 /* No LSI -> leave MSIs (if any) configured */
Michael Ellermanef24ba72016-09-06 21:53:24 +1000493 if (!pdev->irq) {
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000494 dev_dbg(&pdev->dev, "rtas_msi: no LSI, nothing to do.\n");
495 return;
496 }
497
498 /* No MSI -> MSIs can't have been assigned by fw, leave LSI */
Michael Ellerman649781f82009-01-22 20:54:32 +0000499 if (check_req_msi(pdev, 1) && check_req_msix(pdev, 1)) {
500 dev_dbg(&pdev->dev, "rtas_msi: no req#msi/x, nothing to do.\n");
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000501 return;
502 }
503
504 dev_dbg(&pdev->dev, "rtas_msi: disabling existing MSI.\n");
505 rtas_disable_msi(pdev);
506}
507
508static int rtas_msi_init(void)
509{
Daniel Axtens1d14b872015-04-14 14:27:57 +1000510 struct pci_controller *phb;
511
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000512 query_token = rtas_token("ibm,query-interrupt-source-number");
513 change_token = rtas_token("ibm,change-msi");
514
515 if ((query_token == RTAS_UNKNOWN_SERVICE) ||
516 (change_token == RTAS_UNKNOWN_SERVICE)) {
517 pr_debug("rtas_msi: no RTAS tokens, no MSI support.\n");
518 return -1;
519 }
520
521 pr_debug("rtas_msi: Registering RTAS MSI callbacks.\n");
522
Daniel Axtens1d14b872015-04-14 14:27:57 +1000523 WARN_ON(pseries_pci_controller_ops.setup_msi_irqs);
524 pseries_pci_controller_ops.setup_msi_irqs = rtas_setup_msi_irqs;
525 pseries_pci_controller_ops.teardown_msi_irqs = rtas_teardown_msi_irqs;
526
527 list_for_each_entry(phb, &hose_list, list_node) {
528 WARN_ON(phb->controller_ops.setup_msi_irqs);
529 phb->controller_ops.setup_msi_irqs = rtas_setup_msi_irqs;
530 phb->controller_ops.teardown_msi_irqs = rtas_teardown_msi_irqs;
531 }
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000532
533 WARN_ON(ppc_md.pci_irq_fixup);
534 ppc_md.pci_irq_fixup = rtas_msi_pci_irq_fixup;
535
536 return 0;
537}
Michael Ellerman8e83e902014-07-16 12:02:43 +1000538machine_arch_initcall(pseries, rtas_msi_init);