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)
96 if (rtas_change_msi(pdn, RTAS_CHANGE_FN, 0) != 0)
97 pr_debug("rtas_msi: Setting MSIs to 0 failed!\n");
100 static int rtas_query_irq_number(struct pci_dn *pdn, int offset)
102 u32 addr, rtas_ret[2];
106 addr = rtas_config_addr(pdn->busno, pdn->devfn, 0);
107 buid = pdn->phb->buid;
110 rc = rtas_call(query_token, 4, 3, rtas_ret, addr,
111 BUID_HI(buid), BUID_LO(buid), offset);
112 } while (rtas_busy_delay(rc));
115 pr_debug("rtas_msi: error (%d) querying source number\n", rc);
122 static void rtas_teardown_msi_irqs(struct pci_dev *pdev)
124 struct msi_desc *entry;
126 list_for_each_entry(entry, &pdev->msi_list, list) {
127 if (entry->irq == NO_IRQ)
130 set_irq_msi(entry->irq, NULL);
131 irq_dispose_mapping(entry->irq);
134 rtas_disable_msi(pdev);
137 static int check_req(struct pci_dev *pdev, int nvec, char *prop_name)
139 struct device_node *dn;
149 req_msi = of_get_property(dn, prop_name, NULL);
151 pr_debug("rtas_msi: No %s on %s\n", prop_name, dn->full_name);
155 if (*req_msi < nvec) {
156 pr_debug("rtas_msi: %s requests < %d MSIs\n", prop_name, nvec);
163 static int check_req_msi(struct pci_dev *pdev, int nvec)
165 return check_req(pdev, nvec, "ibm,req#msi");
168 static int check_req_msix(struct pci_dev *pdev, int nvec)
170 return check_req(pdev, nvec, "ibm,req#msi-x");
173 static int rtas_msi_check_device(struct pci_dev *pdev, int nvec, int type)
175 if (type == PCI_CAP_ID_MSIX)
176 return check_req_msix(pdev, nvec);
178 return check_req_msi(pdev, nvec);
181 static int rtas_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
184 int hwirq, virq, i, rc;
185 struct msi_desc *entry;
193 * Try the new more explicit firmware interface, if that fails fall
194 * back to the old interface. The old interface is known to never
197 if (type == PCI_CAP_ID_MSI) {
198 rc = rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, nvec);
201 pr_debug("rtas_msi: trying the old firmware call.\n");
202 rc = rtas_change_msi(pdn, RTAS_CHANGE_FN, nvec);
205 rc = rtas_change_msi(pdn, RTAS_CHANGE_MSIX_FN, nvec);
208 pr_debug("rtas_msi: rtas_change_msi() failed\n");
213 list_for_each_entry(entry, &pdev->msi_list, list) {
214 hwirq = rtas_query_irq_number(pdn, i++);
216 pr_debug("rtas_msi: error (%d) getting hwirq\n", rc);
220 virq = irq_create_mapping(NULL, hwirq);
222 if (virq == NO_IRQ) {
223 pr_debug("rtas_msi: Failed mapping hwirq %d\n", hwirq);
227 dev_dbg(&pdev->dev, "rtas_msi: allocated virq %d\n", virq);
228 set_irq_msi(virq, entry);
230 /* Read config space back so we can restore after reset */
231 read_msi_msg(virq, &msg);
234 unmask_msi_irq(virq);
240 static void rtas_msi_pci_irq_fixup(struct pci_dev *pdev)
242 /* No LSI -> leave MSIs (if any) configured */
243 if (pdev->irq == NO_IRQ) {
244 dev_dbg(&pdev->dev, "rtas_msi: no LSI, nothing to do.\n");
248 /* No MSI -> MSIs can't have been assigned by fw, leave LSI */
249 if (check_req_msi(pdev, 1) && check_req_msix(pdev, 1)) {
250 dev_dbg(&pdev->dev, "rtas_msi: no req#msi/x, nothing to do.\n");
254 dev_dbg(&pdev->dev, "rtas_msi: disabling existing MSI.\n");
255 rtas_disable_msi(pdev);
258 static int rtas_msi_init(void)
260 query_token = rtas_token("ibm,query-interrupt-source-number");
261 change_token = rtas_token("ibm,change-msi");
263 if ((query_token == RTAS_UNKNOWN_SERVICE) ||
264 (change_token == RTAS_UNKNOWN_SERVICE)) {
265 pr_debug("rtas_msi: no RTAS tokens, no MSI support.\n");
269 pr_debug("rtas_msi: Registering RTAS MSI callbacks.\n");
271 WARN_ON(ppc_md.setup_msi_irqs);
272 ppc_md.setup_msi_irqs = rtas_setup_msi_irqs;
273 ppc_md.teardown_msi_irqs = rtas_teardown_msi_irqs;
274 ppc_md.msi_check_device = rtas_msi_check_device;
276 WARN_ON(ppc_md.pci_irq_fixup);
277 ppc_md.pci_irq_fixup = rtas_msi_pci_irq_fixup;
281 arch_initcall(rtas_msi_init);