blob: 61baf8dc095e2d2631e7958b4473d419524e47d9 [file] [log] [blame]
David S. Miller8f6a93a2006-02-09 21:32:07 -08001/* pci_sun4v.c: SUN4V specific PCI controller support.
2 *
David S. Miller9fd8b642007-03-08 21:55:49 -08003 * Copyright (C) 2006, 2007 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
92/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -070093static inline long iommu_batch_add(u64 phys_page)
David S. Miller6a32fd42006-02-19 22:21:32 -080094{
David S. Millerad7ad572007-07-27 22:39:14 -070095 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
David S. Miller6a32fd42006-02-19 22:21:32 -080096
97 BUG_ON(p->npages >= PGLIST_NENTS);
98
99 p->pglist[p->npages++] = phys_page;
100 if (p->npages == PGLIST_NENTS)
David S. Millerad7ad572007-07-27 22:39:14 -0700101 return iommu_batch_flush(p);
David S. Miller6a32fd42006-02-19 22:21:32 -0800102
103 return 0;
104}
105
106/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -0700107static inline long iommu_batch_end(void)
David S. Miller6a32fd42006-02-19 22:21:32 -0800108{
David S. Millerad7ad572007-07-27 22:39:14 -0700109 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
David S. Miller6a32fd42006-02-19 22:21:32 -0800110
111 BUG_ON(p->npages >= PGLIST_NENTS);
112
David S. Millerad7ad572007-07-27 22:39:14 -0700113 return iommu_batch_flush(p);
David S. Miller6a32fd42006-02-19 22:21:32 -0800114}
David S. Miller18397942006-02-10 00:08:26 -0800115
David S. Millerad7ad572007-07-27 22:39:14 -0700116static long arena_alloc(struct iommu_arena *arena, unsigned long npages)
David S. Miller18397942006-02-10 00:08:26 -0800117{
118 unsigned long n, i, start, end, limit;
119 int pass;
120
121 limit = arena->limit;
122 start = arena->hint;
123 pass = 0;
124
125again:
126 n = find_next_zero_bit(arena->map, limit, start);
127 end = n + npages;
128 if (unlikely(end >= limit)) {
129 if (likely(pass < 1)) {
130 limit = start;
131 start = 0;
132 pass++;
133 goto again;
134 } else {
135 /* Scanned the whole thing, give up. */
136 return -1;
137 }
138 }
139
140 for (i = n; i < end; i++) {
141 if (test_bit(i, arena->map)) {
142 start = i + 1;
143 goto again;
144 }
145 }
146
147 for (i = n; i < end; i++)
148 __set_bit(i, arena->map);
149
150 arena->hint = end;
151
152 return n;
153}
154
David S. Millerad7ad572007-07-27 22:39:14 -0700155static void arena_free(struct iommu_arena *arena, unsigned long base,
156 unsigned long npages)
David S. Miller18397942006-02-10 00:08:26 -0800157{
158 unsigned long i;
159
160 for (i = base; i < (base + npages); i++)
161 __clear_bit(i, arena->map);
162}
163
David S. Millerad7ad572007-07-27 22:39:14 -0700164static void *dma_4v_alloc_coherent(struct device *dev, size_t size,
165 dma_addr_t *dma_addrp, gfp_t gfp)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800166{
David S. Miller16ce82d2007-04-26 21:08:21 -0700167 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800168 unsigned long flags, order, first_page, npages, n;
David S. Miller18397942006-02-10 00:08:26 -0800169 void *ret;
170 long entry;
David S. Miller18397942006-02-10 00:08:26 -0800171
172 size = IO_PAGE_ALIGN(size);
173 order = get_order(size);
David S. Miller6a32fd42006-02-19 22:21:32 -0800174 if (unlikely(order >= MAX_ORDER))
David S. Miller18397942006-02-10 00:08:26 -0800175 return NULL;
176
177 npages = size >> IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800178
David S. Miller42f14232006-05-23 02:07:22 -0700179 first_page = __get_free_pages(gfp, order);
David S. Miller6a32fd42006-02-19 22:21:32 -0800180 if (unlikely(first_page == 0UL))
David S. Miller18397942006-02-10 00:08:26 -0800181 return NULL;
David S. Millere7a04532006-02-15 22:25:27 -0800182
David S. Miller18397942006-02-10 00:08:26 -0800183 memset((char *)first_page, 0, PAGE_SIZE << order);
184
David S. Millerad7ad572007-07-27 22:39:14 -0700185 iommu = dev->archdata.iommu;
David S. Miller18397942006-02-10 00:08:26 -0800186
187 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerad7ad572007-07-27 22:39:14 -0700188 entry = arena_alloc(&iommu->arena, npages);
David S. Miller18397942006-02-10 00:08:26 -0800189 spin_unlock_irqrestore(&iommu->lock, flags);
190
David S. Miller6a32fd42006-02-19 22:21:32 -0800191 if (unlikely(entry < 0L))
192 goto arena_alloc_fail;
David S. Miller18397942006-02-10 00:08:26 -0800193
194 *dma_addrp = (iommu->page_table_map_base +
195 (entry << IO_PAGE_SHIFT));
196 ret = (void *) first_page;
197 first_page = __pa(first_page);
198
David S. Miller6a32fd42006-02-19 22:21:32 -0800199 local_irq_save(flags);
David S. Miller18397942006-02-10 00:08:26 -0800200
David S. Millerad7ad572007-07-27 22:39:14 -0700201 iommu_batch_start(dev,
202 (HV_PCI_MAP_ATTR_READ |
203 HV_PCI_MAP_ATTR_WRITE),
204 entry);
David S. Miller18397942006-02-10 00:08:26 -0800205
David S. Miller6a32fd42006-02-19 22:21:32 -0800206 for (n = 0; n < npages; n++) {
David S. Millerad7ad572007-07-27 22:39:14 -0700207 long err = iommu_batch_add(first_page + (n * PAGE_SIZE));
David S. Miller6a32fd42006-02-19 22:21:32 -0800208 if (unlikely(err < 0L))
209 goto iommu_map_fail;
210 }
David S. Miller18397942006-02-10 00:08:26 -0800211
David S. Millerad7ad572007-07-27 22:39:14 -0700212 if (unlikely(iommu_batch_end() < 0L))
David S. Miller6a32fd42006-02-19 22:21:32 -0800213 goto iommu_map_fail;
David S. Miller18397942006-02-10 00:08:26 -0800214
David S. Miller6a32fd42006-02-19 22:21:32 -0800215 local_irq_restore(flags);
David S. Miller18397942006-02-10 00:08:26 -0800216
217 return ret;
David S. Miller6a32fd42006-02-19 22:21:32 -0800218
219iommu_map_fail:
220 /* Interrupts are disabled. */
221 spin_lock(&iommu->lock);
David S. Millerad7ad572007-07-27 22:39:14 -0700222 arena_free(&iommu->arena, entry, npages);
David S. Miller6a32fd42006-02-19 22:21:32 -0800223 spin_unlock_irqrestore(&iommu->lock, flags);
224
225arena_alloc_fail:
226 free_pages(first_page, order);
227 return NULL;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800228}
229
David S. Millerad7ad572007-07-27 22:39:14 -0700230static void dma_4v_free_coherent(struct device *dev, size_t size, void *cpu,
231 dma_addr_t dvma)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800232{
David S. Millera2fb23a2007-02-28 23:35:04 -0800233 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700234 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800235 unsigned long flags, order, npages, entry;
236 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800237
238 npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT;
David S. Millerad7ad572007-07-27 22:39:14 -0700239 iommu = dev->archdata.iommu;
240 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800241 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800242 entry = ((dvma - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
243
244 spin_lock_irqsave(&iommu->lock, flags);
245
David S. Millerad7ad572007-07-27 22:39:14 -0700246 arena_free(&iommu->arena, entry, npages);
David S. Miller18397942006-02-10 00:08:26 -0800247
248 do {
249 unsigned long num;
250
251 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
252 npages);
253 entry += num;
254 npages -= num;
255 } while (npages != 0);
256
257 spin_unlock_irqrestore(&iommu->lock, flags);
258
259 order = get_order(size);
260 if (order < 10)
261 free_pages((unsigned long)cpu, order);
David S. Miller8f6a93a2006-02-09 21:32:07 -0800262}
263
David S. Millerad7ad572007-07-27 22:39:14 -0700264static dma_addr_t dma_4v_map_single(struct device *dev, void *ptr, size_t sz,
265 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800266{
David S. Miller16ce82d2007-04-26 21:08:21 -0700267 struct iommu *iommu;
David S. Miller18397942006-02-10 00:08:26 -0800268 unsigned long flags, npages, oaddr;
David S. Miller7c8f4862006-02-13 21:50:27 -0800269 unsigned long i, base_paddr;
David S. Miller6a32fd42006-02-19 22:21:32 -0800270 u32 bus_addr, ret;
David S. Miller18397942006-02-10 00:08:26 -0800271 unsigned long prot;
272 long entry;
David S. Miller18397942006-02-10 00:08:26 -0800273
David S. Millerad7ad572007-07-27 22:39:14 -0700274 iommu = dev->archdata.iommu;
David S. Miller18397942006-02-10 00:08:26 -0800275
David S. Millerad7ad572007-07-27 22:39:14 -0700276 if (unlikely(direction == DMA_NONE))
David S. Miller18397942006-02-10 00:08:26 -0800277 goto bad;
278
279 oaddr = (unsigned long)ptr;
280 npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK);
281 npages >>= IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800282
283 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerad7ad572007-07-27 22:39:14 -0700284 entry = arena_alloc(&iommu->arena, npages);
David S. Miller18397942006-02-10 00:08:26 -0800285 spin_unlock_irqrestore(&iommu->lock, flags);
286
287 if (unlikely(entry < 0L))
288 goto bad;
289
290 bus_addr = (iommu->page_table_map_base +
291 (entry << IO_PAGE_SHIFT));
292 ret = bus_addr | (oaddr & ~IO_PAGE_MASK);
293 base_paddr = __pa(oaddr & IO_PAGE_MASK);
294 prot = HV_PCI_MAP_ATTR_READ;
David S. Millerad7ad572007-07-27 22:39:14 -0700295 if (direction != DMA_TO_DEVICE)
David S. Miller18397942006-02-10 00:08:26 -0800296 prot |= HV_PCI_MAP_ATTR_WRITE;
297
David S. Miller6a32fd42006-02-19 22:21:32 -0800298 local_irq_save(flags);
David S. Miller18397942006-02-10 00:08:26 -0800299
David S. Millerad7ad572007-07-27 22:39:14 -0700300 iommu_batch_start(dev, prot, entry);
David S. Miller18397942006-02-10 00:08:26 -0800301
David S. Miller6a32fd42006-02-19 22:21:32 -0800302 for (i = 0; i < npages; i++, base_paddr += IO_PAGE_SIZE) {
David S. Millerad7ad572007-07-27 22:39:14 -0700303 long err = iommu_batch_add(base_paddr);
David S. Miller6a32fd42006-02-19 22:21:32 -0800304 if (unlikely(err < 0L))
305 goto iommu_map_fail;
306 }
David S. Millerad7ad572007-07-27 22:39:14 -0700307 if (unlikely(iommu_batch_end() < 0L))
David S. Miller6a32fd42006-02-19 22:21:32 -0800308 goto iommu_map_fail;
David S. Miller18397942006-02-10 00:08:26 -0800309
David S. Miller6a32fd42006-02-19 22:21:32 -0800310 local_irq_restore(flags);
David S. Miller18397942006-02-10 00:08:26 -0800311
312 return ret;
313
314bad:
315 if (printk_ratelimit())
316 WARN_ON(1);
David S. Millerad7ad572007-07-27 22:39:14 -0700317 return DMA_ERROR_CODE;
David S. Miller6a32fd42006-02-19 22:21:32 -0800318
319iommu_map_fail:
320 /* Interrupts are disabled. */
321 spin_lock(&iommu->lock);
David S. Millerad7ad572007-07-27 22:39:14 -0700322 arena_free(&iommu->arena, entry, npages);
David S. Miller6a32fd42006-02-19 22:21:32 -0800323 spin_unlock_irqrestore(&iommu->lock, flags);
324
David S. Millerad7ad572007-07-27 22:39:14 -0700325 return DMA_ERROR_CODE;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800326}
327
David S. Millerad7ad572007-07-27 22:39:14 -0700328static void dma_4v_unmap_single(struct device *dev, dma_addr_t bus_addr,
329 size_t sz, enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800330{
David S. Millera2fb23a2007-02-28 23:35:04 -0800331 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700332 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800333 unsigned long flags, npages;
David S. Miller18397942006-02-10 00:08:26 -0800334 long entry;
David S. Miller7c8f4862006-02-13 21:50:27 -0800335 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800336
David S. Millerad7ad572007-07-27 22:39:14 -0700337 if (unlikely(direction == DMA_NONE)) {
David S. Miller18397942006-02-10 00:08:26 -0800338 if (printk_ratelimit())
339 WARN_ON(1);
340 return;
341 }
342
David S. Millerad7ad572007-07-27 22:39:14 -0700343 iommu = dev->archdata.iommu;
344 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800345 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800346
347 npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
348 npages >>= IO_PAGE_SHIFT;
349 bus_addr &= IO_PAGE_MASK;
350
351 spin_lock_irqsave(&iommu->lock, flags);
352
353 entry = (bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT;
David S. Millerad7ad572007-07-27 22:39:14 -0700354 arena_free(&iommu->arena, entry, npages);
David S. Miller18397942006-02-10 00:08:26 -0800355
356 do {
357 unsigned long num;
358
359 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
360 npages);
361 entry += num;
362 npages -= num;
363 } while (npages != 0);
364
365 spin_unlock_irqrestore(&iommu->lock, flags);
366}
367
David S. Millerad7ad572007-07-27 22:39:14 -0700368static int dma_4v_map_sg(struct device *dev, struct scatterlist *sglist,
369 int nelems, enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800370{
David S. Miller38192d52008-02-06 03:50:26 -0800371 unsigned long flags, npages, i, prot;
372 struct scatterlist *sg;
David S. Miller16ce82d2007-04-26 21:08:21 -0700373 struct iommu *iommu;
David S. Miller6a32fd42006-02-19 22:21:32 -0800374 long entry, err;
David S. Miller38192d52008-02-06 03:50:26 -0800375 u32 dma_base;
David S. Miller18397942006-02-10 00:08:26 -0800376
377 /* Fast path single entry scatterlists. */
378 if (nelems == 1) {
379 sglist->dma_address =
Jens Axboe58b053e2007-10-22 20:02:46 +0200380 dma_4v_map_single(dev, sg_virt(sglist),
David S. Miller18397942006-02-10 00:08:26 -0800381 sglist->length, direction);
David S. Millerad7ad572007-07-27 22:39:14 -0700382 if (unlikely(sglist->dma_address == DMA_ERROR_CODE))
David S. Miller18397942006-02-10 00:08:26 -0800383 return 0;
384 sglist->dma_length = sglist->length;
385 return 1;
386 }
387
David S. Millerad7ad572007-07-27 22:39:14 -0700388 iommu = dev->archdata.iommu;
David S. Miller18397942006-02-10 00:08:26 -0800389
David S. Millerad7ad572007-07-27 22:39:14 -0700390 if (unlikely(direction == DMA_NONE))
David S. Miller18397942006-02-10 00:08:26 -0800391 goto bad;
392
David S. Miller38192d52008-02-06 03:50:26 -0800393 npages = calc_npages(sglist, nelems);
David S. Miller18397942006-02-10 00:08:26 -0800394
David S. Miller18397942006-02-10 00:08:26 -0800395 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerad7ad572007-07-27 22:39:14 -0700396 entry = arena_alloc(&iommu->arena, npages);
David S. Miller18397942006-02-10 00:08:26 -0800397 spin_unlock_irqrestore(&iommu->lock, flags);
398
399 if (unlikely(entry < 0L))
400 goto bad;
401
402 dma_base = iommu->page_table_map_base +
403 (entry << IO_PAGE_SHIFT);
404
David S. Miller18397942006-02-10 00:08:26 -0800405 prot = HV_PCI_MAP_ATTR_READ;
David S. Millerad7ad572007-07-27 22:39:14 -0700406 if (direction != DMA_TO_DEVICE)
David S. Miller18397942006-02-10 00:08:26 -0800407 prot |= HV_PCI_MAP_ATTR_WRITE;
408
David S. Miller38192d52008-02-06 03:50:26 -0800409 local_irq_save(flags);
410
411 iommu_batch_start(dev, prot, entry);
412
413 for_each_sg(sglist, sg, nelems, i) {
414 unsigned long paddr = SG_ENT_PHYS_ADDRESS(sg);
415 unsigned long slen = sg->length;
416 unsigned long this_npages;
417
418 this_npages = iommu_num_pages(paddr, slen);
419
420 sg->dma_address = dma_base | (paddr & ~IO_PAGE_MASK);
421 sg->dma_length = slen;
422
423 paddr &= IO_PAGE_MASK;
424 while (this_npages--) {
425 err = iommu_batch_add(paddr);
426 if (unlikely(err < 0L)) {
427 local_irq_restore(flags);
428 goto iommu_map_failed;
429 }
430
431 paddr += IO_PAGE_SIZE;
432 dma_base += IO_PAGE_SIZE;
433 }
434 }
435
436 err = iommu_batch_end();
437
438 local_irq_restore(flags);
439
David S. Miller6a32fd42006-02-19 22:21:32 -0800440 if (unlikely(err < 0L))
441 goto iommu_map_failed;
David S. Miller18397942006-02-10 00:08:26 -0800442
David S. Miller38192d52008-02-06 03:50:26 -0800443 return nelems;
David S. Miller18397942006-02-10 00:08:26 -0800444
445bad:
446 if (printk_ratelimit())
447 WARN_ON(1);
448 return 0;
David S. Miller6a32fd42006-02-19 22:21:32 -0800449
450iommu_map_failed:
451 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerad7ad572007-07-27 22:39:14 -0700452 arena_free(&iommu->arena, entry, npages);
David S. Miller6a32fd42006-02-19 22:21:32 -0800453 spin_unlock_irqrestore(&iommu->lock, flags);
454
455 return 0;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800456}
457
David S. Millerad7ad572007-07-27 22:39:14 -0700458static void dma_4v_unmap_sg(struct device *dev, struct scatterlist *sglist,
459 int nelems, enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800460{
David S. Miller38192d52008-02-06 03:50:26 -0800461 unsigned long flags, npages;
David S. Millera2fb23a2007-02-28 23:35:04 -0800462 struct pci_pbm_info *pbm;
David S. Miller7c8f4862006-02-13 21:50:27 -0800463 u32 devhandle, bus_addr;
David S. Miller38192d52008-02-06 03:50:26 -0800464 struct iommu *iommu;
465 long entry;
David S. Miller18397942006-02-10 00:08:26 -0800466
David S. Millerad7ad572007-07-27 22:39:14 -0700467 if (unlikely(direction == DMA_NONE)) {
David S. Miller18397942006-02-10 00:08:26 -0800468 if (printk_ratelimit())
469 WARN_ON(1);
470 }
471
David S. Millerad7ad572007-07-27 22:39:14 -0700472 iommu = dev->archdata.iommu;
473 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800474 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800475
476 bus_addr = sglist->dma_address & IO_PAGE_MASK;
Jens Axboe2c941a22007-08-07 09:37:10 +0200477
David S. Miller38192d52008-02-06 03:50:26 -0800478 npages = calc_npages(sglist, nelems);
David S. Miller18397942006-02-10 00:08:26 -0800479
480 entry = ((bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
481
482 spin_lock_irqsave(&iommu->lock, flags);
483
David S. Millerad7ad572007-07-27 22:39:14 -0700484 arena_free(&iommu->arena, entry, npages);
David S. Miller18397942006-02-10 00:08:26 -0800485
486 do {
487 unsigned long num;
488
489 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
490 npages);
491 entry += num;
492 npages -= num;
493 } while (npages != 0);
494
495 spin_unlock_irqrestore(&iommu->lock, flags);
David S. Miller8f6a93a2006-02-09 21:32:07 -0800496}
497
David S. Millerad7ad572007-07-27 22:39:14 -0700498static void dma_4v_sync_single_for_cpu(struct device *dev,
499 dma_addr_t bus_addr, size_t sz,
500 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800501{
David S. Miller18397942006-02-10 00:08:26 -0800502 /* Nothing to do... */
David S. Miller8f6a93a2006-02-09 21:32:07 -0800503}
504
David S. Millerad7ad572007-07-27 22:39:14 -0700505static void dma_4v_sync_sg_for_cpu(struct device *dev,
506 struct scatterlist *sglist, int nelems,
507 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800508{
David S. Miller18397942006-02-10 00:08:26 -0800509 /* Nothing to do... */
David S. Miller8f6a93a2006-02-09 21:32:07 -0800510}
511
David S. Millerad7ad572007-07-27 22:39:14 -0700512const struct dma_ops sun4v_dma_ops = {
513 .alloc_coherent = dma_4v_alloc_coherent,
514 .free_coherent = dma_4v_free_coherent,
515 .map_single = dma_4v_map_single,
516 .unmap_single = dma_4v_unmap_single,
517 .map_sg = dma_4v_map_sg,
518 .unmap_sg = dma_4v_unmap_sg,
519 .sync_single_for_cpu = dma_4v_sync_single_for_cpu,
520 .sync_sg_for_cpu = dma_4v_sync_sg_for_cpu,
David S. Miller8f6a93a2006-02-09 21:32:07 -0800521};
522
Sam Ravnborga1f35ba2008-01-21 17:22:46 -0800523static void __init pci_sun4v_scan_bus(struct pci_pbm_info *pbm)
David S. Millerbade5622006-02-09 22:05:54 -0800524{
David S. Millere87dc352006-06-21 18:18:47 -0700525 struct property *prop;
526 struct device_node *dp;
527
David S. Miller34768bc2007-05-07 23:06:27 -0700528 dp = pbm->prom_node;
529 prop = of_find_property(dp, "66mhz-capable", NULL);
530 pbm->is_66mhz_capable = (prop != NULL);
531 pbm->pci_bus = pci_scan_one_pbm(pbm);
David S. Millerc2609262006-02-12 22:18:52 -0800532
533 /* XXX register error interrupt handlers XXX */
David S. Millerbade5622006-02-09 22:05:54 -0800534}
535
Adrian Bunk4c622252008-02-05 03:01:43 -0800536static unsigned long __init probe_existing_entries(struct pci_pbm_info *pbm,
537 struct iommu *iommu)
David S. Miller18397942006-02-10 00:08:26 -0800538{
David S. Miller9b3627f2007-04-24 23:51:18 -0700539 struct iommu_arena *arena = &iommu->arena;
David S. Millere7a04532006-02-15 22:25:27 -0800540 unsigned long i, cnt = 0;
David S. Miller7c8f4862006-02-13 21:50:27 -0800541 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800542
543 devhandle = pbm->devhandle;
544 for (i = 0; i < arena->limit; i++) {
545 unsigned long ret, io_attrs, ra;
546
547 ret = pci_sun4v_iommu_getmap(devhandle,
548 HV_PCI_TSBID(0, i),
549 &io_attrs, &ra);
David S. Millere7a04532006-02-15 22:25:27 -0800550 if (ret == HV_EOK) {
David S. Millerc2a5a462006-06-22 00:01:56 -0700551 if (page_in_phys_avail(ra)) {
552 pci_sun4v_iommu_demap(devhandle,
553 HV_PCI_TSBID(0, i), 1);
554 } else {
555 cnt++;
556 __set_bit(i, arena->map);
557 }
David S. Millere7a04532006-02-15 22:25:27 -0800558 }
David S. Miller18397942006-02-10 00:08:26 -0800559 }
David S. Millere7a04532006-02-15 22:25:27 -0800560
561 return cnt;
David S. Miller18397942006-02-10 00:08:26 -0800562}
563
Adrian Bunk4c622252008-02-05 03:01:43 -0800564static void __init pci_sun4v_iommu_init(struct pci_pbm_info *pbm)
David S. Millerbade5622006-02-09 22:05:54 -0800565{
David S. Miller16ce82d2007-04-26 21:08:21 -0700566 struct iommu *iommu = pbm->iommu;
David S. Millere87dc352006-06-21 18:18:47 -0700567 struct property *prop;
David S. Miller59db8102007-05-23 18:00:46 -0700568 unsigned long num_tsb_entries, sz, tsbsize;
David S. Miller18397942006-02-10 00:08:26 -0800569 u32 vdma[2], dma_mask, dma_offset;
David S. Miller18397942006-02-10 00:08:26 -0800570
David S. Millere87dc352006-06-21 18:18:47 -0700571 prop = of_find_property(pbm->prom_node, "virtual-dma", NULL);
572 if (prop) {
573 u32 *val = prop->value;
574
575 vdma[0] = val[0];
576 vdma[1] = val[1];
577 } else {
David S. Miller18397942006-02-10 00:08:26 -0800578 /* No property, use default values. */
579 vdma[0] = 0x80000000;
580 vdma[1] = 0x80000000;
581 }
582
David S. Miller59db8102007-05-23 18:00:46 -0700583 if ((vdma[0] | vdma[1]) & ~IO_PAGE_MASK) {
584 prom_printf("PCI-SUN4V: strange virtual-dma[%08x:%08x].\n",
585 vdma[0], vdma[1]);
586 prom_halt();
David S. Miller18397942006-02-10 00:08:26 -0800587 };
588
David S. Miller59db8102007-05-23 18:00:46 -0700589 dma_mask = (roundup_pow_of_two(vdma[1]) - 1UL);
590 num_tsb_entries = vdma[1] / IO_PAGE_SIZE;
591 tsbsize = num_tsb_entries * sizeof(iopte_t);
David S. Miller18397942006-02-10 00:08:26 -0800592
593 dma_offset = vdma[0];
594
595 /* Setup initial software IOMMU state. */
596 spin_lock_init(&iommu->lock);
597 iommu->ctx_lowest_free = 1;
598 iommu->page_table_map_base = dma_offset;
599 iommu->dma_addr_mask = dma_mask;
600
601 /* Allocate and initialize the free area map. */
David S. Miller59db8102007-05-23 18:00:46 -0700602 sz = (num_tsb_entries + 7) / 8;
David S. Miller18397942006-02-10 00:08:26 -0800603 sz = (sz + 7UL) & ~7UL;
Yan Burman982c2062006-11-30 17:13:09 -0800604 iommu->arena.map = kzalloc(sz, GFP_KERNEL);
David S. Miller18397942006-02-10 00:08:26 -0800605 if (!iommu->arena.map) {
606 prom_printf("PCI_IOMMU: Error, kmalloc(arena.map) failed.\n");
607 prom_halt();
608 }
David S. Miller18397942006-02-10 00:08:26 -0800609 iommu->arena.limit = num_tsb_entries;
610
David S. Millere7a04532006-02-15 22:25:27 -0800611 sz = probe_existing_entries(pbm, iommu);
David S. Millerc2a5a462006-06-22 00:01:56 -0700612 if (sz)
613 printk("%s: Imported %lu TSB entries from OBP\n",
614 pbm->name, sz);
David S. Millerbade5622006-02-09 22:05:54 -0800615}
616
David S. Miller35a17eb2007-02-10 17:41:02 -0800617#ifdef CONFIG_PCI_MSI
618struct pci_sun4v_msiq_entry {
619 u64 version_type;
620#define MSIQ_VERSION_MASK 0xffffffff00000000UL
621#define MSIQ_VERSION_SHIFT 32
622#define MSIQ_TYPE_MASK 0x00000000000000ffUL
623#define MSIQ_TYPE_SHIFT 0
624#define MSIQ_TYPE_NONE 0x00
625#define MSIQ_TYPE_MSG 0x01
626#define MSIQ_TYPE_MSI32 0x02
627#define MSIQ_TYPE_MSI64 0x03
628#define MSIQ_TYPE_INTX 0x08
629#define MSIQ_TYPE_NONE2 0xff
630
631 u64 intx_sysino;
632 u64 reserved1;
633 u64 stick;
634 u64 req_id; /* bus/device/func */
635#define MSIQ_REQID_BUS_MASK 0xff00UL
636#define MSIQ_REQID_BUS_SHIFT 8
637#define MSIQ_REQID_DEVICE_MASK 0x00f8UL
638#define MSIQ_REQID_DEVICE_SHIFT 3
639#define MSIQ_REQID_FUNC_MASK 0x0007UL
640#define MSIQ_REQID_FUNC_SHIFT 0
641
642 u64 msi_address;
643
Simon Arlotte5dd42e2007-05-11 13:52:08 -0700644 /* The format of this value is message type dependent.
David S. Miller35a17eb2007-02-10 17:41:02 -0800645 * For MSI bits 15:0 are the data from the MSI packet.
646 * For MSI-X bits 31:0 are the data from the MSI packet.
647 * For MSG, the message code and message routing code where:
648 * bits 39:32 is the bus/device/fn of the msg target-id
649 * bits 18:16 is the message routing code
650 * bits 7:0 is the message code
651 * For INTx the low order 2-bits are:
652 * 00 - INTA
653 * 01 - INTB
654 * 10 - INTC
655 * 11 - INTD
656 */
657 u64 msi_data;
658
659 u64 reserved2;
660};
661
David S. Miller759f89e2007-10-11 03:16:13 -0700662static int pci_sun4v_get_head(struct pci_pbm_info *pbm, unsigned long msiqid,
663 unsigned long *head)
David S. Miller35a17eb2007-02-10 17:41:02 -0800664{
David S. Miller759f89e2007-10-11 03:16:13 -0700665 unsigned long err, limit;
David S. Miller35a17eb2007-02-10 17:41:02 -0800666
David S. Miller759f89e2007-10-11 03:16:13 -0700667 err = pci_sun4v_msiq_gethead(pbm->devhandle, msiqid, head);
David S. Miller35a17eb2007-02-10 17:41:02 -0800668 if (unlikely(err))
David S. Miller759f89e2007-10-11 03:16:13 -0700669 return -ENXIO;
David S. Miller35a17eb2007-02-10 17:41:02 -0800670
David S. Miller759f89e2007-10-11 03:16:13 -0700671 limit = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
672 if (unlikely(*head >= limit))
673 return -EFBIG;
David S. Miller35a17eb2007-02-10 17:41:02 -0800674
675 return 0;
676}
677
David S. Miller759f89e2007-10-11 03:16:13 -0700678static int pci_sun4v_dequeue_msi(struct pci_pbm_info *pbm,
679 unsigned long msiqid, unsigned long *head,
680 unsigned long *msi)
David S. Miller35a17eb2007-02-10 17:41:02 -0800681{
David S. Miller759f89e2007-10-11 03:16:13 -0700682 struct pci_sun4v_msiq_entry *ep;
683 unsigned long err, type;
684
685 /* Note: void pointer arithmetic, 'head' is a byte offset */
686 ep = (pbm->msi_queues + ((msiqid - pbm->msiq_first) *
687 (pbm->msiq_ent_count *
688 sizeof(struct pci_sun4v_msiq_entry))) +
689 *head);
690
691 if ((ep->version_type & MSIQ_TYPE_MASK) == 0)
692 return 0;
693
694 type = (ep->version_type & MSIQ_TYPE_MASK) >> MSIQ_TYPE_SHIFT;
695 if (unlikely(type != MSIQ_TYPE_MSI32 &&
696 type != MSIQ_TYPE_MSI64))
697 return -EINVAL;
698
699 *msi = ep->msi_data;
700
701 err = pci_sun4v_msi_setstate(pbm->devhandle,
702 ep->msi_data /* msi_num */,
703 HV_MSISTATE_IDLE);
704 if (unlikely(err))
705 return -ENXIO;
706
707 /* Clear the entry. */
708 ep->version_type &= ~MSIQ_TYPE_MASK;
709
710 (*head) += sizeof(struct pci_sun4v_msiq_entry);
711 if (*head >=
712 (pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry)))
713 *head = 0;
714
715 return 1;
David S. Miller35a17eb2007-02-10 17:41:02 -0800716}
717
David S. Miller759f89e2007-10-11 03:16:13 -0700718static int pci_sun4v_set_head(struct pci_pbm_info *pbm, unsigned long msiqid,
719 unsigned long head)
720{
721 unsigned long err;
722
723 err = pci_sun4v_msiq_sethead(pbm->devhandle, msiqid, head);
724 if (unlikely(err))
725 return -EINVAL;
726
727 return 0;
728}
729
730static int pci_sun4v_msi_setup(struct pci_pbm_info *pbm, unsigned long msiqid,
731 unsigned long msi, int is_msi64)
732{
733 if (pci_sun4v_msi_setmsiq(pbm->devhandle, msi, msiqid,
734 (is_msi64 ?
735 HV_MSITYPE_MSI64 : HV_MSITYPE_MSI32)))
736 return -ENXIO;
737 if (pci_sun4v_msi_setstate(pbm->devhandle, msi, HV_MSISTATE_IDLE))
738 return -ENXIO;
739 if (pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_VALID))
740 return -ENXIO;
741 return 0;
742}
743
744static int pci_sun4v_msi_teardown(struct pci_pbm_info *pbm, unsigned long msi)
745{
746 unsigned long err, msiqid;
747
748 err = pci_sun4v_msi_getmsiq(pbm->devhandle, msi, &msiqid);
749 if (err)
750 return -ENXIO;
751
752 pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_INVALID);
753
754 return 0;
755}
756
757static int pci_sun4v_msiq_alloc(struct pci_pbm_info *pbm)
David S. Miller35a17eb2007-02-10 17:41:02 -0800758{
759 unsigned long q_size, alloc_size, pages, order;
760 int i;
761
762 q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
763 alloc_size = (pbm->msiq_num * q_size);
764 order = get_order(alloc_size);
765 pages = __get_free_pages(GFP_KERNEL | __GFP_COMP, order);
766 if (pages == 0UL) {
767 printk(KERN_ERR "MSI: Cannot allocate MSI queues (o=%lu).\n",
768 order);
769 return -ENOMEM;
770 }
771 memset((char *)pages, 0, PAGE_SIZE << order);
772 pbm->msi_queues = (void *) pages;
773
774 for (i = 0; i < pbm->msiq_num; i++) {
775 unsigned long err, base = __pa(pages + (i * q_size));
776 unsigned long ret1, ret2;
777
778 err = pci_sun4v_msiq_conf(pbm->devhandle,
779 pbm->msiq_first + i,
780 base, pbm->msiq_ent_count);
781 if (err) {
782 printk(KERN_ERR "MSI: msiq register fails (err=%lu)\n",
783 err);
784 goto h_error;
785 }
786
787 err = pci_sun4v_msiq_info(pbm->devhandle,
788 pbm->msiq_first + i,
789 &ret1, &ret2);
790 if (err) {
791 printk(KERN_ERR "MSI: Cannot read msiq (err=%lu)\n",
792 err);
793 goto h_error;
794 }
795 if (ret1 != base || ret2 != pbm->msiq_ent_count) {
796 printk(KERN_ERR "MSI: Bogus qconf "
797 "expected[%lx:%x] got[%lx:%lx]\n",
798 base, pbm->msiq_ent_count,
799 ret1, ret2);
800 goto h_error;
801 }
802 }
803
804 return 0;
805
806h_error:
807 free_pages(pages, order);
808 return -EINVAL;
809}
810
David S. Miller759f89e2007-10-11 03:16:13 -0700811static void pci_sun4v_msiq_free(struct pci_pbm_info *pbm)
David S. Miller35a17eb2007-02-10 17:41:02 -0800812{
David S. Miller759f89e2007-10-11 03:16:13 -0700813 unsigned long q_size, alloc_size, pages, order;
David S. Miller35a17eb2007-02-10 17:41:02 -0800814 int i;
815
David S. Miller759f89e2007-10-11 03:16:13 -0700816 for (i = 0; i < pbm->msiq_num; i++) {
817 unsigned long msiqid = pbm->msiq_first + i;
818
819 (void) pci_sun4v_msiq_conf(pbm->devhandle, msiqid, 0UL, 0);
David S. Miller35a17eb2007-02-10 17:41:02 -0800820 }
821
David S. Miller759f89e2007-10-11 03:16:13 -0700822 q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
823 alloc_size = (pbm->msiq_num * q_size);
824 order = get_order(alloc_size);
825
826 pages = (unsigned long) pbm->msi_queues;
827
828 free_pages(pages, order);
829
830 pbm->msi_queues = NULL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800831}
832
David S. Miller759f89e2007-10-11 03:16:13 -0700833static int pci_sun4v_msiq_build_irq(struct pci_pbm_info *pbm,
834 unsigned long msiqid,
835 unsigned long devino)
David S. Miller35a17eb2007-02-10 17:41:02 -0800836{
David S. Miller759f89e2007-10-11 03:16:13 -0700837 unsigned int virt_irq = sun4v_build_irq(pbm->devhandle, devino);
David S. Miller35a17eb2007-02-10 17:41:02 -0800838
David S. Miller759f89e2007-10-11 03:16:13 -0700839 if (!virt_irq)
840 return -ENOMEM;
David S. Miller35a17eb2007-02-10 17:41:02 -0800841
David S. Miller35a17eb2007-02-10 17:41:02 -0800842 if (pci_sun4v_msiq_setstate(pbm->devhandle, msiqid, HV_MSIQSTATE_IDLE))
David S. Miller759f89e2007-10-11 03:16:13 -0700843 return -EINVAL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800844 if (pci_sun4v_msiq_setvalid(pbm->devhandle, msiqid, HV_MSIQ_VALID))
David S. Miller759f89e2007-10-11 03:16:13 -0700845 return -EINVAL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800846
David S. Miller759f89e2007-10-11 03:16:13 -0700847 return virt_irq;
David S. Miller35a17eb2007-02-10 17:41:02 -0800848}
849
David S. Miller759f89e2007-10-11 03:16:13 -0700850static const struct sparc64_msiq_ops pci_sun4v_msiq_ops = {
851 .get_head = pci_sun4v_get_head,
852 .dequeue_msi = pci_sun4v_dequeue_msi,
853 .set_head = pci_sun4v_set_head,
854 .msi_setup = pci_sun4v_msi_setup,
855 .msi_teardown = pci_sun4v_msi_teardown,
856 .msiq_alloc = pci_sun4v_msiq_alloc,
857 .msiq_free = pci_sun4v_msiq_free,
858 .msiq_build_irq = pci_sun4v_msiq_build_irq,
859};
David S. Millere9870c42007-05-07 23:28:50 -0700860
861static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
862{
David S. Miller759f89e2007-10-11 03:16:13 -0700863 sparc64_pbm_msi_init(pbm, &pci_sun4v_msiq_ops);
David S. Millere9870c42007-05-07 23:28:50 -0700864}
David S. Miller35a17eb2007-02-10 17:41:02 -0800865#else /* CONFIG_PCI_MSI */
866static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
867{
868}
869#endif /* !(CONFIG_PCI_MSI) */
870
Sam Ravnborga1f35ba2008-01-21 17:22:46 -0800871static void __init pci_sun4v_pbm_init(struct pci_controller_info *p,
872 struct device_node *dp, u32 devhandle)
David S. Millerbade5622006-02-09 22:05:54 -0800873{
874 struct pci_pbm_info *pbm;
David S. Millerbade5622006-02-09 22:05:54 -0800875
David S. Miller38337892006-02-12 22:06:53 -0800876 if (devhandle & 0x40)
877 pbm = &p->pbm_B;
878 else
879 pbm = &p->pbm_A;
David S. Millerbade5622006-02-09 22:05:54 -0800880
David S. Miller34768bc2007-05-07 23:06:27 -0700881 pbm->next = pci_pbm_root;
882 pci_pbm_root = pbm;
883
884 pbm->scan_bus = pci_sun4v_scan_bus;
David S. Millerca3dd882007-05-09 02:35:27 -0700885 pbm->pci_ops = &sun4v_pci_ops;
886 pbm->config_space_reg_bits = 12;
David S. Miller34768bc2007-05-07 23:06:27 -0700887
David S. Miller6c108f12007-05-07 23:49:01 -0700888 pbm->index = pci_num_pbms++;
889
David S. Millerbade5622006-02-09 22:05:54 -0800890 pbm->parent = p;
David S. Millere87dc352006-06-21 18:18:47 -0700891 pbm->prom_node = dp;
David S. Millerbade5622006-02-09 22:05:54 -0800892
David S. Miller38337892006-02-12 22:06:53 -0800893 pbm->devhandle = devhandle;
David S. Millerbade5622006-02-09 22:05:54 -0800894
David S. Millere87dc352006-06-21 18:18:47 -0700895 pbm->name = dp->full_name;
David S. Millerbade5622006-02-09 22:05:54 -0800896
David S. Millere87dc352006-06-21 18:18:47 -0700897 printk("%s: SUN4V PCI Bus Module\n", pbm->name);
David S. Millerbade5622006-02-09 22:05:54 -0800898
David S. Miller9fd8b642007-03-08 21:55:49 -0800899 pci_determine_mem_io_space(pbm);
David S. Millerbade5622006-02-09 22:05:54 -0800900
David S. Millercfa06522007-05-07 21:51:41 -0700901 pci_get_pbm_props(pbm);
David S. Millerbade5622006-02-09 22:05:54 -0800902 pci_sun4v_iommu_init(pbm);
David S. Miller35a17eb2007-02-10 17:41:02 -0800903 pci_sun4v_msi_init(pbm);
David S. Millerbade5622006-02-09 22:05:54 -0800904}
905
Sam Ravnborgf0429bf2007-07-20 17:19:56 -0700906void __init sun4v_pci_init(struct device_node *dp, char *model_name)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800907{
David S. Millere01c0d62007-05-25 01:04:15 -0700908 static int hvapi_negotiated = 0;
David S. Millerbade5622006-02-09 22:05:54 -0800909 struct pci_controller_info *p;
David S. Miller34768bc2007-05-07 23:06:27 -0700910 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700911 struct iommu *iommu;
David S. Millere87dc352006-06-21 18:18:47 -0700912 struct property *prop;
913 struct linux_prom64_registers *regs;
David S. Miller7c8f4862006-02-13 21:50:27 -0800914 u32 devhandle;
915 int i;
David S. Miller38337892006-02-12 22:06:53 -0800916
David S. Millere01c0d62007-05-25 01:04:15 -0700917 if (!hvapi_negotiated++) {
918 int err = sun4v_hvapi_register(HV_GRP_PCI,
919 vpci_major,
920 &vpci_minor);
921
922 if (err) {
923 prom_printf("SUN4V_PCI: Could not register hvapi, "
924 "err=%d\n", err);
925 prom_halt();
926 }
927 printk("SUN4V_PCI: Registered hvapi major[%lu] minor[%lu]\n",
928 vpci_major, vpci_minor);
David S. Millerad7ad572007-07-27 22:39:14 -0700929
930 dma_ops = &sun4v_dma_ops;
David S. Millere01c0d62007-05-25 01:04:15 -0700931 }
932
David S. Millere87dc352006-06-21 18:18:47 -0700933 prop = of_find_property(dp, "reg", NULL);
Cyrill Gorcunov75c6d142007-11-20 17:32:19 -0800934 if (!prop) {
935 prom_printf("SUN4V_PCI: Could not find config registers\n");
936 prom_halt();
937 }
David S. Millere87dc352006-06-21 18:18:47 -0700938 regs = prop->value;
939
940 devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff;
David S. Miller38337892006-02-12 22:06:53 -0800941
David S. Miller34768bc2007-05-07 23:06:27 -0700942 for (pbm = pci_pbm_root; pbm; pbm = pbm->next) {
David S. Miller0b522492006-02-12 22:29:36 -0800943 if (pbm->devhandle == (devhandle ^ 0x40)) {
David S. Miller34768bc2007-05-07 23:06:27 -0700944 pci_sun4v_pbm_init(pbm->parent, dp, devhandle);
David S. Miller0b522492006-02-12 22:29:36 -0800945 return;
946 }
David S. Miller38337892006-02-12 22:06:53 -0800947 }
David S. Millerbade5622006-02-09 22:05:54 -0800948
KAMEZAWA Hiroyukia283a522006-04-10 22:52:52 -0700949 for_each_possible_cpu(i) {
David S. Miller7c8f4862006-02-13 21:50:27 -0800950 unsigned long page = get_zeroed_page(GFP_ATOMIC);
951
952 if (!page)
953 goto fatal_memory_error;
954
David S. Millerad7ad572007-07-27 22:39:14 -0700955 per_cpu(iommu_batch, i).pglist = (u64 *) page;
David S. Millerbade5622006-02-09 22:05:54 -0800956 }
David S. Miller7c8f4862006-02-13 21:50:27 -0800957
Yan Burman982c2062006-11-30 17:13:09 -0800958 p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC);
David S. Miller7c8f4862006-02-13 21:50:27 -0800959 if (!p)
960 goto fatal_memory_error;
961
David S. Miller16ce82d2007-04-26 21:08:21 -0700962 iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC);
David S. Miller7c8f4862006-02-13 21:50:27 -0800963 if (!iommu)
964 goto fatal_memory_error;
965
David S. Millerbade5622006-02-09 22:05:54 -0800966 p->pbm_A.iommu = iommu;
967
David S. Miller16ce82d2007-04-26 21:08:21 -0700968 iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC);
David S. Miller7c8f4862006-02-13 21:50:27 -0800969 if (!iommu)
970 goto fatal_memory_error;
971
David S. Millerbade5622006-02-09 22:05:54 -0800972 p->pbm_B.iommu = iommu;
973
David S. Millere87dc352006-06-21 18:18:47 -0700974 pci_sun4v_pbm_init(p, dp, devhandle);
David S. Miller7c8f4862006-02-13 21:50:27 -0800975 return;
976
977fatal_memory_error:
978 prom_printf("SUN4V_PCI: Fatal memory allocation error.\n");
979 prom_halt();
David S. Miller8f6a93a2006-02-09 21:32:07 -0800980}