blob: d34f4ffdb796f71cb34a10355b771230cd215baa [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>
19
20static int query_token, change_token;
21
22#define RTAS_QUERY_FN 0
23#define RTAS_CHANGE_FN 1
24#define RTAS_RESET_FN 2
25#define RTAS_CHANGE_MSI_FN 3
26#define RTAS_CHANGE_MSIX_FN 4
Brian Kinge61133d2013-05-03 11:30:59 +000027#define RTAS_CHANGE_32MSI_FN 5
Michael Ellerman85f2bf92007-05-08 12:58:35 +100028
Michael Ellerman85f2bf92007-05-08 12:58:35 +100029/* RTAS Helpers */
30
31static int rtas_change_msi(struct pci_dn *pdn, u32 func, u32 num_irqs)
32{
33 u32 addr, seq_num, rtas_ret[3];
34 unsigned long buid;
35 int rc;
36
37 addr = rtas_config_addr(pdn->busno, pdn->devfn, 0);
38 buid = pdn->phb->buid;
39
40 seq_num = 1;
41 do {
Brian Kinge61133d2013-05-03 11:30:59 +000042 if (func == RTAS_CHANGE_MSI_FN || func == RTAS_CHANGE_MSIX_FN ||
43 func == RTAS_CHANGE_32MSI_FN)
Michael Ellerman85f2bf92007-05-08 12:58:35 +100044 rc = rtas_call(change_token, 6, 4, rtas_ret, addr,
45 BUID_HI(buid), BUID_LO(buid),
46 func, num_irqs, seq_num);
47 else
48 rc = rtas_call(change_token, 6, 3, rtas_ret, addr,
49 BUID_HI(buid), BUID_LO(buid),
50 func, num_irqs, seq_num);
51
52 seq_num = rtas_ret[1];
53 } while (rtas_busy_delay(rc));
54
Michael Ellermand3853662007-09-20 16:36:50 +100055 /*
Michael Ellerman6071ed02009-01-22 20:54:33 +000056 * If the RTAS call succeeded, return the number of irqs allocated.
57 * If not, make sure we return a negative error code.
Michael Ellermand3853662007-09-20 16:36:50 +100058 */
Michael Ellerman6071ed02009-01-22 20:54:33 +000059 if (rc == 0)
60 rc = rtas_ret[0];
61 else if (rc > 0)
62 rc = -rc;
Michael Ellerman85f2bf92007-05-08 12:58:35 +100063
Michael Ellermand3853662007-09-20 16:36:50 +100064 pr_debug("rtas_msi: ibm,change_msi(func=%d,num=%d), got %d rc = %d\n",
65 func, num_irqs, rtas_ret[0], rc);
Michael Ellerman85f2bf92007-05-08 12:58:35 +100066
67 return rc;
68}
69
70static void rtas_disable_msi(struct pci_dev *pdev)
71{
72 struct pci_dn *pdn;
73
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +000074 pdn = pci_get_pdn(pdev);
Michael Ellerman85f2bf92007-05-08 12:58:35 +100075 if (!pdn)
76 return;
77
Nishanth Aravamudan964a2992011-03-03 15:41:02 +000078 /*
79 * disabling MSI with the explicit interface also disables MSI-X
80 */
81 if (rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, 0) != 0) {
82 /*
83 * may have failed because explicit interface is not
84 * present
85 */
86 if (rtas_change_msi(pdn, RTAS_CHANGE_FN, 0) != 0) {
87 pr_debug("rtas_msi: Setting MSIs to 0 failed!\n");
88 }
89 }
Michael Ellerman85f2bf92007-05-08 12:58:35 +100090}
91
92static int rtas_query_irq_number(struct pci_dn *pdn, int offset)
93{
94 u32 addr, rtas_ret[2];
95 unsigned long buid;
96 int rc;
97
98 addr = rtas_config_addr(pdn->busno, pdn->devfn, 0);
99 buid = pdn->phb->buid;
100
101 do {
102 rc = rtas_call(query_token, 4, 3, rtas_ret, addr,
103 BUID_HI(buid), BUID_LO(buid), offset);
104 } while (rtas_busy_delay(rc));
105
106 if (rc) {
107 pr_debug("rtas_msi: error (%d) querying source number\n", rc);
108 return rc;
109 }
110
111 return rtas_ret[0];
112}
113
114static void rtas_teardown_msi_irqs(struct pci_dev *pdev)
115{
116 struct msi_desc *entry;
117
118 list_for_each_entry(entry, &pdev->msi_list, list) {
119 if (entry->irq == NO_IRQ)
120 continue;
121
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100122 irq_set_msi_desc(entry->irq, NULL);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000123 irq_dispose_mapping(entry->irq);
124 }
125
126 rtas_disable_msi(pdev);
127}
128
Michael Ellerman3a51c0c2009-01-22 20:54:31 +0000129static int check_req(struct pci_dev *pdev, int nvec, char *prop_name)
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000130{
131 struct device_node *dn;
132 struct pci_dn *pdn;
133 const u32 *req_msi;
134
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000135 pdn = pci_get_pdn(pdev);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000136 if (!pdn)
137 return -ENODEV;
138
139 dn = pdn->node;
140
Michael Ellerman3a51c0c2009-01-22 20:54:31 +0000141 req_msi = of_get_property(dn, prop_name, NULL);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000142 if (!req_msi) {
Michael Ellerman3a51c0c2009-01-22 20:54:31 +0000143 pr_debug("rtas_msi: No %s on %s\n", prop_name, dn->full_name);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000144 return -ENOENT;
145 }
146
147 if (*req_msi < nvec) {
Michael Ellerman3a51c0c2009-01-22 20:54:31 +0000148 pr_debug("rtas_msi: %s requests < %d MSIs\n", prop_name, nvec);
Michael Ellermand523cc32009-02-17 00:18:49 +0000149
150 if (*req_msi == 0) /* Be paranoid */
151 return -ENOSPC;
152
153 return *req_msi;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000154 }
155
156 return 0;
157}
158
Michael Ellerman3a51c0c2009-01-22 20:54:31 +0000159static int check_req_msi(struct pci_dev *pdev, int nvec)
160{
161 return check_req(pdev, nvec, "ibm,req#msi");
162}
163
164static int check_req_msix(struct pci_dev *pdev, int nvec)
165{
166 return check_req(pdev, nvec, "ibm,req#msi-x");
167}
168
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000169/* Quota calculation */
170
171static struct device_node *find_pe_total_msi(struct pci_dev *dev, int *total)
172{
173 struct device_node *dn;
174 const u32 *p;
175
176 dn = of_node_get(pci_device_to_OF_node(dev));
177 while (dn) {
178 p = of_get_property(dn, "ibm,pe-total-#msi", NULL);
179 if (p) {
180 pr_debug("rtas_msi: found prop on dn %s\n",
181 dn->full_name);
182 *total = *p;
183 return dn;
184 }
185
186 dn = of_get_next_parent(dn);
187 }
188
189 return NULL;
190}
191
192static struct device_node *find_pe_dn(struct pci_dev *dev, int *total)
193{
194 struct device_node *dn;
Gavin Shan66523d92012-09-07 22:44:13 +0000195 struct eeh_dev *edev;
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000196
197 /* Found our PE and assume 8 at that point. */
198
199 dn = pci_device_to_OF_node(dev);
200 if (!dn)
201 return NULL;
202
Gavin Shan66523d92012-09-07 22:44:13 +0000203 /* Get the top level device in the PE */
204 edev = of_node_to_eeh_dev(dn);
Alexey Kardashevskiybb461882012-11-23 13:25:39 +1100205 if (edev->pe)
206 edev = list_first_entry(&edev->pe->edevs, struct eeh_dev, list);
Gavin Shan66523d92012-09-07 22:44:13 +0000207 dn = eeh_dev_to_of_node(edev);
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000208 if (!dn)
209 return NULL;
210
211 /* We actually want the parent */
212 dn = of_get_parent(dn);
213 if (!dn)
214 return NULL;
215
216 /* Hardcode of 8 for old firmwares */
217 *total = 8;
218 pr_debug("rtas_msi: using PE dn %s\n", dn->full_name);
219
220 return dn;
221}
222
223struct msi_counts {
224 struct device_node *requestor;
225 int num_devices;
226 int request;
227 int quota;
228 int spare;
229 int over_quota;
230};
231
232static void *count_non_bridge_devices(struct device_node *dn, void *data)
233{
234 struct msi_counts *counts = data;
235 const u32 *p;
236 u32 class;
237
238 pr_debug("rtas_msi: counting %s\n", dn->full_name);
239
240 p = of_get_property(dn, "class-code", NULL);
241 class = p ? *p : 0;
242
243 if ((class >> 8) != PCI_CLASS_BRIDGE_PCI)
244 counts->num_devices++;
245
246 return NULL;
247}
248
249static void *count_spare_msis(struct device_node *dn, void *data)
250{
251 struct msi_counts *counts = data;
252 const u32 *p;
253 int req;
254
255 if (dn == counts->requestor)
256 req = counts->request;
257 else {
258 /* We don't know if a driver will try to use MSI or MSI-X,
259 * so we just have to punt and use the larger of the two. */
260 req = 0;
261 p = of_get_property(dn, "ibm,req#msi", NULL);
262 if (p)
263 req = *p;
264
265 p = of_get_property(dn, "ibm,req#msi-x", NULL);
266 if (p)
267 req = max(req, (int)*p);
268 }
269
270 if (req < counts->quota)
271 counts->spare += counts->quota - req;
272 else if (req > counts->quota)
273 counts->over_quota++;
274
275 return NULL;
276}
277
278static int msi_quota_for_device(struct pci_dev *dev, int request)
279{
280 struct device_node *pe_dn;
281 struct msi_counts counts;
282 int total;
283
284 pr_debug("rtas_msi: calc quota for %s, request %d\n", pci_name(dev),
285 request);
286
287 pe_dn = find_pe_total_msi(dev, &total);
288 if (!pe_dn)
289 pe_dn = find_pe_dn(dev, &total);
290
291 if (!pe_dn) {
292 pr_err("rtas_msi: couldn't find PE for %s\n", pci_name(dev));
293 goto out;
294 }
295
296 pr_debug("rtas_msi: found PE %s\n", pe_dn->full_name);
297
298 memset(&counts, 0, sizeof(struct msi_counts));
299
300 /* Work out how many devices we have below this PE */
301 traverse_pci_devices(pe_dn, count_non_bridge_devices, &counts);
302
303 if (counts.num_devices == 0) {
304 pr_err("rtas_msi: found 0 devices under PE for %s\n",
305 pci_name(dev));
306 goto out;
307 }
308
309 counts.quota = total / counts.num_devices;
310 if (request <= counts.quota)
311 goto out;
312
313 /* else, we have some more calculating to do */
314 counts.requestor = pci_device_to_OF_node(dev);
315 counts.request = request;
316 traverse_pci_devices(pe_dn, count_spare_msis, &counts);
317
318 /* If the quota isn't an integer multiple of the total, we can
319 * use the remainder as spare MSIs for anyone that wants them. */
320 counts.spare += total % counts.num_devices;
321
322 /* Divide any spare by the number of over-quota requestors */
323 if (counts.over_quota)
324 counts.quota += counts.spare / counts.over_quota;
325
326 /* And finally clamp the request to the possibly adjusted quota */
327 request = min(counts.quota, request);
328
329 pr_debug("rtas_msi: request clamped to quota %d\n", request);
330out:
331 of_node_put(pe_dn);
332
333 return request;
334}
335
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000336static int rtas_msi_check_device(struct pci_dev *pdev, int nvec, int type)
337{
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000338 int quota, rc;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000339
Michael Ellerman448e2ca2009-02-17 00:21:56 +0000340 if (type == PCI_CAP_ID_MSIX)
341 rc = check_req_msix(pdev, nvec);
342 else
343 rc = check_req_msi(pdev, nvec);
344
345 if (rc)
346 return rc;
347
348 quota = msi_quota_for_device(pdev, nvec);
349
350 if (quota && quota < nvec)
351 return quota;
352
353 return 0;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000354}
355
Michael Ellerman94afa5a2009-03-05 14:44:26 +0000356static int check_msix_entries(struct pci_dev *pdev)
357{
358 struct msi_desc *entry;
359 int expected;
360
361 /* There's no way for us to express to firmware that we want
362 * a discontiguous, or non-zero based, range of MSI-X entries.
363 * So we must reject such requests. */
364
365 expected = 0;
366 list_for_each_entry(entry, &pdev->msi_list, list) {
367 if (entry->msi_attrib.entry_nr != expected) {
368 pr_debug("rtas_msi: bad MSI-X entries.\n");
369 return -EINVAL;
370 }
371 expected++;
372 }
373
374 return 0;
375}
376
Anton Blanchard752f5212012-06-04 16:47:03 +0000377static int rtas_setup_msi_irqs(struct pci_dev *pdev, int nvec_in, int type)
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000378{
379 struct pci_dn *pdn;
380 int hwirq, virq, i, rc;
381 struct msi_desc *entry;
Michael Ellerman1db3e892007-10-23 14:23:44 +1000382 struct msi_msg msg;
Anton Blanchard752f5212012-06-04 16:47:03 +0000383 int nvec = nvec_in;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000384
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000385 pdn = pci_get_pdn(pdev);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000386 if (!pdn)
387 return -ENODEV;
388
Michael Ellerman94afa5a2009-03-05 14:44:26 +0000389 if (type == PCI_CAP_ID_MSIX && check_msix_entries(pdev))
390 return -EINVAL;
391
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000392 /*
Anton Blanchard752f5212012-06-04 16:47:03 +0000393 * Firmware currently refuse any non power of two allocation
394 * so we round up if the quota will allow it.
395 */
396 if (type == PCI_CAP_ID_MSIX) {
397 int m = roundup_pow_of_two(nvec);
398 int quota = msi_quota_for_device(pdev, m);
399
400 if (quota >= m)
401 nvec = m;
402 }
403
404 /*
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000405 * Try the new more explicit firmware interface, if that fails fall
406 * back to the old interface. The old interface is known to never
407 * return MSI-Xs.
408 */
Anton Blanchard752f5212012-06-04 16:47:03 +0000409again:
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000410 if (type == PCI_CAP_ID_MSI) {
Brian Kinge61133d2013-05-03 11:30:59 +0000411 if (pdn->force_32bit_msi)
412 rc = rtas_change_msi(pdn, RTAS_CHANGE_32MSI_FN, nvec);
413 else
414 rc = rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, nvec);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000415
Brian Kinge61133d2013-05-03 11:30:59 +0000416 if (rc < 0 && !pdn->force_32bit_msi) {
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000417 pr_debug("rtas_msi: trying the old firmware call.\n");
418 rc = rtas_change_msi(pdn, RTAS_CHANGE_FN, nvec);
419 }
420 } else
421 rc = rtas_change_msi(pdn, RTAS_CHANGE_MSIX_FN, nvec);
422
Michael Ellerman6071ed02009-01-22 20:54:33 +0000423 if (rc != nvec) {
Anton Blanchard752f5212012-06-04 16:47:03 +0000424 if (nvec != nvec_in) {
425 nvec = nvec_in;
426 goto again;
427 }
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000428 pr_debug("rtas_msi: rtas_change_msi() failed\n");
Michael Ellermanfcbe8092007-09-20 16:36:48 +1000429 return rc;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000430 }
431
432 i = 0;
433 list_for_each_entry(entry, &pdev->msi_list, list) {
Michael Ellermane27ed692009-01-22 20:54:31 +0000434 hwirq = rtas_query_irq_number(pdn, i++);
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000435 if (hwirq < 0) {
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000436 pr_debug("rtas_msi: error (%d) getting hwirq\n", rc);
Michael Ellermanfcbe8092007-09-20 16:36:48 +1000437 return hwirq;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000438 }
439
440 virq = irq_create_mapping(NULL, hwirq);
441
442 if (virq == NO_IRQ) {
443 pr_debug("rtas_msi: Failed mapping hwirq %d\n", hwirq);
Michael Ellermanfcbe8092007-09-20 16:36:48 +1000444 return -ENOSPC;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000445 }
446
447 dev_dbg(&pdev->dev, "rtas_msi: allocated virq %d\n", virq);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100448 irq_set_msi_desc(virq, entry);
Michael Ellerman1db3e892007-10-23 14:23:44 +1000449
450 /* Read config space back so we can restore after reset */
451 read_msi_msg(virq, &msg);
452 entry->msg = msg;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000453 }
454
455 return 0;
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000456}
457
458static void rtas_msi_pci_irq_fixup(struct pci_dev *pdev)
459{
460 /* No LSI -> leave MSIs (if any) configured */
461 if (pdev->irq == NO_IRQ) {
462 dev_dbg(&pdev->dev, "rtas_msi: no LSI, nothing to do.\n");
463 return;
464 }
465
466 /* No MSI -> MSIs can't have been assigned by fw, leave LSI */
Michael Ellerman649781f2009-01-22 20:54:32 +0000467 if (check_req_msi(pdev, 1) && check_req_msix(pdev, 1)) {
468 dev_dbg(&pdev->dev, "rtas_msi: no req#msi/x, nothing to do.\n");
Michael Ellerman85f2bf92007-05-08 12:58:35 +1000469 return;
470 }
471
472 dev_dbg(&pdev->dev, "rtas_msi: disabling existing MSI.\n");
473 rtas_disable_msi(pdev);
474}
475
476static int rtas_msi_init(void)
477{
478 query_token = rtas_token("ibm,query-interrupt-source-number");
479 change_token = rtas_token("ibm,change-msi");
480
481 if ((query_token == RTAS_UNKNOWN_SERVICE) ||
482 (change_token == RTAS_UNKNOWN_SERVICE)) {
483 pr_debug("rtas_msi: no RTAS tokens, no MSI support.\n");
484 return -1;
485 }
486
487 pr_debug("rtas_msi: Registering RTAS MSI callbacks.\n");
488
489 WARN_ON(ppc_md.setup_msi_irqs);
490 ppc_md.setup_msi_irqs = rtas_setup_msi_irqs;
491 ppc_md.teardown_msi_irqs = rtas_teardown_msi_irqs;
492 ppc_md.msi_check_device = rtas_msi_check_device;
493
494 WARN_ON(ppc_md.pci_irq_fixup);
495 ppc_md.pci_irq_fixup = rtas_msi_pci_irq_fixup;
496
497 return 0;
498}
499arch_initcall(rtas_msi_init);
Brian Kinge61133d2013-05-03 11:30:59 +0000500