2 * Copyright 2006 Jake Moilanen <moilanen@austin.ibm.com>, IBM Corp.
3 * Copyright 2006-2007 Michael Ellerman, IBM Corp.
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
12 #include <linux/device.h>
13 #include <linux/irq.h>
14 #include <linux/msi.h>
17 #include <asm/hw_irq.h>
18 #include <asm/ppc-pci.h>
20 static int query_token
, change_token
;
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
28 static struct pci_dn
*get_pdn(struct pci_dev
*pdev
)
30 struct device_node
*dn
;
33 dn
= pci_device_to_OF_node(pdev
);
35 dev_dbg(&pdev
->dev
, "rtas_msi: No OF device node\n");
41 dev_dbg(&pdev
->dev
, "rtas_msi: No PCI DN\n");
50 static int rtas_change_msi(struct pci_dn
*pdn
, u32 func
, u32 num_irqs
)
52 u32 addr
, seq_num
, rtas_ret
[3];
56 addr
= rtas_config_addr(pdn
->busno
, pdn
->devfn
, 0);
57 buid
= pdn
->phb
->buid
;
61 if (func
== RTAS_CHANGE_MSI_FN
|| func
== RTAS_CHANGE_MSIX_FN
)
62 rc
= rtas_call(change_token
, 6, 4, rtas_ret
, addr
,
63 BUID_HI(buid
), BUID_LO(buid
),
64 func
, num_irqs
, seq_num
);
66 rc
= rtas_call(change_token
, 6, 3, rtas_ret
, addr
,
67 BUID_HI(buid
), BUID_LO(buid
),
68 func
, num_irqs
, seq_num
);
70 seq_num
= rtas_ret
[1];
71 } while (rtas_busy_delay(rc
));
74 * If the RTAS call succeeded, return the number of irqs allocated.
75 * If not, make sure we return a negative error code.
82 pr_debug("rtas_msi: ibm,change_msi(func=%d,num=%d), got %d rc = %d\n",
83 func
, num_irqs
, rtas_ret
[0], rc
);
88 static void rtas_disable_msi(struct pci_dev
*pdev
)
97 * disabling MSI with the explicit interface also disables MSI-X
99 if (rtas_change_msi(pdn
, RTAS_CHANGE_MSI_FN
, 0) != 0) {
101 * may have failed because explicit interface is not
104 if (rtas_change_msi(pdn
, RTAS_CHANGE_FN
, 0) != 0) {
105 pr_debug("rtas_msi: Setting MSIs to 0 failed!\n");
110 static int rtas_query_irq_number(struct pci_dn
*pdn
, int offset
)
112 u32 addr
, rtas_ret
[2];
116 addr
= rtas_config_addr(pdn
->busno
, pdn
->devfn
, 0);
117 buid
= pdn
->phb
->buid
;
120 rc
= rtas_call(query_token
, 4, 3, rtas_ret
, addr
,
121 BUID_HI(buid
), BUID_LO(buid
), offset
);
122 } while (rtas_busy_delay(rc
));
125 pr_debug("rtas_msi: error (%d) querying source number\n", rc
);
132 static void rtas_teardown_msi_irqs(struct pci_dev
*pdev
)
134 struct msi_desc
*entry
;
136 list_for_each_entry(entry
, &pdev
->msi_list
, list
) {
137 if (entry
->irq
== NO_IRQ
)
140 irq_set_msi_desc(entry
->irq
, NULL
);
141 irq_dispose_mapping(entry
->irq
);
144 rtas_disable_msi(pdev
);
147 static int check_req(struct pci_dev
*pdev
, int nvec
, char *prop_name
)
149 struct device_node
*dn
;
159 req_msi
= of_get_property(dn
, prop_name
, NULL
);
161 pr_debug("rtas_msi: No %s on %s\n", prop_name
, dn
->full_name
);
165 if (*req_msi
< nvec
) {
166 pr_debug("rtas_msi: %s requests < %d MSIs\n", prop_name
, nvec
);
168 if (*req_msi
== 0) /* Be paranoid */
177 static int check_req_msi(struct pci_dev
*pdev
, int nvec
)
179 return check_req(pdev
, nvec
, "ibm,req#msi");
182 static int check_req_msix(struct pci_dev
*pdev
, int nvec
)
184 return check_req(pdev
, nvec
, "ibm,req#msi-x");
187 /* Quota calculation */
189 static struct device_node
*find_pe_total_msi(struct pci_dev
*dev
, int *total
)
191 struct device_node
*dn
;
194 dn
= of_node_get(pci_device_to_OF_node(dev
));
196 p
= of_get_property(dn
, "ibm,pe-total-#msi", NULL
);
198 pr_debug("rtas_msi: found prop on dn %s\n",
204 dn
= of_get_next_parent(dn
);
210 static struct device_node
*find_pe_dn(struct pci_dev
*dev
, int *total
)
212 struct device_node
*dn
;
214 /* Found our PE and assume 8 at that point. */
216 dn
= pci_device_to_OF_node(dev
);
220 dn
= find_device_pe(dn
);
224 /* We actually want the parent */
225 dn
= of_get_parent(dn
);
229 /* Hardcode of 8 for old firmwares */
231 pr_debug("rtas_msi: using PE dn %s\n", dn
->full_name
);
237 struct device_node
*requestor
;
245 static void *count_non_bridge_devices(struct device_node
*dn
, void *data
)
247 struct msi_counts
*counts
= data
;
251 pr_debug("rtas_msi: counting %s\n", dn
->full_name
);
253 p
= of_get_property(dn
, "class-code", NULL
);
256 if ((class >> 8) != PCI_CLASS_BRIDGE_PCI
)
257 counts
->num_devices
++;
262 static void *count_spare_msis(struct device_node
*dn
, void *data
)
264 struct msi_counts
*counts
= data
;
268 if (dn
== counts
->requestor
)
269 req
= counts
->request
;
271 /* We don't know if a driver will try to use MSI or MSI-X,
272 * so we just have to punt and use the larger of the two. */
274 p
= of_get_property(dn
, "ibm,req#msi", NULL
);
278 p
= of_get_property(dn
, "ibm,req#msi-x", NULL
);
280 req
= max(req
, (int)*p
);
283 if (req
< counts
->quota
)
284 counts
->spare
+= counts
->quota
- req
;
285 else if (req
> counts
->quota
)
286 counts
->over_quota
++;
291 static int msi_quota_for_device(struct pci_dev
*dev
, int request
)
293 struct device_node
*pe_dn
;
294 struct msi_counts counts
;
297 pr_debug("rtas_msi: calc quota for %s, request %d\n", pci_name(dev
),
300 pe_dn
= find_pe_total_msi(dev
, &total
);
302 pe_dn
= find_pe_dn(dev
, &total
);
305 pr_err("rtas_msi: couldn't find PE for %s\n", pci_name(dev
));
309 pr_debug("rtas_msi: found PE %s\n", pe_dn
->full_name
);
311 memset(&counts
, 0, sizeof(struct msi_counts
));
313 /* Work out how many devices we have below this PE */
314 traverse_pci_devices(pe_dn
, count_non_bridge_devices
, &counts
);
316 if (counts
.num_devices
== 0) {
317 pr_err("rtas_msi: found 0 devices under PE for %s\n",
322 counts
.quota
= total
/ counts
.num_devices
;
323 if (request
<= counts
.quota
)
326 /* else, we have some more calculating to do */
327 counts
.requestor
= pci_device_to_OF_node(dev
);
328 counts
.request
= request
;
329 traverse_pci_devices(pe_dn
, count_spare_msis
, &counts
);
331 /* If the quota isn't an integer multiple of the total, we can
332 * use the remainder as spare MSIs for anyone that wants them. */
333 counts
.spare
+= total
% counts
.num_devices
;
335 /* Divide any spare by the number of over-quota requestors */
336 if (counts
.over_quota
)
337 counts
.quota
+= counts
.spare
/ counts
.over_quota
;
339 /* And finally clamp the request to the possibly adjusted quota */
340 request
= min(counts
.quota
, request
);
342 pr_debug("rtas_msi: request clamped to quota %d\n", request
);
349 static int rtas_msi_check_device(struct pci_dev
*pdev
, int nvec
, int type
)
353 if (type
== PCI_CAP_ID_MSIX
)
354 rc
= check_req_msix(pdev
, nvec
);
356 rc
= check_req_msi(pdev
, nvec
);
361 quota
= msi_quota_for_device(pdev
, nvec
);
363 if (quota
&& quota
< nvec
)
369 static int check_msix_entries(struct pci_dev
*pdev
)
371 struct msi_desc
*entry
;
374 /* There's no way for us to express to firmware that we want
375 * a discontiguous, or non-zero based, range of MSI-X entries.
376 * So we must reject such requests. */
379 list_for_each_entry(entry
, &pdev
->msi_list
, list
) {
380 if (entry
->msi_attrib
.entry_nr
!= expected
) {
381 pr_debug("rtas_msi: bad MSI-X entries.\n");
390 static int rtas_setup_msi_irqs(struct pci_dev
*pdev
, int nvec
, int type
)
393 int hwirq
, virq
, i
, rc
;
394 struct msi_desc
*entry
;
401 if (type
== PCI_CAP_ID_MSIX
&& check_msix_entries(pdev
))
405 * Try the new more explicit firmware interface, if that fails fall
406 * back to the old interface. The old interface is known to never
409 if (type
== PCI_CAP_ID_MSI
) {
410 rc
= rtas_change_msi(pdn
, RTAS_CHANGE_MSI_FN
, nvec
);
413 pr_debug("rtas_msi: trying the old firmware call.\n");
414 rc
= rtas_change_msi(pdn
, RTAS_CHANGE_FN
, nvec
);
417 rc
= rtas_change_msi(pdn
, RTAS_CHANGE_MSIX_FN
, nvec
);
420 pr_debug("rtas_msi: rtas_change_msi() failed\n");
425 list_for_each_entry(entry
, &pdev
->msi_list
, list
) {
426 hwirq
= rtas_query_irq_number(pdn
, i
++);
428 pr_debug("rtas_msi: error (%d) getting hwirq\n", rc
);
432 virq
= irq_create_mapping(NULL
, hwirq
);
434 if (virq
== NO_IRQ
) {
435 pr_debug("rtas_msi: Failed mapping hwirq %d\n", hwirq
);
439 dev_dbg(&pdev
->dev
, "rtas_msi: allocated virq %d\n", virq
);
440 irq_set_msi_desc(virq
, entry
);
442 /* Read config space back so we can restore after reset */
443 read_msi_msg(virq
, &msg
);
450 static void rtas_msi_pci_irq_fixup(struct pci_dev
*pdev
)
452 /* No LSI -> leave MSIs (if any) configured */
453 if (pdev
->irq
== NO_IRQ
) {
454 dev_dbg(&pdev
->dev
, "rtas_msi: no LSI, nothing to do.\n");
458 /* No MSI -> MSIs can't have been assigned by fw, leave LSI */
459 if (check_req_msi(pdev
, 1) && check_req_msix(pdev
, 1)) {
460 dev_dbg(&pdev
->dev
, "rtas_msi: no req#msi/x, nothing to do.\n");
464 dev_dbg(&pdev
->dev
, "rtas_msi: disabling existing MSI.\n");
465 rtas_disable_msi(pdev
);
468 static int rtas_msi_init(void)
470 query_token
= rtas_token("ibm,query-interrupt-source-number");
471 change_token
= rtas_token("ibm,change-msi");
473 if ((query_token
== RTAS_UNKNOWN_SERVICE
) ||
474 (change_token
== RTAS_UNKNOWN_SERVICE
)) {
475 pr_debug("rtas_msi: no RTAS tokens, no MSI support.\n");
479 pr_debug("rtas_msi: Registering RTAS MSI callbacks.\n");
481 WARN_ON(ppc_md
.setup_msi_irqs
);
482 ppc_md
.setup_msi_irqs
= rtas_setup_msi_irqs
;
483 ppc_md
.teardown_msi_irqs
= rtas_teardown_msi_irqs
;
484 ppc_md
.msi_check_device
= rtas_msi_check_device
;
486 WARN_ON(ppc_md
.pci_irq_fixup
);
487 ppc_md
.pci_irq_fixup
= rtas_msi_pci_irq_fixup
;
491 arch_initcall(rtas_msi_init
);