[SPARC64]: Temporarily remove IOMMU merging code.
[firewire-audio.git] / arch / sparc64 / kernel / pci_sun4v.c
blob61baf8dc095e2d2631e7958b4473d419524e47d9
1 /* pci_sun4v.c: SUN4V specific PCI controller support.
3 * Copyright (C) 2006, 2007 David S. Miller (davem@davemloft.net)
4 */
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>
12 #include <linux/percpu.h>
13 #include <linux/irq.h>
14 #include <linux/msi.h>
15 #include <linux/log2.h>
17 #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>
23 #include <asm/prom.h>
25 #include "pci_impl.h"
26 #include "iommu_common.h"
28 #include "pci_sun4v.h"
30 static unsigned long vpci_major = 1;
31 static unsigned long vpci_minor = 1;
33 #define PGLIST_NENTS (PAGE_SIZE / sizeof(u64))
35 struct iommu_batch {
36 struct device *dev; /* Device mapping is for. */
37 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. */
43 static DEFINE_PER_CPU(struct iommu_batch, iommu_batch);
45 /* Interrupts must be disabled. */
46 static inline void iommu_batch_start(struct device *dev, unsigned long prot, unsigned long entry)
48 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
50 p->dev = dev;
51 p->prot = prot;
52 p->entry = entry;
53 p->npages = 0;
56 /* Interrupts must be disabled. */
57 static long iommu_batch_flush(struct iommu_batch *p)
59 struct pci_pbm_info *pbm = p->dev->archdata.host_controller;
60 unsigned long devhandle = pbm->devhandle;
61 unsigned long prot = p->prot;
62 unsigned long entry = p->entry;
63 u64 *pglist = p->pglist;
64 unsigned long npages = p->npages;
66 while (npages != 0) {
67 long num;
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())
73 printk("iommu_batch_flush: IOMMU map of "
74 "[%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;
81 entry += num;
82 npages -= num;
83 pglist += num;
86 p->entry = entry;
87 p->npages = 0;
89 return 0;
92 /* Interrupts must be disabled. */
93 static inline long iommu_batch_add(u64 phys_page)
95 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
97 BUG_ON(p->npages >= PGLIST_NENTS);
99 p->pglist[p->npages++] = phys_page;
100 if (p->npages == PGLIST_NENTS)
101 return iommu_batch_flush(p);
103 return 0;
106 /* Interrupts must be disabled. */
107 static inline long iommu_batch_end(void)
109 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
111 BUG_ON(p->npages >= PGLIST_NENTS);
113 return iommu_batch_flush(p);
116 static long arena_alloc(struct iommu_arena *arena, unsigned long npages)
118 unsigned long n, i, start, end, limit;
119 int pass;
121 limit = arena->limit;
122 start = arena->hint;
123 pass = 0;
125 again:
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;
140 for (i = n; i < end; i++) {
141 if (test_bit(i, arena->map)) {
142 start = i + 1;
143 goto again;
147 for (i = n; i < end; i++)
148 __set_bit(i, arena->map);
150 arena->hint = end;
152 return n;
155 static void arena_free(struct iommu_arena *arena, unsigned long base,
156 unsigned long npages)
158 unsigned long i;
160 for (i = base; i < (base + npages); i++)
161 __clear_bit(i, arena->map);
164 static void *dma_4v_alloc_coherent(struct device *dev, size_t size,
165 dma_addr_t *dma_addrp, gfp_t gfp)
167 struct iommu *iommu;
168 unsigned long flags, order, first_page, npages, n;
169 void *ret;
170 long entry;
172 size = IO_PAGE_ALIGN(size);
173 order = get_order(size);
174 if (unlikely(order >= MAX_ORDER))
175 return NULL;
177 npages = size >> IO_PAGE_SHIFT;
179 first_page = __get_free_pages(gfp, order);
180 if (unlikely(first_page == 0UL))
181 return NULL;
183 memset((char *)first_page, 0, PAGE_SIZE << order);
185 iommu = dev->archdata.iommu;
187 spin_lock_irqsave(&iommu->lock, flags);
188 entry = arena_alloc(&iommu->arena, npages);
189 spin_unlock_irqrestore(&iommu->lock, flags);
191 if (unlikely(entry < 0L))
192 goto arena_alloc_fail;
194 *dma_addrp = (iommu->page_table_map_base +
195 (entry << IO_PAGE_SHIFT));
196 ret = (void *) first_page;
197 first_page = __pa(first_page);
199 local_irq_save(flags);
201 iommu_batch_start(dev,
202 (HV_PCI_MAP_ATTR_READ |
203 HV_PCI_MAP_ATTR_WRITE),
204 entry);
206 for (n = 0; n < npages; n++) {
207 long err = iommu_batch_add(first_page + (n * PAGE_SIZE));
208 if (unlikely(err < 0L))
209 goto iommu_map_fail;
212 if (unlikely(iommu_batch_end() < 0L))
213 goto iommu_map_fail;
215 local_irq_restore(flags);
217 return ret;
219 iommu_map_fail:
220 /* Interrupts are disabled. */
221 spin_lock(&iommu->lock);
222 arena_free(&iommu->arena, entry, npages);
223 spin_unlock_irqrestore(&iommu->lock, flags);
225 arena_alloc_fail:
226 free_pages(first_page, order);
227 return NULL;
230 static void dma_4v_free_coherent(struct device *dev, size_t size, void *cpu,
231 dma_addr_t dvma)
233 struct pci_pbm_info *pbm;
234 struct iommu *iommu;
235 unsigned long flags, order, npages, entry;
236 u32 devhandle;
238 npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT;
239 iommu = dev->archdata.iommu;
240 pbm = dev->archdata.host_controller;
241 devhandle = pbm->devhandle;
242 entry = ((dvma - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
244 spin_lock_irqsave(&iommu->lock, flags);
246 arena_free(&iommu->arena, entry, npages);
248 do {
249 unsigned long num;
251 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
252 npages);
253 entry += num;
254 npages -= num;
255 } while (npages != 0);
257 spin_unlock_irqrestore(&iommu->lock, flags);
259 order = get_order(size);
260 if (order < 10)
261 free_pages((unsigned long)cpu, order);
264 static dma_addr_t dma_4v_map_single(struct device *dev, void *ptr, size_t sz,
265 enum dma_data_direction direction)
267 struct iommu *iommu;
268 unsigned long flags, npages, oaddr;
269 unsigned long i, base_paddr;
270 u32 bus_addr, ret;
271 unsigned long prot;
272 long entry;
274 iommu = dev->archdata.iommu;
276 if (unlikely(direction == DMA_NONE))
277 goto bad;
279 oaddr = (unsigned long)ptr;
280 npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK);
281 npages >>= IO_PAGE_SHIFT;
283 spin_lock_irqsave(&iommu->lock, flags);
284 entry = arena_alloc(&iommu->arena, npages);
285 spin_unlock_irqrestore(&iommu->lock, flags);
287 if (unlikely(entry < 0L))
288 goto bad;
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;
295 if (direction != DMA_TO_DEVICE)
296 prot |= HV_PCI_MAP_ATTR_WRITE;
298 local_irq_save(flags);
300 iommu_batch_start(dev, prot, entry);
302 for (i = 0; i < npages; i++, base_paddr += IO_PAGE_SIZE) {
303 long err = iommu_batch_add(base_paddr);
304 if (unlikely(err < 0L))
305 goto iommu_map_fail;
307 if (unlikely(iommu_batch_end() < 0L))
308 goto iommu_map_fail;
310 local_irq_restore(flags);
312 return ret;
314 bad:
315 if (printk_ratelimit())
316 WARN_ON(1);
317 return DMA_ERROR_CODE;
319 iommu_map_fail:
320 /* Interrupts are disabled. */
321 spin_lock(&iommu->lock);
322 arena_free(&iommu->arena, entry, npages);
323 spin_unlock_irqrestore(&iommu->lock, flags);
325 return DMA_ERROR_CODE;
328 static void dma_4v_unmap_single(struct device *dev, dma_addr_t bus_addr,
329 size_t sz, enum dma_data_direction direction)
331 struct pci_pbm_info *pbm;
332 struct iommu *iommu;
333 unsigned long flags, npages;
334 long entry;
335 u32 devhandle;
337 if (unlikely(direction == DMA_NONE)) {
338 if (printk_ratelimit())
339 WARN_ON(1);
340 return;
343 iommu = dev->archdata.iommu;
344 pbm = dev->archdata.host_controller;
345 devhandle = pbm->devhandle;
347 npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
348 npages >>= IO_PAGE_SHIFT;
349 bus_addr &= IO_PAGE_MASK;
351 spin_lock_irqsave(&iommu->lock, flags);
353 entry = (bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT;
354 arena_free(&iommu->arena, entry, npages);
356 do {
357 unsigned long num;
359 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
360 npages);
361 entry += num;
362 npages -= num;
363 } while (npages != 0);
365 spin_unlock_irqrestore(&iommu->lock, flags);
368 static int dma_4v_map_sg(struct device *dev, struct scatterlist *sglist,
369 int nelems, enum dma_data_direction direction)
371 unsigned long flags, npages, i, prot;
372 struct scatterlist *sg;
373 struct iommu *iommu;
374 long entry, err;
375 u32 dma_base;
377 /* Fast path single entry scatterlists. */
378 if (nelems == 1) {
379 sglist->dma_address =
380 dma_4v_map_single(dev, sg_virt(sglist),
381 sglist->length, direction);
382 if (unlikely(sglist->dma_address == DMA_ERROR_CODE))
383 return 0;
384 sglist->dma_length = sglist->length;
385 return 1;
388 iommu = dev->archdata.iommu;
390 if (unlikely(direction == DMA_NONE))
391 goto bad;
393 npages = calc_npages(sglist, nelems);
395 spin_lock_irqsave(&iommu->lock, flags);
396 entry = arena_alloc(&iommu->arena, npages);
397 spin_unlock_irqrestore(&iommu->lock, flags);
399 if (unlikely(entry < 0L))
400 goto bad;
402 dma_base = iommu->page_table_map_base +
403 (entry << IO_PAGE_SHIFT);
405 prot = HV_PCI_MAP_ATTR_READ;
406 if (direction != DMA_TO_DEVICE)
407 prot |= HV_PCI_MAP_ATTR_WRITE;
409 local_irq_save(flags);
411 iommu_batch_start(dev, prot, entry);
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;
418 this_npages = iommu_num_pages(paddr, slen);
420 sg->dma_address = dma_base | (paddr & ~IO_PAGE_MASK);
421 sg->dma_length = slen;
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;
431 paddr += IO_PAGE_SIZE;
432 dma_base += IO_PAGE_SIZE;
436 err = iommu_batch_end();
438 local_irq_restore(flags);
440 if (unlikely(err < 0L))
441 goto iommu_map_failed;
443 return nelems;
445 bad:
446 if (printk_ratelimit())
447 WARN_ON(1);
448 return 0;
450 iommu_map_failed:
451 spin_lock_irqsave(&iommu->lock, flags);
452 arena_free(&iommu->arena, entry, npages);
453 spin_unlock_irqrestore(&iommu->lock, flags);
455 return 0;
458 static void dma_4v_unmap_sg(struct device *dev, struct scatterlist *sglist,
459 int nelems, enum dma_data_direction direction)
461 unsigned long flags, npages;
462 struct pci_pbm_info *pbm;
463 u32 devhandle, bus_addr;
464 struct iommu *iommu;
465 long entry;
467 if (unlikely(direction == DMA_NONE)) {
468 if (printk_ratelimit())
469 WARN_ON(1);
472 iommu = dev->archdata.iommu;
473 pbm = dev->archdata.host_controller;
474 devhandle = pbm->devhandle;
476 bus_addr = sglist->dma_address & IO_PAGE_MASK;
478 npages = calc_npages(sglist, nelems);
480 entry = ((bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
482 spin_lock_irqsave(&iommu->lock, flags);
484 arena_free(&iommu->arena, entry, npages);
486 do {
487 unsigned long num;
489 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
490 npages);
491 entry += num;
492 npages -= num;
493 } while (npages != 0);
495 spin_unlock_irqrestore(&iommu->lock, flags);
498 static 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)
502 /* Nothing to do... */
505 static void dma_4v_sync_sg_for_cpu(struct device *dev,
506 struct scatterlist *sglist, int nelems,
507 enum dma_data_direction direction)
509 /* Nothing to do... */
512 const 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,
523 static void __init pci_sun4v_scan_bus(struct pci_pbm_info *pbm)
525 struct property *prop;
526 struct device_node *dp;
528 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);
533 /* XXX register error interrupt handlers XXX */
536 static unsigned long __init probe_existing_entries(struct pci_pbm_info *pbm,
537 struct iommu *iommu)
539 struct iommu_arena *arena = &iommu->arena;
540 unsigned long i, cnt = 0;
541 u32 devhandle;
543 devhandle = pbm->devhandle;
544 for (i = 0; i < arena->limit; i++) {
545 unsigned long ret, io_attrs, ra;
547 ret = pci_sun4v_iommu_getmap(devhandle,
548 HV_PCI_TSBID(0, i),
549 &io_attrs, &ra);
550 if (ret == HV_EOK) {
551 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);
561 return cnt;
564 static void __init pci_sun4v_iommu_init(struct pci_pbm_info *pbm)
566 struct iommu *iommu = pbm->iommu;
567 struct property *prop;
568 unsigned long num_tsb_entries, sz, tsbsize;
569 u32 vdma[2], dma_mask, dma_offset;
571 prop = of_find_property(pbm->prom_node, "virtual-dma", NULL);
572 if (prop) {
573 u32 *val = prop->value;
575 vdma[0] = val[0];
576 vdma[1] = val[1];
577 } else {
578 /* No property, use default values. */
579 vdma[0] = 0x80000000;
580 vdma[1] = 0x80000000;
583 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();
589 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);
593 dma_offset = vdma[0];
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;
601 /* Allocate and initialize the free area map. */
602 sz = (num_tsb_entries + 7) / 8;
603 sz = (sz + 7UL) & ~7UL;
604 iommu->arena.map = kzalloc(sz, GFP_KERNEL);
605 if (!iommu->arena.map) {
606 prom_printf("PCI_IOMMU: Error, kmalloc(arena.map) failed.\n");
607 prom_halt();
609 iommu->arena.limit = num_tsb_entries;
611 sz = probe_existing_entries(pbm, iommu);
612 if (sz)
613 printk("%s: Imported %lu TSB entries from OBP\n",
614 pbm->name, sz);
617 #ifdef CONFIG_PCI_MSI
618 struct 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
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
642 u64 msi_address;
644 /* The format of this value is message type dependent.
645 * 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
657 u64 msi_data;
659 u64 reserved2;
662 static int pci_sun4v_get_head(struct pci_pbm_info *pbm, unsigned long msiqid,
663 unsigned long *head)
665 unsigned long err, limit;
667 err = pci_sun4v_msiq_gethead(pbm->devhandle, msiqid, head);
668 if (unlikely(err))
669 return -ENXIO;
671 limit = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
672 if (unlikely(*head >= limit))
673 return -EFBIG;
675 return 0;
678 static int pci_sun4v_dequeue_msi(struct pci_pbm_info *pbm,
679 unsigned long msiqid, unsigned long *head,
680 unsigned long *msi)
682 struct pci_sun4v_msiq_entry *ep;
683 unsigned long err, type;
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);
691 if ((ep->version_type & MSIQ_TYPE_MASK) == 0)
692 return 0;
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;
699 *msi = ep->msi_data;
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;
707 /* Clear the entry. */
708 ep->version_type &= ~MSIQ_TYPE_MASK;
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;
715 return 1;
718 static int pci_sun4v_set_head(struct pci_pbm_info *pbm, unsigned long msiqid,
719 unsigned long head)
721 unsigned long err;
723 err = pci_sun4v_msiq_sethead(pbm->devhandle, msiqid, head);
724 if (unlikely(err))
725 return -EINVAL;
727 return 0;
730 static int pci_sun4v_msi_setup(struct pci_pbm_info *pbm, unsigned long msiqid,
731 unsigned long msi, int is_msi64)
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;
744 static int pci_sun4v_msi_teardown(struct pci_pbm_info *pbm, unsigned long msi)
746 unsigned long err, msiqid;
748 err = pci_sun4v_msi_getmsiq(pbm->devhandle, msi, &msiqid);
749 if (err)
750 return -ENXIO;
752 pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_INVALID);
754 return 0;
757 static int pci_sun4v_msiq_alloc(struct pci_pbm_info *pbm)
759 unsigned long q_size, alloc_size, pages, order;
760 int i;
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;
771 memset((char *)pages, 0, PAGE_SIZE << order);
772 pbm->msi_queues = (void *) pages;
774 for (i = 0; i < pbm->msiq_num; i++) {
775 unsigned long err, base = __pa(pages + (i * q_size));
776 unsigned long ret1, ret2;
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;
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;
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;
804 return 0;
806 h_error:
807 free_pages(pages, order);
808 return -EINVAL;
811 static void pci_sun4v_msiq_free(struct pci_pbm_info *pbm)
813 unsigned long q_size, alloc_size, pages, order;
814 int i;
816 for (i = 0; i < pbm->msiq_num; i++) {
817 unsigned long msiqid = pbm->msiq_first + i;
819 (void) pci_sun4v_msiq_conf(pbm->devhandle, msiqid, 0UL, 0);
822 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);
826 pages = (unsigned long) pbm->msi_queues;
828 free_pages(pages, order);
830 pbm->msi_queues = NULL;
833 static int pci_sun4v_msiq_build_irq(struct pci_pbm_info *pbm,
834 unsigned long msiqid,
835 unsigned long devino)
837 unsigned int virt_irq = sun4v_build_irq(pbm->devhandle, devino);
839 if (!virt_irq)
840 return -ENOMEM;
842 if (pci_sun4v_msiq_setstate(pbm->devhandle, msiqid, HV_MSIQSTATE_IDLE))
843 return -EINVAL;
844 if (pci_sun4v_msiq_setvalid(pbm->devhandle, msiqid, HV_MSIQ_VALID))
845 return -EINVAL;
847 return virt_irq;
850 static 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,
861 static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
863 sparc64_pbm_msi_init(pbm, &pci_sun4v_msiq_ops);
865 #else /* CONFIG_PCI_MSI */
866 static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
869 #endif /* !(CONFIG_PCI_MSI) */
871 static void __init pci_sun4v_pbm_init(struct pci_controller_info *p,
872 struct device_node *dp, u32 devhandle)
874 struct pci_pbm_info *pbm;
876 if (devhandle & 0x40)
877 pbm = &p->pbm_B;
878 else
879 pbm = &p->pbm_A;
881 pbm->next = pci_pbm_root;
882 pci_pbm_root = pbm;
884 pbm->scan_bus = pci_sun4v_scan_bus;
885 pbm->pci_ops = &sun4v_pci_ops;
886 pbm->config_space_reg_bits = 12;
888 pbm->index = pci_num_pbms++;
890 pbm->parent = p;
891 pbm->prom_node = dp;
893 pbm->devhandle = devhandle;
895 pbm->name = dp->full_name;
897 printk("%s: SUN4V PCI Bus Module\n", pbm->name);
899 pci_determine_mem_io_space(pbm);
901 pci_get_pbm_props(pbm);
902 pci_sun4v_iommu_init(pbm);
903 pci_sun4v_msi_init(pbm);
906 void __init sun4v_pci_init(struct device_node *dp, char *model_name)
908 static int hvapi_negotiated = 0;
909 struct pci_controller_info *p;
910 struct pci_pbm_info *pbm;
911 struct iommu *iommu;
912 struct property *prop;
913 struct linux_prom64_registers *regs;
914 u32 devhandle;
915 int i;
917 if (!hvapi_negotiated++) {
918 int err = sun4v_hvapi_register(HV_GRP_PCI,
919 vpci_major,
920 &vpci_minor);
922 if (err) {
923 prom_printf("SUN4V_PCI: Could not register hvapi, "
924 "err=%d\n", err);
925 prom_halt();
927 printk("SUN4V_PCI: Registered hvapi major[%lu] minor[%lu]\n",
928 vpci_major, vpci_minor);
930 dma_ops = &sun4v_dma_ops;
933 prop = of_find_property(dp, "reg", NULL);
934 if (!prop) {
935 prom_printf("SUN4V_PCI: Could not find config registers\n");
936 prom_halt();
938 regs = prop->value;
940 devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff;
942 for (pbm = pci_pbm_root; pbm; pbm = pbm->next) {
943 if (pbm->devhandle == (devhandle ^ 0x40)) {
944 pci_sun4v_pbm_init(pbm->parent, dp, devhandle);
945 return;
949 for_each_possible_cpu(i) {
950 unsigned long page = get_zeroed_page(GFP_ATOMIC);
952 if (!page)
953 goto fatal_memory_error;
955 per_cpu(iommu_batch, i).pglist = (u64 *) page;
958 p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC);
959 if (!p)
960 goto fatal_memory_error;
962 iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC);
963 if (!iommu)
964 goto fatal_memory_error;
966 p->pbm_A.iommu = iommu;
968 iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC);
969 if (!iommu)
970 goto fatal_memory_error;
972 p->pbm_B.iommu = iommu;
974 pci_sun4v_pbm_init(p, dp, devhandle);
975 return;
977 fatal_memory_error:
978 prom_printf("SUN4V_PCI: Fatal memory allocation error.\n");
979 prom_halt();