blob: 01839706bd520b17c73a548d5225e3b1cc238720 [file] [log] [blame]
David S. Miller8f6a93a2006-02-09 21:32:07 -08001/* pci_sun4v.c: SUN4V specific PCI controller support.
2 *
David S. Millerd2841422008-02-08 18:05:46 -08003 * Copyright (C) 2006, 2007, 2008 David S. Miller (davem@davemloft.net)
David S. Miller8f6a93a2006-02-09 21:32:07 -08004 */
5
6#include <linux/kernel.h>
7#include <linux/types.h>
8#include <linux/pci.h>
9#include <linux/init.h>
10#include <linux/slab.h>
11#include <linux/interrupt.h>
David S. Miller18397942006-02-10 00:08:26 -080012#include <linux/percpu.h>
David S. Miller35a17eb2007-02-10 17:41:02 -080013#include <linux/irq.h>
14#include <linux/msi.h>
David S. Miller59db8102007-05-23 18:00:46 -070015#include <linux/log2.h>
David S. Miller8f6a93a2006-02-09 21:32:07 -080016
David S. Miller8f6a93a2006-02-09 21:32:07 -080017#include <asm/iommu.h>
18#include <asm/irq.h>
19#include <asm/upa.h>
20#include <asm/pstate.h>
21#include <asm/oplib.h>
22#include <asm/hypervisor.h>
David S. Millere87dc352006-06-21 18:18:47 -070023#include <asm/prom.h>
David S. Miller8f6a93a2006-02-09 21:32:07 -080024
25#include "pci_impl.h"
26#include "iommu_common.h"
27
David S. Millerbade5622006-02-09 22:05:54 -080028#include "pci_sun4v.h"
29
David S. Millere01c0d62007-05-25 01:04:15 -070030static unsigned long vpci_major = 1;
31static unsigned long vpci_minor = 1;
32
David S. Miller7c8f4862006-02-13 21:50:27 -080033#define PGLIST_NENTS (PAGE_SIZE / sizeof(u64))
David S. Miller18397942006-02-10 00:08:26 -080034
David S. Miller16ce82d2007-04-26 21:08:21 -070035struct iommu_batch {
David S. Millerad7ad572007-07-27 22:39:14 -070036 struct device *dev; /* Device mapping is for. */
David S. Miller6a32fd42006-02-19 22:21:32 -080037 unsigned long prot; /* IOMMU page protections */
38 unsigned long entry; /* Index into IOTSB. */
39 u64 *pglist; /* List of physical pages */
40 unsigned long npages; /* Number of pages in list. */
David S. Miller18397942006-02-10 00:08:26 -080041};
42
David S. Millerad7ad572007-07-27 22:39:14 -070043static DEFINE_PER_CPU(struct iommu_batch, iommu_batch);
David S. Miller6a32fd42006-02-19 22:21:32 -080044
45/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -070046static inline void iommu_batch_start(struct device *dev, unsigned long prot, unsigned long entry)
David S. Miller6a32fd42006-02-19 22:21:32 -080047{
David S. Millerad7ad572007-07-27 22:39:14 -070048 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
David S. Miller6a32fd42006-02-19 22:21:32 -080049
David S. Millerad7ad572007-07-27 22:39:14 -070050 p->dev = dev;
David S. Miller6a32fd42006-02-19 22:21:32 -080051 p->prot = prot;
52 p->entry = entry;
53 p->npages = 0;
54}
55
56/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -070057static long iommu_batch_flush(struct iommu_batch *p)
David S. Miller6a32fd42006-02-19 22:21:32 -080058{
David S. Millerad7ad572007-07-27 22:39:14 -070059 struct pci_pbm_info *pbm = p->dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -080060 unsigned long devhandle = pbm->devhandle;
David S. Miller6a32fd42006-02-19 22:21:32 -080061 unsigned long prot = p->prot;
62 unsigned long entry = p->entry;
63 u64 *pglist = p->pglist;
64 unsigned long npages = p->npages;
65
David S. Millerd82965c2006-02-20 01:42:51 -080066 while (npages != 0) {
David S. Miller6a32fd42006-02-19 22:21:32 -080067 long num;
68
69 num = pci_sun4v_iommu_map(devhandle, HV_PCI_TSBID(0, entry),
70 npages, prot, __pa(pglist));
71 if (unlikely(num < 0)) {
72 if (printk_ratelimit())
David S. Millerad7ad572007-07-27 22:39:14 -070073 printk("iommu_batch_flush: IOMMU map of "
David S. Miller6a32fd42006-02-19 22:21:32 -080074 "[%08lx:%08lx:%lx:%lx:%lx] failed with "
75 "status %ld\n",
76 devhandle, HV_PCI_TSBID(0, entry),
77 npages, prot, __pa(pglist), num);
78 return -1;
79 }
80
81 entry += num;
82 npages -= num;
83 pglist += num;
David S. Millerd82965c2006-02-20 01:42:51 -080084 }
David S. Miller6a32fd42006-02-19 22:21:32 -080085
86 p->entry = entry;
87 p->npages = 0;
88
89 return 0;
90}
91
David S. Miller13fa14e2008-02-09 03:11:01 -080092static inline void iommu_batch_new_entry(unsigned long entry)
93{
94 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
95
96 if (p->entry + p->npages == entry)
97 return;
98 if (p->entry != ~0UL)
99 iommu_batch_flush(p);
100 p->entry = entry;
101}
102
David S. Miller6a32fd42006-02-19 22:21:32 -0800103/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -0700104static inline long iommu_batch_add(u64 phys_page)
David S. Miller6a32fd42006-02-19 22:21:32 -0800105{
David S. Millerad7ad572007-07-27 22:39:14 -0700106 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
David S. Miller6a32fd42006-02-19 22:21:32 -0800107
108 BUG_ON(p->npages >= PGLIST_NENTS);
109
110 p->pglist[p->npages++] = phys_page;
111 if (p->npages == PGLIST_NENTS)
David S. Millerad7ad572007-07-27 22:39:14 -0700112 return iommu_batch_flush(p);
David S. Miller6a32fd42006-02-19 22:21:32 -0800113
114 return 0;
115}
116
117/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -0700118static inline long iommu_batch_end(void)
David S. Miller6a32fd42006-02-19 22:21:32 -0800119{
David S. Millerad7ad572007-07-27 22:39:14 -0700120 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
David S. Miller6a32fd42006-02-19 22:21:32 -0800121
122 BUG_ON(p->npages >= PGLIST_NENTS);
123
David S. Millerad7ad572007-07-27 22:39:14 -0700124 return iommu_batch_flush(p);
David S. Miller6a32fd42006-02-19 22:21:32 -0800125}
David S. Miller18397942006-02-10 00:08:26 -0800126
David S. Millerad7ad572007-07-27 22:39:14 -0700127static void *dma_4v_alloc_coherent(struct device *dev, size_t size,
128 dma_addr_t *dma_addrp, gfp_t gfp)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800129{
David S. Miller16ce82d2007-04-26 21:08:21 -0700130 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800131 unsigned long flags, order, first_page, npages, n;
David S. Miller18397942006-02-10 00:08:26 -0800132 void *ret;
133 long entry;
David S. Miller18397942006-02-10 00:08:26 -0800134
135 size = IO_PAGE_ALIGN(size);
136 order = get_order(size);
David S. Miller6a32fd42006-02-19 22:21:32 -0800137 if (unlikely(order >= MAX_ORDER))
David S. Miller18397942006-02-10 00:08:26 -0800138 return NULL;
139
140 npages = size >> IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800141
David S. Miller42f14232006-05-23 02:07:22 -0700142 first_page = __get_free_pages(gfp, order);
David S. Miller6a32fd42006-02-19 22:21:32 -0800143 if (unlikely(first_page == 0UL))
David S. Miller18397942006-02-10 00:08:26 -0800144 return NULL;
David S. Millere7a04532006-02-15 22:25:27 -0800145
David S. Miller18397942006-02-10 00:08:26 -0800146 memset((char *)first_page, 0, PAGE_SIZE << order);
147
David S. Millerad7ad572007-07-27 22:39:14 -0700148 iommu = dev->archdata.iommu;
David S. Miller18397942006-02-10 00:08:26 -0800149
150 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerd2841422008-02-08 18:05:46 -0800151 entry = iommu_range_alloc(dev, iommu, npages, NULL);
David S. Miller18397942006-02-10 00:08:26 -0800152 spin_unlock_irqrestore(&iommu->lock, flags);
153
David S. Millerd2841422008-02-08 18:05:46 -0800154 if (unlikely(entry == DMA_ERROR_CODE))
155 goto range_alloc_fail;
David S. Miller18397942006-02-10 00:08:26 -0800156
157 *dma_addrp = (iommu->page_table_map_base +
158 (entry << IO_PAGE_SHIFT));
159 ret = (void *) first_page;
160 first_page = __pa(first_page);
161
David S. Miller6a32fd42006-02-19 22:21:32 -0800162 local_irq_save(flags);
David S. Miller18397942006-02-10 00:08:26 -0800163
David S. Millerad7ad572007-07-27 22:39:14 -0700164 iommu_batch_start(dev,
165 (HV_PCI_MAP_ATTR_READ |
166 HV_PCI_MAP_ATTR_WRITE),
167 entry);
David S. Miller18397942006-02-10 00:08:26 -0800168
David S. Miller6a32fd42006-02-19 22:21:32 -0800169 for (n = 0; n < npages; n++) {
David S. Millerad7ad572007-07-27 22:39:14 -0700170 long err = iommu_batch_add(first_page + (n * PAGE_SIZE));
David S. Miller6a32fd42006-02-19 22:21:32 -0800171 if (unlikely(err < 0L))
172 goto iommu_map_fail;
173 }
David S. Miller18397942006-02-10 00:08:26 -0800174
David S. Millerad7ad572007-07-27 22:39:14 -0700175 if (unlikely(iommu_batch_end() < 0L))
David S. Miller6a32fd42006-02-19 22:21:32 -0800176 goto iommu_map_fail;
David S. Miller18397942006-02-10 00:08:26 -0800177
David S. Miller6a32fd42006-02-19 22:21:32 -0800178 local_irq_restore(flags);
David S. Miller18397942006-02-10 00:08:26 -0800179
180 return ret;
David S. Miller6a32fd42006-02-19 22:21:32 -0800181
182iommu_map_fail:
183 /* Interrupts are disabled. */
184 spin_lock(&iommu->lock);
David S. Millerd2841422008-02-08 18:05:46 -0800185 iommu_range_free(iommu, *dma_addrp, npages);
David S. Miller6a32fd42006-02-19 22:21:32 -0800186 spin_unlock_irqrestore(&iommu->lock, flags);
187
David S. Millerd2841422008-02-08 18:05:46 -0800188range_alloc_fail:
David S. Miller6a32fd42006-02-19 22:21:32 -0800189 free_pages(first_page, order);
190 return NULL;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800191}
192
David S. Millerad7ad572007-07-27 22:39:14 -0700193static void dma_4v_free_coherent(struct device *dev, size_t size, void *cpu,
194 dma_addr_t dvma)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800195{
David S. Millera2fb23a2007-02-28 23:35:04 -0800196 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700197 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800198 unsigned long flags, order, npages, entry;
199 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800200
201 npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT;
David S. Millerad7ad572007-07-27 22:39:14 -0700202 iommu = dev->archdata.iommu;
203 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800204 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800205 entry = ((dvma - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
206
207 spin_lock_irqsave(&iommu->lock, flags);
208
David S. Millerd2841422008-02-08 18:05:46 -0800209 iommu_range_free(iommu, dvma, npages);
David S. Miller18397942006-02-10 00:08:26 -0800210
211 do {
212 unsigned long num;
213
214 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
215 npages);
216 entry += num;
217 npages -= num;
218 } while (npages != 0);
219
220 spin_unlock_irqrestore(&iommu->lock, flags);
221
222 order = get_order(size);
223 if (order < 10)
224 free_pages((unsigned long)cpu, order);
David S. Miller8f6a93a2006-02-09 21:32:07 -0800225}
226
David S. Millerad7ad572007-07-27 22:39:14 -0700227static dma_addr_t dma_4v_map_single(struct device *dev, void *ptr, size_t sz,
228 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800229{
David S. Miller16ce82d2007-04-26 21:08:21 -0700230 struct iommu *iommu;
David S. Miller18397942006-02-10 00:08:26 -0800231 unsigned long flags, npages, oaddr;
David S. Miller7c8f4862006-02-13 21:50:27 -0800232 unsigned long i, base_paddr;
David S. Miller6a32fd42006-02-19 22:21:32 -0800233 u32 bus_addr, ret;
David S. Miller18397942006-02-10 00:08:26 -0800234 unsigned long prot;
235 long entry;
David S. Miller18397942006-02-10 00:08:26 -0800236
David S. Millerad7ad572007-07-27 22:39:14 -0700237 iommu = dev->archdata.iommu;
David S. Miller18397942006-02-10 00:08:26 -0800238
David S. Millerad7ad572007-07-27 22:39:14 -0700239 if (unlikely(direction == DMA_NONE))
David S. Miller18397942006-02-10 00:08:26 -0800240 goto bad;
241
242 oaddr = (unsigned long)ptr;
243 npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK);
244 npages >>= IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800245
246 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerd2841422008-02-08 18:05:46 -0800247 entry = iommu_range_alloc(dev, iommu, npages, NULL);
David S. Miller18397942006-02-10 00:08:26 -0800248 spin_unlock_irqrestore(&iommu->lock, flags);
249
David S. Millerd2841422008-02-08 18:05:46 -0800250 if (unlikely(entry == DMA_ERROR_CODE))
David S. Miller18397942006-02-10 00:08:26 -0800251 goto bad;
252
253 bus_addr = (iommu->page_table_map_base +
254 (entry << IO_PAGE_SHIFT));
255 ret = bus_addr | (oaddr & ~IO_PAGE_MASK);
256 base_paddr = __pa(oaddr & IO_PAGE_MASK);
257 prot = HV_PCI_MAP_ATTR_READ;
David S. Millerad7ad572007-07-27 22:39:14 -0700258 if (direction != DMA_TO_DEVICE)
David S. Miller18397942006-02-10 00:08:26 -0800259 prot |= HV_PCI_MAP_ATTR_WRITE;
260
David S. Miller6a32fd42006-02-19 22:21:32 -0800261 local_irq_save(flags);
David S. Miller18397942006-02-10 00:08:26 -0800262
David S. Millerad7ad572007-07-27 22:39:14 -0700263 iommu_batch_start(dev, prot, entry);
David S. Miller18397942006-02-10 00:08:26 -0800264
David S. Miller6a32fd42006-02-19 22:21:32 -0800265 for (i = 0; i < npages; i++, base_paddr += IO_PAGE_SIZE) {
David S. Millerad7ad572007-07-27 22:39:14 -0700266 long err = iommu_batch_add(base_paddr);
David S. Miller6a32fd42006-02-19 22:21:32 -0800267 if (unlikely(err < 0L))
268 goto iommu_map_fail;
269 }
David S. Millerad7ad572007-07-27 22:39:14 -0700270 if (unlikely(iommu_batch_end() < 0L))
David S. Miller6a32fd42006-02-19 22:21:32 -0800271 goto iommu_map_fail;
David S. Miller18397942006-02-10 00:08:26 -0800272
David S. Miller6a32fd42006-02-19 22:21:32 -0800273 local_irq_restore(flags);
David S. Miller18397942006-02-10 00:08:26 -0800274
275 return ret;
276
277bad:
278 if (printk_ratelimit())
279 WARN_ON(1);
David S. Millerad7ad572007-07-27 22:39:14 -0700280 return DMA_ERROR_CODE;
David S. Miller6a32fd42006-02-19 22:21:32 -0800281
282iommu_map_fail:
283 /* Interrupts are disabled. */
284 spin_lock(&iommu->lock);
David S. Millerd2841422008-02-08 18:05:46 -0800285 iommu_range_free(iommu, bus_addr, npages);
David S. Miller6a32fd42006-02-19 22:21:32 -0800286 spin_unlock_irqrestore(&iommu->lock, flags);
287
David S. Millerad7ad572007-07-27 22:39:14 -0700288 return DMA_ERROR_CODE;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800289}
290
David S. Millerad7ad572007-07-27 22:39:14 -0700291static void dma_4v_unmap_single(struct device *dev, dma_addr_t bus_addr,
292 size_t sz, enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800293{
David S. Millera2fb23a2007-02-28 23:35:04 -0800294 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700295 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800296 unsigned long flags, npages;
David S. Miller18397942006-02-10 00:08:26 -0800297 long entry;
David S. Miller7c8f4862006-02-13 21:50:27 -0800298 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800299
David S. Millerad7ad572007-07-27 22:39:14 -0700300 if (unlikely(direction == DMA_NONE)) {
David S. Miller18397942006-02-10 00:08:26 -0800301 if (printk_ratelimit())
302 WARN_ON(1);
303 return;
304 }
305
David S. Millerad7ad572007-07-27 22:39:14 -0700306 iommu = dev->archdata.iommu;
307 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800308 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800309
310 npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
311 npages >>= IO_PAGE_SHIFT;
312 bus_addr &= IO_PAGE_MASK;
313
314 spin_lock_irqsave(&iommu->lock, flags);
315
David S. Millerd2841422008-02-08 18:05:46 -0800316 iommu_range_free(iommu, bus_addr, npages);
David S. Miller18397942006-02-10 00:08:26 -0800317
David S. Millerd2841422008-02-08 18:05:46 -0800318 entry = (bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800319 do {
320 unsigned long num;
321
322 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
323 npages);
324 entry += num;
325 npages -= num;
326 } while (npages != 0);
327
328 spin_unlock_irqrestore(&iommu->lock, flags);
329}
330
David S. Millerad7ad572007-07-27 22:39:14 -0700331static int dma_4v_map_sg(struct device *dev, struct scatterlist *sglist,
332 int nelems, enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800333{
David S. Miller13fa14e2008-02-09 03:11:01 -0800334 struct scatterlist *s, *outs, *segstart;
335 unsigned long flags, handle, prot;
336 dma_addr_t dma_next = 0, dma_addr;
337 unsigned int max_seg_size;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700338 unsigned long seg_boundary_size;
David S. Miller13fa14e2008-02-09 03:11:01 -0800339 int outcount, incount, i;
David S. Miller16ce82d2007-04-26 21:08:21 -0700340 struct iommu *iommu;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700341 unsigned long base_shift;
David S. Miller13fa14e2008-02-09 03:11:01 -0800342 long err;
David S. Miller18397942006-02-10 00:08:26 -0800343
David S. Miller13fa14e2008-02-09 03:11:01 -0800344 BUG_ON(direction == DMA_NONE);
David S. Miller18397942006-02-10 00:08:26 -0800345
David S. Millerad7ad572007-07-27 22:39:14 -0700346 iommu = dev->archdata.iommu;
David S. Miller13fa14e2008-02-09 03:11:01 -0800347 if (nelems == 0 || !iommu)
348 return 0;
David S. Miller18397942006-02-10 00:08:26 -0800349
David S. Miller18397942006-02-10 00:08:26 -0800350 prot = HV_PCI_MAP_ATTR_READ;
David S. Millerad7ad572007-07-27 22:39:14 -0700351 if (direction != DMA_TO_DEVICE)
David S. Miller18397942006-02-10 00:08:26 -0800352 prot |= HV_PCI_MAP_ATTR_WRITE;
353
David S. Miller13fa14e2008-02-09 03:11:01 -0800354 outs = s = segstart = &sglist[0];
355 outcount = 1;
356 incount = nelems;
357 handle = 0;
David S. Miller38192d52008-02-06 03:50:26 -0800358
David S. Miller13fa14e2008-02-09 03:11:01 -0800359 /* Init first segment length for backout at failure */
360 outs->dma_length = 0;
David S. Miller38192d52008-02-06 03:50:26 -0800361
David S. Miller13fa14e2008-02-09 03:11:01 -0800362 spin_lock_irqsave(&iommu->lock, flags);
David S. Miller38192d52008-02-06 03:50:26 -0800363
David S. Miller13fa14e2008-02-09 03:11:01 -0800364 iommu_batch_start(dev, prot, ~0UL);
David S. Miller38192d52008-02-06 03:50:26 -0800365
David S. Miller13fa14e2008-02-09 03:11:01 -0800366 max_seg_size = dma_get_max_seg_size(dev);
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700367 seg_boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
368 IO_PAGE_SIZE) >> IO_PAGE_SHIFT;
369 base_shift = iommu->page_table_map_base >> IO_PAGE_SHIFT;
David S. Miller13fa14e2008-02-09 03:11:01 -0800370 for_each_sg(sglist, s, nelems, i) {
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700371 unsigned long paddr, npages, entry, out_entry = 0, slen;
David S. Miller38192d52008-02-06 03:50:26 -0800372
David S. Miller13fa14e2008-02-09 03:11:01 -0800373 slen = s->length;
374 /* Sanity check */
375 if (slen == 0) {
376 dma_next = 0;
377 continue;
David S. Miller38192d52008-02-06 03:50:26 -0800378 }
David S. Miller13fa14e2008-02-09 03:11:01 -0800379 /* Allocate iommu entries for that segment */
380 paddr = (unsigned long) SG_ENT_PHYS_ADDRESS(s);
381 npages = iommu_num_pages(paddr, slen);
382 entry = iommu_range_alloc(dev, iommu, npages, &handle);
383
384 /* Handle failure */
385 if (unlikely(entry == DMA_ERROR_CODE)) {
386 if (printk_ratelimit())
387 printk(KERN_INFO "iommu_alloc failed, iommu %p paddr %lx"
388 " npages %lx\n", iommu, paddr, npages);
389 goto iommu_map_failed;
390 }
391
392 iommu_batch_new_entry(entry);
393
394 /* Convert entry to a dma_addr_t */
395 dma_addr = iommu->page_table_map_base +
396 (entry << IO_PAGE_SHIFT);
397 dma_addr |= (s->offset & ~IO_PAGE_MASK);
398
399 /* Insert into HW table */
400 paddr &= IO_PAGE_MASK;
401 while (npages--) {
402 err = iommu_batch_add(paddr);
403 if (unlikely(err < 0L))
404 goto iommu_map_failed;
405 paddr += IO_PAGE_SIZE;
406 }
407
408 /* If we are in an open segment, try merging */
409 if (segstart != s) {
410 /* We cannot merge if:
411 * - allocated dma_addr isn't contiguous to previous allocation
412 */
413 if ((dma_addr != dma_next) ||
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700414 (outs->dma_length + s->length > max_seg_size) ||
415 (is_span_boundary(out_entry, base_shift,
416 seg_boundary_size, outs, s))) {
David S. Miller13fa14e2008-02-09 03:11:01 -0800417 /* Can't merge: create a new segment */
418 segstart = s;
419 outcount++;
420 outs = sg_next(outs);
421 } else {
422 outs->dma_length += s->length;
423 }
424 }
425
426 if (segstart == s) {
427 /* This is a new segment, fill entries */
428 outs->dma_address = dma_addr;
429 outs->dma_length = slen;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700430 out_entry = entry;
David S. Miller13fa14e2008-02-09 03:11:01 -0800431 }
432
433 /* Calculate next page pointer for contiguous check */
434 dma_next = dma_addr + slen;
David S. Miller38192d52008-02-06 03:50:26 -0800435 }
436
437 err = iommu_batch_end();
438
David S. Miller6a32fd42006-02-19 22:21:32 -0800439 if (unlikely(err < 0L))
440 goto iommu_map_failed;
David S. Miller18397942006-02-10 00:08:26 -0800441
David S. Miller13fa14e2008-02-09 03:11:01 -0800442 spin_unlock_irqrestore(&iommu->lock, flags);
David S. Miller18397942006-02-10 00:08:26 -0800443
David S. Miller13fa14e2008-02-09 03:11:01 -0800444 if (outcount < incount) {
445 outs = sg_next(outs);
446 outs->dma_address = DMA_ERROR_CODE;
447 outs->dma_length = 0;
448 }
449
450 return outcount;
David S. Miller6a32fd42006-02-19 22:21:32 -0800451
452iommu_map_failed:
David S. Miller13fa14e2008-02-09 03:11:01 -0800453 for_each_sg(sglist, s, nelems, i) {
454 if (s->dma_length != 0) {
455 unsigned long vaddr, npages;
456
457 vaddr = s->dma_address & IO_PAGE_MASK;
458 npages = iommu_num_pages(s->dma_address, s->dma_length);
459 iommu_range_free(iommu, vaddr, npages);
460 /* XXX demap? XXX */
461 s->dma_address = DMA_ERROR_CODE;
462 s->dma_length = 0;
463 }
464 if (s == outs)
465 break;
466 }
David S. Miller6a32fd42006-02-19 22:21:32 -0800467 spin_unlock_irqrestore(&iommu->lock, flags);
468
469 return 0;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800470}
471
David S. Millerad7ad572007-07-27 22:39:14 -0700472static void dma_4v_unmap_sg(struct device *dev, struct scatterlist *sglist,
473 int nelems, enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800474{
David S. Millera2fb23a2007-02-28 23:35:04 -0800475 struct pci_pbm_info *pbm;
David S. Miller13fa14e2008-02-09 03:11:01 -0800476 struct scatterlist *sg;
David S. Miller38192d52008-02-06 03:50:26 -0800477 struct iommu *iommu;
David S. Miller13fa14e2008-02-09 03:11:01 -0800478 unsigned long flags;
479 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800480
David S. Miller13fa14e2008-02-09 03:11:01 -0800481 BUG_ON(direction == DMA_NONE);
David S. Miller18397942006-02-10 00:08:26 -0800482
David S. Millerad7ad572007-07-27 22:39:14 -0700483 iommu = dev->archdata.iommu;
484 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800485 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800486
David S. Miller18397942006-02-10 00:08:26 -0800487 spin_lock_irqsave(&iommu->lock, flags);
488
David S. Miller13fa14e2008-02-09 03:11:01 -0800489 sg = sglist;
490 while (nelems--) {
491 dma_addr_t dma_handle = sg->dma_address;
492 unsigned int len = sg->dma_length;
493 unsigned long npages, entry;
David S. Miller18397942006-02-10 00:08:26 -0800494
David S. Miller13fa14e2008-02-09 03:11:01 -0800495 if (!len)
496 break;
497 npages = iommu_num_pages(dma_handle, len);
498 iommu_range_free(iommu, dma_handle, npages);
David S. Miller18397942006-02-10 00:08:26 -0800499
David S. Miller13fa14e2008-02-09 03:11:01 -0800500 entry = ((dma_handle - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
501 while (npages) {
502 unsigned long num;
503
504 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
505 npages);
506 entry += num;
507 npages -= num;
508 }
509
510 sg = sg_next(sg);
511 }
David S. Miller18397942006-02-10 00:08:26 -0800512
513 spin_unlock_irqrestore(&iommu->lock, flags);
David S. Miller8f6a93a2006-02-09 21:32:07 -0800514}
515
David S. Millerad7ad572007-07-27 22:39:14 -0700516static void dma_4v_sync_single_for_cpu(struct device *dev,
517 dma_addr_t bus_addr, size_t sz,
518 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800519{
David S. Miller18397942006-02-10 00:08:26 -0800520 /* Nothing to do... */
David S. Miller8f6a93a2006-02-09 21:32:07 -0800521}
522
David S. Millerad7ad572007-07-27 22:39:14 -0700523static void dma_4v_sync_sg_for_cpu(struct device *dev,
524 struct scatterlist *sglist, int nelems,
525 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800526{
David S. Miller18397942006-02-10 00:08:26 -0800527 /* Nothing to do... */
David S. Miller8f6a93a2006-02-09 21:32:07 -0800528}
529
David S. Millerad7ad572007-07-27 22:39:14 -0700530const struct dma_ops sun4v_dma_ops = {
531 .alloc_coherent = dma_4v_alloc_coherent,
532 .free_coherent = dma_4v_free_coherent,
533 .map_single = dma_4v_map_single,
534 .unmap_single = dma_4v_unmap_single,
535 .map_sg = dma_4v_map_sg,
536 .unmap_sg = dma_4v_unmap_sg,
537 .sync_single_for_cpu = dma_4v_sync_single_for_cpu,
538 .sync_sg_for_cpu = dma_4v_sync_sg_for_cpu,
David S. Miller8f6a93a2006-02-09 21:32:07 -0800539};
540
Sam Ravnborga1f35ba2008-01-21 17:22:46 -0800541static void __init pci_sun4v_scan_bus(struct pci_pbm_info *pbm)
David S. Millerbade5622006-02-09 22:05:54 -0800542{
David S. Millere87dc352006-06-21 18:18:47 -0700543 struct property *prop;
544 struct device_node *dp;
545
David S. Miller34768bc2007-05-07 23:06:27 -0700546 dp = pbm->prom_node;
547 prop = of_find_property(dp, "66mhz-capable", NULL);
548 pbm->is_66mhz_capable = (prop != NULL);
549 pbm->pci_bus = pci_scan_one_pbm(pbm);
David S. Millerc2609262006-02-12 22:18:52 -0800550
551 /* XXX register error interrupt handlers XXX */
David S. Millerbade5622006-02-09 22:05:54 -0800552}
553
Adrian Bunk4c622252008-02-05 03:01:43 -0800554static unsigned long __init probe_existing_entries(struct pci_pbm_info *pbm,
555 struct iommu *iommu)
David S. Miller18397942006-02-10 00:08:26 -0800556{
David S. Miller9b3627f2007-04-24 23:51:18 -0700557 struct iommu_arena *arena = &iommu->arena;
David S. Millere7a04532006-02-15 22:25:27 -0800558 unsigned long i, cnt = 0;
David S. Miller7c8f4862006-02-13 21:50:27 -0800559 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800560
561 devhandle = pbm->devhandle;
562 for (i = 0; i < arena->limit; i++) {
563 unsigned long ret, io_attrs, ra;
564
565 ret = pci_sun4v_iommu_getmap(devhandle,
566 HV_PCI_TSBID(0, i),
567 &io_attrs, &ra);
David S. Millere7a04532006-02-15 22:25:27 -0800568 if (ret == HV_EOK) {
David S. Millerc2a5a462006-06-22 00:01:56 -0700569 if (page_in_phys_avail(ra)) {
570 pci_sun4v_iommu_demap(devhandle,
571 HV_PCI_TSBID(0, i), 1);
572 } else {
573 cnt++;
574 __set_bit(i, arena->map);
575 }
David S. Millere7a04532006-02-15 22:25:27 -0800576 }
David S. Miller18397942006-02-10 00:08:26 -0800577 }
David S. Millere7a04532006-02-15 22:25:27 -0800578
579 return cnt;
David S. Miller18397942006-02-10 00:08:26 -0800580}
581
Adrian Bunk4c622252008-02-05 03:01:43 -0800582static void __init pci_sun4v_iommu_init(struct pci_pbm_info *pbm)
David S. Millerbade5622006-02-09 22:05:54 -0800583{
David S. Miller16ce82d2007-04-26 21:08:21 -0700584 struct iommu *iommu = pbm->iommu;
David S. Millere87dc352006-06-21 18:18:47 -0700585 struct property *prop;
David S. Miller59db8102007-05-23 18:00:46 -0700586 unsigned long num_tsb_entries, sz, tsbsize;
David S. Miller18397942006-02-10 00:08:26 -0800587 u32 vdma[2], dma_mask, dma_offset;
David S. Miller18397942006-02-10 00:08:26 -0800588
David S. Millere87dc352006-06-21 18:18:47 -0700589 prop = of_find_property(pbm->prom_node, "virtual-dma", NULL);
590 if (prop) {
591 u32 *val = prop->value;
592
593 vdma[0] = val[0];
594 vdma[1] = val[1];
595 } else {
David S. Miller18397942006-02-10 00:08:26 -0800596 /* No property, use default values. */
597 vdma[0] = 0x80000000;
598 vdma[1] = 0x80000000;
599 }
600
David S. Miller59db8102007-05-23 18:00:46 -0700601 if ((vdma[0] | vdma[1]) & ~IO_PAGE_MASK) {
602 prom_printf("PCI-SUN4V: strange virtual-dma[%08x:%08x].\n",
603 vdma[0], vdma[1]);
604 prom_halt();
David S. Miller18397942006-02-10 00:08:26 -0800605 };
606
David S. Miller59db8102007-05-23 18:00:46 -0700607 dma_mask = (roundup_pow_of_two(vdma[1]) - 1UL);
608 num_tsb_entries = vdma[1] / IO_PAGE_SIZE;
609 tsbsize = num_tsb_entries * sizeof(iopte_t);
David S. Miller18397942006-02-10 00:08:26 -0800610
611 dma_offset = vdma[0];
612
613 /* Setup initial software IOMMU state. */
614 spin_lock_init(&iommu->lock);
615 iommu->ctx_lowest_free = 1;
616 iommu->page_table_map_base = dma_offset;
617 iommu->dma_addr_mask = dma_mask;
618
619 /* Allocate and initialize the free area map. */
David S. Miller59db8102007-05-23 18:00:46 -0700620 sz = (num_tsb_entries + 7) / 8;
David S. Miller18397942006-02-10 00:08:26 -0800621 sz = (sz + 7UL) & ~7UL;
Yan Burman982c2062006-11-30 17:13:09 -0800622 iommu->arena.map = kzalloc(sz, GFP_KERNEL);
David S. Miller18397942006-02-10 00:08:26 -0800623 if (!iommu->arena.map) {
624 prom_printf("PCI_IOMMU: Error, kmalloc(arena.map) failed.\n");
625 prom_halt();
626 }
David S. Miller18397942006-02-10 00:08:26 -0800627 iommu->arena.limit = num_tsb_entries;
628
David S. Millere7a04532006-02-15 22:25:27 -0800629 sz = probe_existing_entries(pbm, iommu);
David S. Millerc2a5a462006-06-22 00:01:56 -0700630 if (sz)
631 printk("%s: Imported %lu TSB entries from OBP\n",
632 pbm->name, sz);
David S. Millerbade5622006-02-09 22:05:54 -0800633}
634
David S. Miller35a17eb2007-02-10 17:41:02 -0800635#ifdef CONFIG_PCI_MSI
636struct pci_sun4v_msiq_entry {
637 u64 version_type;
638#define MSIQ_VERSION_MASK 0xffffffff00000000UL
639#define MSIQ_VERSION_SHIFT 32
640#define MSIQ_TYPE_MASK 0x00000000000000ffUL
641#define MSIQ_TYPE_SHIFT 0
642#define MSIQ_TYPE_NONE 0x00
643#define MSIQ_TYPE_MSG 0x01
644#define MSIQ_TYPE_MSI32 0x02
645#define MSIQ_TYPE_MSI64 0x03
646#define MSIQ_TYPE_INTX 0x08
647#define MSIQ_TYPE_NONE2 0xff
648
649 u64 intx_sysino;
650 u64 reserved1;
651 u64 stick;
652 u64 req_id; /* bus/device/func */
653#define MSIQ_REQID_BUS_MASK 0xff00UL
654#define MSIQ_REQID_BUS_SHIFT 8
655#define MSIQ_REQID_DEVICE_MASK 0x00f8UL
656#define MSIQ_REQID_DEVICE_SHIFT 3
657#define MSIQ_REQID_FUNC_MASK 0x0007UL
658#define MSIQ_REQID_FUNC_SHIFT 0
659
660 u64 msi_address;
661
Simon Arlotte5dd42e2007-05-11 13:52:08 -0700662 /* The format of this value is message type dependent.
David S. Miller35a17eb2007-02-10 17:41:02 -0800663 * For MSI bits 15:0 are the data from the MSI packet.
664 * For MSI-X bits 31:0 are the data from the MSI packet.
665 * For MSG, the message code and message routing code where:
666 * bits 39:32 is the bus/device/fn of the msg target-id
667 * bits 18:16 is the message routing code
668 * bits 7:0 is the message code
669 * For INTx the low order 2-bits are:
670 * 00 - INTA
671 * 01 - INTB
672 * 10 - INTC
673 * 11 - INTD
674 */
675 u64 msi_data;
676
677 u64 reserved2;
678};
679
David S. Miller759f89e2007-10-11 03:16:13 -0700680static int pci_sun4v_get_head(struct pci_pbm_info *pbm, unsigned long msiqid,
681 unsigned long *head)
David S. Miller35a17eb2007-02-10 17:41:02 -0800682{
David S. Miller759f89e2007-10-11 03:16:13 -0700683 unsigned long err, limit;
David S. Miller35a17eb2007-02-10 17:41:02 -0800684
David S. Miller759f89e2007-10-11 03:16:13 -0700685 err = pci_sun4v_msiq_gethead(pbm->devhandle, msiqid, head);
David S. Miller35a17eb2007-02-10 17:41:02 -0800686 if (unlikely(err))
David S. Miller759f89e2007-10-11 03:16:13 -0700687 return -ENXIO;
David S. Miller35a17eb2007-02-10 17:41:02 -0800688
David S. Miller759f89e2007-10-11 03:16:13 -0700689 limit = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
690 if (unlikely(*head >= limit))
691 return -EFBIG;
David S. Miller35a17eb2007-02-10 17:41:02 -0800692
693 return 0;
694}
695
David S. Miller759f89e2007-10-11 03:16:13 -0700696static int pci_sun4v_dequeue_msi(struct pci_pbm_info *pbm,
697 unsigned long msiqid, unsigned long *head,
698 unsigned long *msi)
David S. Miller35a17eb2007-02-10 17:41:02 -0800699{
David S. Miller759f89e2007-10-11 03:16:13 -0700700 struct pci_sun4v_msiq_entry *ep;
701 unsigned long err, type;
702
703 /* Note: void pointer arithmetic, 'head' is a byte offset */
704 ep = (pbm->msi_queues + ((msiqid - pbm->msiq_first) *
705 (pbm->msiq_ent_count *
706 sizeof(struct pci_sun4v_msiq_entry))) +
707 *head);
708
709 if ((ep->version_type & MSIQ_TYPE_MASK) == 0)
710 return 0;
711
712 type = (ep->version_type & MSIQ_TYPE_MASK) >> MSIQ_TYPE_SHIFT;
713 if (unlikely(type != MSIQ_TYPE_MSI32 &&
714 type != MSIQ_TYPE_MSI64))
715 return -EINVAL;
716
717 *msi = ep->msi_data;
718
719 err = pci_sun4v_msi_setstate(pbm->devhandle,
720 ep->msi_data /* msi_num */,
721 HV_MSISTATE_IDLE);
722 if (unlikely(err))
723 return -ENXIO;
724
725 /* Clear the entry. */
726 ep->version_type &= ~MSIQ_TYPE_MASK;
727
728 (*head) += sizeof(struct pci_sun4v_msiq_entry);
729 if (*head >=
730 (pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry)))
731 *head = 0;
732
733 return 1;
David S. Miller35a17eb2007-02-10 17:41:02 -0800734}
735
David S. Miller759f89e2007-10-11 03:16:13 -0700736static int pci_sun4v_set_head(struct pci_pbm_info *pbm, unsigned long msiqid,
737 unsigned long head)
738{
739 unsigned long err;
740
741 err = pci_sun4v_msiq_sethead(pbm->devhandle, msiqid, head);
742 if (unlikely(err))
743 return -EINVAL;
744
745 return 0;
746}
747
748static int pci_sun4v_msi_setup(struct pci_pbm_info *pbm, unsigned long msiqid,
749 unsigned long msi, int is_msi64)
750{
751 if (pci_sun4v_msi_setmsiq(pbm->devhandle, msi, msiqid,
752 (is_msi64 ?
753 HV_MSITYPE_MSI64 : HV_MSITYPE_MSI32)))
754 return -ENXIO;
755 if (pci_sun4v_msi_setstate(pbm->devhandle, msi, HV_MSISTATE_IDLE))
756 return -ENXIO;
757 if (pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_VALID))
758 return -ENXIO;
759 return 0;
760}
761
762static int pci_sun4v_msi_teardown(struct pci_pbm_info *pbm, unsigned long msi)
763{
764 unsigned long err, msiqid;
765
766 err = pci_sun4v_msi_getmsiq(pbm->devhandle, msi, &msiqid);
767 if (err)
768 return -ENXIO;
769
770 pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_INVALID);
771
772 return 0;
773}
774
775static int pci_sun4v_msiq_alloc(struct pci_pbm_info *pbm)
David S. Miller35a17eb2007-02-10 17:41:02 -0800776{
777 unsigned long q_size, alloc_size, pages, order;
778 int i;
779
780 q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
781 alloc_size = (pbm->msiq_num * q_size);
782 order = get_order(alloc_size);
783 pages = __get_free_pages(GFP_KERNEL | __GFP_COMP, order);
784 if (pages == 0UL) {
785 printk(KERN_ERR "MSI: Cannot allocate MSI queues (o=%lu).\n",
786 order);
787 return -ENOMEM;
788 }
789 memset((char *)pages, 0, PAGE_SIZE << order);
790 pbm->msi_queues = (void *) pages;
791
792 for (i = 0; i < pbm->msiq_num; i++) {
793 unsigned long err, base = __pa(pages + (i * q_size));
794 unsigned long ret1, ret2;
795
796 err = pci_sun4v_msiq_conf(pbm->devhandle,
797 pbm->msiq_first + i,
798 base, pbm->msiq_ent_count);
799 if (err) {
800 printk(KERN_ERR "MSI: msiq register fails (err=%lu)\n",
801 err);
802 goto h_error;
803 }
804
805 err = pci_sun4v_msiq_info(pbm->devhandle,
806 pbm->msiq_first + i,
807 &ret1, &ret2);
808 if (err) {
809 printk(KERN_ERR "MSI: Cannot read msiq (err=%lu)\n",
810 err);
811 goto h_error;
812 }
813 if (ret1 != base || ret2 != pbm->msiq_ent_count) {
814 printk(KERN_ERR "MSI: Bogus qconf "
815 "expected[%lx:%x] got[%lx:%lx]\n",
816 base, pbm->msiq_ent_count,
817 ret1, ret2);
818 goto h_error;
819 }
820 }
821
822 return 0;
823
824h_error:
825 free_pages(pages, order);
826 return -EINVAL;
827}
828
David S. Miller759f89e2007-10-11 03:16:13 -0700829static void pci_sun4v_msiq_free(struct pci_pbm_info *pbm)
David S. Miller35a17eb2007-02-10 17:41:02 -0800830{
David S. Miller759f89e2007-10-11 03:16:13 -0700831 unsigned long q_size, alloc_size, pages, order;
David S. Miller35a17eb2007-02-10 17:41:02 -0800832 int i;
833
David S. Miller759f89e2007-10-11 03:16:13 -0700834 for (i = 0; i < pbm->msiq_num; i++) {
835 unsigned long msiqid = pbm->msiq_first + i;
836
837 (void) pci_sun4v_msiq_conf(pbm->devhandle, msiqid, 0UL, 0);
David S. Miller35a17eb2007-02-10 17:41:02 -0800838 }
839
David S. Miller759f89e2007-10-11 03:16:13 -0700840 q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
841 alloc_size = (pbm->msiq_num * q_size);
842 order = get_order(alloc_size);
843
844 pages = (unsigned long) pbm->msi_queues;
845
846 free_pages(pages, order);
847
848 pbm->msi_queues = NULL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800849}
850
David S. Miller759f89e2007-10-11 03:16:13 -0700851static int pci_sun4v_msiq_build_irq(struct pci_pbm_info *pbm,
852 unsigned long msiqid,
853 unsigned long devino)
David S. Miller35a17eb2007-02-10 17:41:02 -0800854{
David S. Miller759f89e2007-10-11 03:16:13 -0700855 unsigned int virt_irq = sun4v_build_irq(pbm->devhandle, devino);
David S. Miller35a17eb2007-02-10 17:41:02 -0800856
David S. Miller759f89e2007-10-11 03:16:13 -0700857 if (!virt_irq)
858 return -ENOMEM;
David S. Miller35a17eb2007-02-10 17:41:02 -0800859
David S. Miller35a17eb2007-02-10 17:41:02 -0800860 if (pci_sun4v_msiq_setstate(pbm->devhandle, msiqid, HV_MSIQSTATE_IDLE))
David S. Miller759f89e2007-10-11 03:16:13 -0700861 return -EINVAL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800862 if (pci_sun4v_msiq_setvalid(pbm->devhandle, msiqid, HV_MSIQ_VALID))
David S. Miller759f89e2007-10-11 03:16:13 -0700863 return -EINVAL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800864
David S. Miller759f89e2007-10-11 03:16:13 -0700865 return virt_irq;
David S. Miller35a17eb2007-02-10 17:41:02 -0800866}
867
David S. Miller759f89e2007-10-11 03:16:13 -0700868static const struct sparc64_msiq_ops pci_sun4v_msiq_ops = {
869 .get_head = pci_sun4v_get_head,
870 .dequeue_msi = pci_sun4v_dequeue_msi,
871 .set_head = pci_sun4v_set_head,
872 .msi_setup = pci_sun4v_msi_setup,
873 .msi_teardown = pci_sun4v_msi_teardown,
874 .msiq_alloc = pci_sun4v_msiq_alloc,
875 .msiq_free = pci_sun4v_msiq_free,
876 .msiq_build_irq = pci_sun4v_msiq_build_irq,
877};
David S. Millere9870c42007-05-07 23:28:50 -0700878
879static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
880{
David S. Miller759f89e2007-10-11 03:16:13 -0700881 sparc64_pbm_msi_init(pbm, &pci_sun4v_msiq_ops);
David S. Millere9870c42007-05-07 23:28:50 -0700882}
David S. Miller35a17eb2007-02-10 17:41:02 -0800883#else /* CONFIG_PCI_MSI */
884static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
885{
886}
887#endif /* !(CONFIG_PCI_MSI) */
888
Sam Ravnborga1f35ba2008-01-21 17:22:46 -0800889static void __init pci_sun4v_pbm_init(struct pci_controller_info *p,
890 struct device_node *dp, u32 devhandle)
David S. Millerbade5622006-02-09 22:05:54 -0800891{
892 struct pci_pbm_info *pbm;
David S. Millerbade5622006-02-09 22:05:54 -0800893
David S. Miller38337892006-02-12 22:06:53 -0800894 if (devhandle & 0x40)
895 pbm = &p->pbm_B;
896 else
897 pbm = &p->pbm_A;
David S. Millerbade5622006-02-09 22:05:54 -0800898
David S. Miller34768bc2007-05-07 23:06:27 -0700899 pbm->next = pci_pbm_root;
900 pci_pbm_root = pbm;
901
902 pbm->scan_bus = pci_sun4v_scan_bus;
David S. Millerca3dd882007-05-09 02:35:27 -0700903 pbm->pci_ops = &sun4v_pci_ops;
904 pbm->config_space_reg_bits = 12;
David S. Miller34768bc2007-05-07 23:06:27 -0700905
David S. Miller6c108f12007-05-07 23:49:01 -0700906 pbm->index = pci_num_pbms++;
907
David S. Millerbade5622006-02-09 22:05:54 -0800908 pbm->parent = p;
David S. Millere87dc352006-06-21 18:18:47 -0700909 pbm->prom_node = dp;
David S. Millerbade5622006-02-09 22:05:54 -0800910
David S. Miller38337892006-02-12 22:06:53 -0800911 pbm->devhandle = devhandle;
David S. Millerbade5622006-02-09 22:05:54 -0800912
David S. Millere87dc352006-06-21 18:18:47 -0700913 pbm->name = dp->full_name;
David S. Millerbade5622006-02-09 22:05:54 -0800914
David S. Millere87dc352006-06-21 18:18:47 -0700915 printk("%s: SUN4V PCI Bus Module\n", pbm->name);
David S. Millerbade5622006-02-09 22:05:54 -0800916
David S. Miller9fd8b642007-03-08 21:55:49 -0800917 pci_determine_mem_io_space(pbm);
David S. Millerbade5622006-02-09 22:05:54 -0800918
David S. Millercfa06522007-05-07 21:51:41 -0700919 pci_get_pbm_props(pbm);
David S. Millerbade5622006-02-09 22:05:54 -0800920 pci_sun4v_iommu_init(pbm);
David S. Miller35a17eb2007-02-10 17:41:02 -0800921 pci_sun4v_msi_init(pbm);
David S. Millerbade5622006-02-09 22:05:54 -0800922}
923
Sam Ravnborgf0429bf2007-07-20 17:19:56 -0700924void __init sun4v_pci_init(struct device_node *dp, char *model_name)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800925{
David S. Millere01c0d62007-05-25 01:04:15 -0700926 static int hvapi_negotiated = 0;
David S. Millerbade5622006-02-09 22:05:54 -0800927 struct pci_controller_info *p;
David S. Miller34768bc2007-05-07 23:06:27 -0700928 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700929 struct iommu *iommu;
David S. Millere87dc352006-06-21 18:18:47 -0700930 struct property *prop;
931 struct linux_prom64_registers *regs;
David S. Miller7c8f4862006-02-13 21:50:27 -0800932 u32 devhandle;
933 int i;
David S. Miller38337892006-02-12 22:06:53 -0800934
David S. Millere01c0d62007-05-25 01:04:15 -0700935 if (!hvapi_negotiated++) {
936 int err = sun4v_hvapi_register(HV_GRP_PCI,
937 vpci_major,
938 &vpci_minor);
939
940 if (err) {
941 prom_printf("SUN4V_PCI: Could not register hvapi, "
942 "err=%d\n", err);
943 prom_halt();
944 }
945 printk("SUN4V_PCI: Registered hvapi major[%lu] minor[%lu]\n",
946 vpci_major, vpci_minor);
David S. Millerad7ad572007-07-27 22:39:14 -0700947
948 dma_ops = &sun4v_dma_ops;
David S. Millere01c0d62007-05-25 01:04:15 -0700949 }
950
David S. Millere87dc352006-06-21 18:18:47 -0700951 prop = of_find_property(dp, "reg", NULL);
Cyrill Gorcunov75c6d142007-11-20 17:32:19 -0800952 if (!prop) {
953 prom_printf("SUN4V_PCI: Could not find config registers\n");
954 prom_halt();
955 }
David S. Millere87dc352006-06-21 18:18:47 -0700956 regs = prop->value;
957
958 devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff;
David S. Miller38337892006-02-12 22:06:53 -0800959
David S. Miller34768bc2007-05-07 23:06:27 -0700960 for (pbm = pci_pbm_root; pbm; pbm = pbm->next) {
David S. Miller0b522492006-02-12 22:29:36 -0800961 if (pbm->devhandle == (devhandle ^ 0x40)) {
David S. Miller34768bc2007-05-07 23:06:27 -0700962 pci_sun4v_pbm_init(pbm->parent, dp, devhandle);
David S. Miller0b522492006-02-12 22:29:36 -0800963 return;
964 }
David S. Miller38337892006-02-12 22:06:53 -0800965 }
David S. Millerbade5622006-02-09 22:05:54 -0800966
KAMEZAWA Hiroyukia283a522006-04-10 22:52:52 -0700967 for_each_possible_cpu(i) {
David S. Miller7c8f4862006-02-13 21:50:27 -0800968 unsigned long page = get_zeroed_page(GFP_ATOMIC);
969
970 if (!page)
971 goto fatal_memory_error;
972
David S. Millerad7ad572007-07-27 22:39:14 -0700973 per_cpu(iommu_batch, i).pglist = (u64 *) page;
David S. Millerbade5622006-02-09 22:05:54 -0800974 }
David S. Miller7c8f4862006-02-13 21:50:27 -0800975
Yan Burman982c2062006-11-30 17:13:09 -0800976 p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC);
David S. Miller7c8f4862006-02-13 21:50:27 -0800977 if (!p)
978 goto fatal_memory_error;
979
David S. Miller16ce82d2007-04-26 21:08:21 -0700980 iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC);
David S. Miller7c8f4862006-02-13 21:50:27 -0800981 if (!iommu)
982 goto fatal_memory_error;
983
David S. Millerbade5622006-02-09 22:05:54 -0800984 p->pbm_A.iommu = iommu;
985
David S. Miller16ce82d2007-04-26 21:08:21 -0700986 iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC);
David S. Miller7c8f4862006-02-13 21:50:27 -0800987 if (!iommu)
988 goto fatal_memory_error;
989
David S. Millerbade5622006-02-09 22:05:54 -0800990 p->pbm_B.iommu = iommu;
991
David S. Millere87dc352006-06-21 18:18:47 -0700992 pci_sun4v_pbm_init(p, dp, devhandle);
David S. Miller7c8f4862006-02-13 21:50:27 -0800993 return;
994
995fatal_memory_error:
996 prom_printf("SUN4V_PCI: Fatal memory allocation error.\n");
997 prom_halt();
David S. Miller8f6a93a2006-02-09 21:32:07 -0800998}