2 * Adding PCI-E MSI support for PPC4XX SoCs.
4 * Copyright (c) 2010, Applied Micro Circuits Corporation
5 * Authors: Tirumala R Marri <tmarri@apm.com>
6 * Feng Kan <fkan@apm.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 #include <linux/irq.h>
25 #include <linux/pci.h>
26 #include <linux/msi.h>
27 #include <linux/of_platform.h>
28 #include <linux/interrupt.h>
29 #include <linux/export.h>
30 #include <linux/kernel.h>
32 #include <asm/hw_irq.h>
33 #include <asm/ppc-pci.h>
35 #include <asm/dcr-regs.h>
36 #include <asm/msi_bitmap.h>
38 #define PEIH_TERMADH 0x00
39 #define PEIH_TERMADL 0x08
40 #define PEIH_MSIED 0x10
41 #define PEIH_MSIMK 0x18
42 #define PEIH_MSIASS 0x20
43 #define PEIH_FLUSH0 0x30
44 #define PEIH_FLUSH1 0x38
45 #define PEIH_CNTRST 0x48
52 void __iomem
*msi_regs
;
54 struct msi_bitmap bitmap
;
55 struct device_node
*msi_dev
;
58 static struct ppc4xx_msi ppc4xx_msi
;
60 static int ppc4xx_msi_init_allocator(struct platform_device
*dev
,
61 struct ppc4xx_msi
*msi_data
)
65 err
= msi_bitmap_alloc(&msi_data
->bitmap
, msi_irqs
,
70 err
= msi_bitmap_reserve_dt_hwirqs(&msi_data
->bitmap
);
72 msi_bitmap_free(&msi_data
->bitmap
);
79 static int ppc4xx_setup_msi_irqs(struct pci_dev
*dev
, int nvec
, int type
)
84 struct msi_desc
*entry
;
85 struct ppc4xx_msi
*msi_data
= &ppc4xx_msi
;
87 dev_dbg(&dev
->dev
, "PCIE-MSI:%s called. vec %x type %d\n",
88 __func__
, nvec
, type
);
89 if (type
== PCI_CAP_ID_MSIX
)
90 pr_debug("ppc4xx msi: MSI-X untested, trying anyway.\n");
92 msi_data
->msi_virqs
= kmalloc((msi_irqs
) * sizeof(int), GFP_KERNEL
);
93 if (!msi_data
->msi_virqs
)
96 for_each_pci_msi_entry(entry
, dev
) {
97 int_no
= msi_bitmap_alloc_hwirqs(&msi_data
->bitmap
, 1);
101 pr_debug("%s: fail allocating msi interrupt\n",
104 virq
= irq_of_parse_and_map(msi_data
->msi_dev
, int_no
);
106 dev_err(&dev
->dev
, "%s: fail mapping irq\n", __func__
);
107 msi_bitmap_free_hwirqs(&msi_data
->bitmap
, int_no
, 1);
110 dev_dbg(&dev
->dev
, "%s: virq = %d\n", __func__
, virq
);
112 /* Setup msi address space */
113 msg
.address_hi
= msi_data
->msi_addr_hi
;
114 msg
.address_lo
= msi_data
->msi_addr_lo
;
116 irq_set_msi_desc(virq
, entry
);
118 pci_write_msi_msg(virq
, &msg
);
123 void ppc4xx_teardown_msi_irqs(struct pci_dev
*dev
)
125 struct msi_desc
*entry
;
126 struct ppc4xx_msi
*msi_data
= &ppc4xx_msi
;
127 irq_hw_number_t hwirq
;
129 dev_dbg(&dev
->dev
, "PCIE-MSI: tearing down msi irqs\n");
131 for_each_pci_msi_entry(entry
, dev
) {
134 hwirq
= virq_to_hw(entry
->irq
);
135 irq_set_msi_desc(entry
->irq
, NULL
);
136 irq_dispose_mapping(entry
->irq
);
137 msi_bitmap_free_hwirqs(&msi_data
->bitmap
, hwirq
, 1);
141 static int ppc4xx_setup_pcieh_hw(struct platform_device
*dev
,
142 struct resource res
, struct ppc4xx_msi
*msi
)
150 sdr_addr
= of_get_property(dev
->dev
.of_node
, "sdr-base", NULL
);
154 mtdcri(SDR0
, *sdr_addr
, upper_32_bits(res
.start
)); /*HIGH addr */
155 mtdcri(SDR0
, *sdr_addr
+ 1, lower_32_bits(res
.start
)); /* Low addr */
157 msi
->msi_dev
= of_find_node_by_name(NULL
, "ppc4xx-msi");
161 msi
->msi_regs
= of_iomap(msi
->msi_dev
, 0);
162 if (!msi
->msi_regs
) {
163 dev_err(&dev
->dev
, "of_iomap problem failed\n");
166 dev_dbg(&dev
->dev
, "PCIE-MSI: msi register mapped 0x%x 0x%x\n",
167 (u32
) (msi
->msi_regs
+ PEIH_TERMADH
), (u32
) (msi
->msi_regs
));
169 msi_virt
= dma_alloc_coherent(&dev
->dev
, 64, &msi_phys
, GFP_KERNEL
);
172 msi
->msi_addr_hi
= upper_32_bits(msi_phys
);
173 msi
->msi_addr_lo
= lower_32_bits(msi_phys
& 0xffffffff);
174 dev_dbg(&dev
->dev
, "PCIE-MSI: msi address high 0x%x, low 0x%x\n",
175 msi
->msi_addr_hi
, msi
->msi_addr_lo
);
177 /* Progam the Interrupt handler Termination addr registers */
178 out_be32(msi
->msi_regs
+ PEIH_TERMADH
, msi
->msi_addr_hi
);
179 out_be32(msi
->msi_regs
+ PEIH_TERMADL
, msi
->msi_addr_lo
);
181 msi_data
= of_get_property(dev
->dev
.of_node
, "msi-data", NULL
);
184 msi_mask
= of_get_property(dev
->dev
.of_node
, "msi-mask", NULL
);
187 /* Program MSI Expected data and Mask bits */
188 out_be32(msi
->msi_regs
+ PEIH_MSIED
, *msi_data
);
189 out_be32(msi
->msi_regs
+ PEIH_MSIMK
, *msi_mask
);
191 dma_free_coherent(&dev
->dev
, 64, msi_virt
, msi_phys
);
196 static int ppc4xx_of_msi_remove(struct platform_device
*dev
)
198 struct ppc4xx_msi
*msi
= dev
->dev
.platform_data
;
202 for (i
= 0; i
< msi_irqs
; i
++) {
203 virq
= msi
->msi_virqs
[i
];
205 irq_dispose_mapping(virq
);
208 if (msi
->bitmap
.bitmap
)
209 msi_bitmap_free(&msi
->bitmap
);
210 iounmap(msi
->msi_regs
);
211 of_node_put(msi
->msi_dev
);
217 static int ppc4xx_msi_probe(struct platform_device
*dev
)
219 struct ppc4xx_msi
*msi
;
222 struct pci_controller
*phb
;
224 dev_dbg(&dev
->dev
, "PCIE-MSI: Setting up MSI support...\n");
226 msi
= kzalloc(sizeof(struct ppc4xx_msi
), GFP_KERNEL
);
228 dev_err(&dev
->dev
, "No memory for MSI structure\n");
231 dev
->dev
.platform_data
= msi
;
234 err
= of_address_to_resource(dev
->dev
.of_node
, 0, &res
);
236 dev_err(&dev
->dev
, "%s resource error!\n",
237 dev
->dev
.of_node
->full_name
);
241 msi_irqs
= of_irq_count(dev
->dev
.of_node
);
245 if (ppc4xx_setup_pcieh_hw(dev
, res
, msi
))
248 err
= ppc4xx_msi_init_allocator(dev
, msi
);
250 dev_err(&dev
->dev
, "Error allocating MSI bitmap\n");
255 list_for_each_entry(phb
, &hose_list
, list_node
) {
256 phb
->controller_ops
.setup_msi_irqs
= ppc4xx_setup_msi_irqs
;
257 phb
->controller_ops
.teardown_msi_irqs
= ppc4xx_teardown_msi_irqs
;
262 ppc4xx_of_msi_remove(dev
);
265 static const struct of_device_id ppc4xx_msi_ids
[] = {
267 .compatible
= "amcc,ppc4xx-msi",
271 static struct platform_driver ppc4xx_msi_driver
= {
272 .probe
= ppc4xx_msi_probe
,
273 .remove
= ppc4xx_of_msi_remove
,
275 .name
= "ppc4xx-msi",
276 .of_match_table
= ppc4xx_msi_ids
,
281 static __init
int ppc4xx_msi_init(void)
283 return platform_driver_register(&ppc4xx_msi_driver
);
286 subsys_initcall(ppc4xx_msi_init
);