[SPARC64]: Fix sun4v_intr_setenabled() return value check in enable_irq().
[deliverable/linux.git] / arch / sparc64 / kernel / pci_sun4v.c
CommitLineData
8f6a93a1
DM
1/* pci_sun4v.c: SUN4V specific PCI controller support.
2 *
3 * Copyright (C) 2006 David S. Miller (davem@davemloft.net)
4 */
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>
18397944 12#include <linux/percpu.h>
8f6a93a1
DM
13
14#include <asm/pbm.h>
15#include <asm/iommu.h>
16#include <asm/irq.h>
17#include <asm/upa.h>
18#include <asm/pstate.h>
19#include <asm/oplib.h>
20#include <asm/hypervisor.h>
21
22#include "pci_impl.h"
23#include "iommu_common.h"
24
bade5622
DM
25#include "pci_sun4v.h"
26
7c8f486a 27#define PGLIST_NENTS (PAGE_SIZE / sizeof(u64))
18397944
DM
28
29struct sun4v_pglist {
7c8f486a 30 u64 *pglist;
18397944
DM
31};
32
33static DEFINE_PER_CPU(struct sun4v_pglist, iommu_pglists);
34
35static long pci_arena_alloc(struct pci_iommu_arena *arena, unsigned long npages)
36{
37 unsigned long n, i, start, end, limit;
38 int pass;
39
40 limit = arena->limit;
41 start = arena->hint;
42 pass = 0;
43
44again:
45 n = find_next_zero_bit(arena->map, limit, start);
46 end = n + npages;
47 if (unlikely(end >= limit)) {
48 if (likely(pass < 1)) {
49 limit = start;
50 start = 0;
51 pass++;
52 goto again;
53 } else {
54 /* Scanned the whole thing, give up. */
55 return -1;
56 }
57 }
58
59 for (i = n; i < end; i++) {
60 if (test_bit(i, arena->map)) {
61 start = i + 1;
62 goto again;
63 }
64 }
65
66 for (i = n; i < end; i++)
67 __set_bit(i, arena->map);
68
69 arena->hint = end;
70
71 return n;
72}
73
74static void pci_arena_free(struct pci_iommu_arena *arena, unsigned long base, unsigned long npages)
75{
76 unsigned long i;
77
78 for (i = base; i < (base + npages); i++)
79 __clear_bit(i, arena->map);
80}
81
8f6a93a1
DM
82static void *pci_4v_alloc_consistent(struct pci_dev *pdev, size_t size, dma_addr_t *dma_addrp)
83{
18397944
DM
84 struct pcidev_cookie *pcp;
85 struct pci_iommu *iommu;
7c8f486a 86 unsigned long flags, order, first_page, npages, n;
18397944
DM
87 void *ret;
88 long entry;
89 u64 *pglist;
7c8f486a 90 u32 devhandle;
18397944
DM
91 int cpu;
92
93 size = IO_PAGE_ALIGN(size);
94 order = get_order(size);
95 if (order >= MAX_ORDER)
96 return NULL;
97
98 npages = size >> IO_PAGE_SHIFT;
99 if (npages > PGLIST_NENTS)
100 return NULL;
101
102 first_page = __get_free_pages(GFP_ATOMIC, order);
103 if (first_page == 0UL)
104 return NULL;
105 memset((char *)first_page, 0, PAGE_SIZE << order);
106
107 pcp = pdev->sysdata;
108 devhandle = pcp->pbm->devhandle;
109 iommu = pcp->pbm->iommu;
110
111 spin_lock_irqsave(&iommu->lock, flags);
112 entry = pci_arena_alloc(&iommu->arena, npages);
113 spin_unlock_irqrestore(&iommu->lock, flags);
114
115 if (unlikely(entry < 0L)) {
116 free_pages(first_page, order);
117 return NULL;
118 }
119
120 *dma_addrp = (iommu->page_table_map_base +
121 (entry << IO_PAGE_SHIFT));
122 ret = (void *) first_page;
123 first_page = __pa(first_page);
124
125 cpu = get_cpu();
126
7c8f486a 127 pglist = __get_cpu_var(iommu_pglists).pglist;
18397944
DM
128 for (n = 0; n < npages; n++)
129 pglist[n] = first_page + (n * PAGE_SIZE);
130
131 do {
132 unsigned long num;
133
134 num = pci_sun4v_iommu_map(devhandle, HV_PCI_TSBID(0, entry),
135 npages,
136 (HV_PCI_MAP_ATTR_READ |
137 HV_PCI_MAP_ATTR_WRITE),
138 __pa(pglist));
139 entry += num;
140 npages -= num;
141 pglist += num;
142 } while (npages != 0);
143
144 put_cpu();
145
146 return ret;
8f6a93a1
DM
147}
148
149static void pci_4v_free_consistent(struct pci_dev *pdev, size_t size, void *cpu, dma_addr_t dvma)
150{
18397944
DM
151 struct pcidev_cookie *pcp;
152 struct pci_iommu *iommu;
7c8f486a
DM
153 unsigned long flags, order, npages, entry;
154 u32 devhandle;
18397944
DM
155
156 npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT;
157 pcp = pdev->sysdata;
158 iommu = pcp->pbm->iommu;
159 devhandle = pcp->pbm->devhandle;
160 entry = ((dvma - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
161
162 spin_lock_irqsave(&iommu->lock, flags);
163
164 pci_arena_free(&iommu->arena, entry, npages);
165
166 do {
167 unsigned long num;
168
169 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
170 npages);
171 entry += num;
172 npages -= num;
173 } while (npages != 0);
174
175 spin_unlock_irqrestore(&iommu->lock, flags);
176
177 order = get_order(size);
178 if (order < 10)
179 free_pages((unsigned long)cpu, order);
8f6a93a1
DM
180}
181
182static dma_addr_t pci_4v_map_single(struct pci_dev *pdev, void *ptr, size_t sz, int direction)
183{
18397944
DM
184 struct pcidev_cookie *pcp;
185 struct pci_iommu *iommu;
186 unsigned long flags, npages, oaddr;
7c8f486a
DM
187 unsigned long i, base_paddr;
188 u32 devhandle, bus_addr, ret;
18397944
DM
189 unsigned long prot;
190 long entry;
191 u64 *pglist;
192 int cpu;
193
194 pcp = pdev->sysdata;
195 iommu = pcp->pbm->iommu;
196 devhandle = pcp->pbm->devhandle;
197
198 if (unlikely(direction == PCI_DMA_NONE))
199 goto bad;
200
201 oaddr = (unsigned long)ptr;
202 npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK);
203 npages >>= IO_PAGE_SHIFT;
204 if (unlikely(npages > PGLIST_NENTS))
205 goto bad;
206
207 spin_lock_irqsave(&iommu->lock, flags);
208 entry = pci_arena_alloc(&iommu->arena, npages);
209 spin_unlock_irqrestore(&iommu->lock, flags);
210
211 if (unlikely(entry < 0L))
212 goto bad;
213
214 bus_addr = (iommu->page_table_map_base +
215 (entry << IO_PAGE_SHIFT));
216 ret = bus_addr | (oaddr & ~IO_PAGE_MASK);
217 base_paddr = __pa(oaddr & IO_PAGE_MASK);
218 prot = HV_PCI_MAP_ATTR_READ;
219 if (direction != PCI_DMA_TODEVICE)
220 prot |= HV_PCI_MAP_ATTR_WRITE;
221
222 cpu = get_cpu();
223
7c8f486a 224 pglist = __get_cpu_var(iommu_pglists).pglist;
18397944
DM
225 for (i = 0; i < npages; i++, base_paddr += IO_PAGE_SIZE)
226 pglist[i] = base_paddr;
227
228 do {
229 unsigned long num;
230
231 num = pci_sun4v_iommu_map(devhandle, HV_PCI_TSBID(0, entry),
232 npages, prot,
233 __pa(pglist));
234 entry += num;
235 npages -= num;
236 pglist += num;
237 } while (npages != 0);
238
239 put_cpu();
240
241 return ret;
242
243bad:
244 if (printk_ratelimit())
245 WARN_ON(1);
246 return PCI_DMA_ERROR_CODE;
8f6a93a1
DM
247}
248
249static void pci_4v_unmap_single(struct pci_dev *pdev, dma_addr_t bus_addr, size_t sz, int direction)
250{
18397944
DM
251 struct pcidev_cookie *pcp;
252 struct pci_iommu *iommu;
7c8f486a 253 unsigned long flags, npages;
18397944 254 long entry;
7c8f486a 255 u32 devhandle;
18397944
DM
256
257 if (unlikely(direction == PCI_DMA_NONE)) {
258 if (printk_ratelimit())
259 WARN_ON(1);
260 return;
261 }
262
263 pcp = pdev->sysdata;
264 iommu = pcp->pbm->iommu;
265 devhandle = pcp->pbm->devhandle;
266
267 npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
268 npages >>= IO_PAGE_SHIFT;
269 bus_addr &= IO_PAGE_MASK;
270
271 spin_lock_irqsave(&iommu->lock, flags);
272
273 entry = (bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT;
274 pci_arena_free(&iommu->arena, entry, npages);
275
276 do {
277 unsigned long num;
278
279 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
280 npages);
281 entry += num;
282 npages -= num;
283 } while (npages != 0);
284
285 spin_unlock_irqrestore(&iommu->lock, flags);
286}
287
288#define SG_ENT_PHYS_ADDRESS(SG) \
289 (__pa(page_address((SG)->page)) + (SG)->offset)
290
7c8f486a 291static inline void fill_sg(long entry, u32 devhandle,
18397944
DM
292 struct scatterlist *sg,
293 int nused, int nelems, unsigned long prot)
294{
295 struct scatterlist *dma_sg = sg;
296 struct scatterlist *sg_end = sg + nelems;
297 int i, cpu, pglist_ent;
298 u64 *pglist;
299
300 cpu = get_cpu();
7c8f486a 301 pglist = __get_cpu_var(iommu_pglists).pglist;
18397944
DM
302 pglist_ent = 0;
303 for (i = 0; i < nused; i++) {
304 unsigned long pteval = ~0UL;
305 u32 dma_npages;
306
307 dma_npages = ((dma_sg->dma_address & (IO_PAGE_SIZE - 1UL)) +
308 dma_sg->dma_length +
309 ((IO_PAGE_SIZE - 1UL))) >> IO_PAGE_SHIFT;
310 do {
311 unsigned long offset;
312 signed int len;
313
314 /* If we are here, we know we have at least one
315 * more page to map. So walk forward until we
316 * hit a page crossing, and begin creating new
317 * mappings from that spot.
318 */
319 for (;;) {
320 unsigned long tmp;
321
322 tmp = SG_ENT_PHYS_ADDRESS(sg);
323 len = sg->length;
324 if (((tmp ^ pteval) >> IO_PAGE_SHIFT) != 0UL) {
325 pteval = tmp & IO_PAGE_MASK;
326 offset = tmp & (IO_PAGE_SIZE - 1UL);
327 break;
328 }
329 if (((tmp ^ (tmp + len - 1UL)) >> IO_PAGE_SHIFT) != 0UL) {
330 pteval = (tmp + IO_PAGE_SIZE) & IO_PAGE_MASK;
331 offset = 0UL;
332 len -= (IO_PAGE_SIZE - (tmp & (IO_PAGE_SIZE - 1UL)));
333 break;
334 }
335 sg++;
336 }
337
338 pteval = (pteval & IOPTE_PAGE);
339 while (len > 0) {
340 pglist[pglist_ent++] = pteval;
341 pteval += IO_PAGE_SIZE;
342 len -= (IO_PAGE_SIZE - offset);
343 offset = 0;
344 dma_npages--;
345 }
346
347 pteval = (pteval & IOPTE_PAGE) + len;
348 sg++;
349
350 /* Skip over any tail mappings we've fully mapped,
351 * adjusting pteval along the way. Stop when we
352 * detect a page crossing event.
353 */
354 while (sg < sg_end &&
355 (pteval << (64 - IO_PAGE_SHIFT)) != 0UL &&
356 (pteval == SG_ENT_PHYS_ADDRESS(sg)) &&
357 ((pteval ^
358 (SG_ENT_PHYS_ADDRESS(sg) + sg->length - 1UL)) >> IO_PAGE_SHIFT) == 0UL) {
359 pteval += sg->length;
360 sg++;
361 }
362 if ((pteval << (64 - IO_PAGE_SHIFT)) == 0UL)
363 pteval = ~0UL;
364 } while (dma_npages != 0);
365 dma_sg++;
366 }
367
368 BUG_ON(pglist_ent == 0);
369
370 do {
371 unsigned long num;
372
373 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
374 pglist_ent);
375 entry += num;
376 pglist_ent -= num;
377 } while (pglist_ent != 0);
378
379 put_cpu();
8f6a93a1
DM
380}
381
382static int pci_4v_map_sg(struct pci_dev *pdev, struct scatterlist *sglist, int nelems, int direction)
383{
18397944
DM
384 struct pcidev_cookie *pcp;
385 struct pci_iommu *iommu;
7c8f486a
DM
386 unsigned long flags, npages, prot;
387 u32 devhandle, dma_base;
18397944
DM
388 struct scatterlist *sgtmp;
389 long entry;
390 int used;
391
392 /* Fast path single entry scatterlists. */
393 if (nelems == 1) {
394 sglist->dma_address =
395 pci_4v_map_single(pdev,
396 (page_address(sglist->page) + sglist->offset),
397 sglist->length, direction);
398 if (unlikely(sglist->dma_address == PCI_DMA_ERROR_CODE))
399 return 0;
400 sglist->dma_length = sglist->length;
401 return 1;
402 }
403
404 pcp = pdev->sysdata;
405 iommu = pcp->pbm->iommu;
406 devhandle = pcp->pbm->devhandle;
407
408 if (unlikely(direction == PCI_DMA_NONE))
409 goto bad;
410
411 /* Step 1: Prepare scatter list. */
412 npages = prepare_sg(sglist, nelems);
413 if (unlikely(npages > PGLIST_NENTS))
414 goto bad;
415
416 /* Step 2: Allocate a cluster and context, if necessary. */
417 spin_lock_irqsave(&iommu->lock, flags);
418 entry = pci_arena_alloc(&iommu->arena, npages);
419 spin_unlock_irqrestore(&iommu->lock, flags);
420
421 if (unlikely(entry < 0L))
422 goto bad;
423
424 dma_base = iommu->page_table_map_base +
425 (entry << IO_PAGE_SHIFT);
426
427 /* Step 3: Normalize DMA addresses. */
428 used = nelems;
429
430 sgtmp = sglist;
431 while (used && sgtmp->dma_length) {
432 sgtmp->dma_address += dma_base;
433 sgtmp++;
434 used--;
435 }
436 used = nelems - used;
437
438 /* Step 4: Create the mappings. */
439 prot = HV_PCI_MAP_ATTR_READ;
440 if (direction != PCI_DMA_TODEVICE)
441 prot |= HV_PCI_MAP_ATTR_WRITE;
442
443 fill_sg(entry, devhandle, sglist, used, nelems, prot);
444
445 return used;
446
447bad:
448 if (printk_ratelimit())
449 WARN_ON(1);
450 return 0;
8f6a93a1
DM
451}
452
453static void pci_4v_unmap_sg(struct pci_dev *pdev, struct scatterlist *sglist, int nelems, int direction)
454{
18397944
DM
455 struct pcidev_cookie *pcp;
456 struct pci_iommu *iommu;
7c8f486a 457 unsigned long flags, i, npages;
18397944 458 long entry;
7c8f486a 459 u32 devhandle, bus_addr;
18397944
DM
460
461 if (unlikely(direction == PCI_DMA_NONE)) {
462 if (printk_ratelimit())
463 WARN_ON(1);
464 }
465
466 pcp = pdev->sysdata;
467 iommu = pcp->pbm->iommu;
468 devhandle = pcp->pbm->devhandle;
469
470 bus_addr = sglist->dma_address & IO_PAGE_MASK;
471
472 for (i = 1; i < nelems; i++)
473 if (sglist[i].dma_length == 0)
474 break;
475 i--;
476 npages = (IO_PAGE_ALIGN(sglist[i].dma_address + sglist[i].dma_length) -
477 bus_addr) >> IO_PAGE_SHIFT;
478
479 entry = ((bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
480
481 spin_lock_irqsave(&iommu->lock, flags);
482
483 pci_arena_free(&iommu->arena, entry, npages);
484
485 do {
486 unsigned long num;
487
488 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
489 npages);
490 entry += num;
491 npages -= num;
492 } while (npages != 0);
493
494 spin_unlock_irqrestore(&iommu->lock, flags);
8f6a93a1
DM
495}
496
497static void pci_4v_dma_sync_single_for_cpu(struct pci_dev *pdev, dma_addr_t bus_addr, size_t sz, int direction)
498{
18397944 499 /* Nothing to do... */
8f6a93a1
DM
500}
501
502static void pci_4v_dma_sync_sg_for_cpu(struct pci_dev *pdev, struct scatterlist *sglist, int nelems, int direction)
503{
18397944 504 /* Nothing to do... */
8f6a93a1
DM
505}
506
507struct pci_iommu_ops pci_sun4v_iommu_ops = {
508 .alloc_consistent = pci_4v_alloc_consistent,
509 .free_consistent = pci_4v_free_consistent,
510 .map_single = pci_4v_map_single,
511 .unmap_single = pci_4v_unmap_single,
512 .map_sg = pci_4v_map_sg,
513 .unmap_sg = pci_4v_unmap_sg,
514 .dma_sync_single_for_cpu = pci_4v_dma_sync_single_for_cpu,
515 .dma_sync_sg_for_cpu = pci_4v_dma_sync_sg_for_cpu,
516};
517
bade5622
DM
518/* SUN4V PCI configuration space accessors. */
519
987b6de7 520static inline int pci_sun4v_out_of_range(struct pci_pbm_info *pbm, unsigned int bus, unsigned int device, unsigned int func)
059833eb 521{
987b6de7
DM
522 if (bus == pbm->pci_first_busno) {
523 if (device == 0 && func == 0)
524 return 0;
525 return 1;
526 }
527
059833eb
DM
528 if (bus < pbm->pci_first_busno ||
529 bus > pbm->pci_last_busno)
530 return 1;
531 return 0;
532}
533
bade5622
DM
534static int pci_sun4v_read_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn,
535 int where, int size, u32 *value)
536{
7eae642f 537 struct pci_pbm_info *pbm = bus_dev->sysdata;
059833eb 538 u32 devhandle = pbm->devhandle;
7eae642f
DM
539 unsigned int bus = bus_dev->number;
540 unsigned int device = PCI_SLOT(devfn);
541 unsigned int func = PCI_FUNC(devfn);
542 unsigned long ret;
543
987b6de7 544 if (pci_sun4v_out_of_range(pbm, bus, device, func)) {
059833eb
DM
545 ret = ~0UL;
546 } else {
547 ret = pci_sun4v_config_get(devhandle,
548 HV_PCI_DEVICE_BUILD(bus, device, func),
549 where, size);
10804828 550#if 0
987b6de7 551 printk("rcfg: [%x:%x:%x:%d]=[%lx]\n",
10804828
DM
552 devhandle, HV_PCI_DEVICE_BUILD(bus, device, func),
553 where, size, ret);
554#endif
059833eb 555 }
7eae642f
DM
556 switch (size) {
557 case 1:
558 *value = ret & 0xff;
559 break;
560 case 2:
561 *value = ret & 0xffff;
562 break;
563 case 4:
564 *value = ret & 0xffffffff;
565 break;
566 };
567
568
569 return PCIBIOS_SUCCESSFUL;
bade5622
DM
570}
571
572static int pci_sun4v_write_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn,
573 int where, int size, u32 value)
574{
7eae642f 575 struct pci_pbm_info *pbm = bus_dev->sysdata;
059833eb 576 u32 devhandle = pbm->devhandle;
7eae642f
DM
577 unsigned int bus = bus_dev->number;
578 unsigned int device = PCI_SLOT(devfn);
579 unsigned int func = PCI_FUNC(devfn);
580 unsigned long ret;
581
987b6de7 582 if (pci_sun4v_out_of_range(pbm, bus, device, func)) {
059833eb
DM
583 /* Do nothing. */
584 } else {
585 ret = pci_sun4v_config_put(devhandle,
586 HV_PCI_DEVICE_BUILD(bus, device, func),
587 where, size, value);
10804828 588#if 0
987b6de7 589 printk("wcfg: [%x:%x:%x:%d] v[%x] == [%lx]\n",
10804828
DM
590 devhandle, HV_PCI_DEVICE_BUILD(bus, device, func),
591 where, size, value, ret);
592#endif
059833eb 593 }
7eae642f 594 return PCIBIOS_SUCCESSFUL;
bade5622
DM
595}
596
597static struct pci_ops pci_sun4v_ops = {
598 .read = pci_sun4v_read_pci_cfg,
599 .write = pci_sun4v_write_pci_cfg,
600};
601
602
c2609267
DM
603static void pbm_scan_bus(struct pci_controller_info *p,
604 struct pci_pbm_info *pbm)
605{
606 struct pcidev_cookie *cookie = kmalloc(sizeof(*cookie), GFP_KERNEL);
607
608 if (!cookie) {
609 prom_printf("%s: Critical allocation failure.\n", pbm->name);
610 prom_halt();
611 }
612
613 /* All we care about is the PBM. */
614 memset(cookie, 0, sizeof(*cookie));
615 cookie->pbm = pbm;
616
987b6de7 617 pbm->pci_bus = pci_scan_bus(pbm->pci_first_busno, p->pci_ops, pbm);
10804828 618#if 0
c2609267
DM
619 pci_fixup_host_bridge_self(pbm->pci_bus);
620 pbm->pci_bus->self->sysdata = cookie;
10804828 621#endif
10804828 622 pci_fill_in_pbm_cookies(pbm->pci_bus, pbm,
987b6de7 623 pbm->prom_node);
c2609267
DM
624 pci_record_assignments(pbm, pbm->pci_bus);
625 pci_assign_unassigned(pbm, pbm->pci_bus);
626 pci_fixup_irq(pbm, pbm->pci_bus);
627 pci_determine_66mhz_disposition(pbm, pbm->pci_bus);
628 pci_setup_busmastering(pbm, pbm->pci_bus);
629}
630
bade5622
DM
631static void pci_sun4v_scan_bus(struct pci_controller_info *p)
632{
c2609267
DM
633 if (p->pbm_A.prom_node) {
634 p->pbm_A.is_66mhz_capable =
635 prom_getbool(p->pbm_A.prom_node, "66mhz-capable");
636
637 pbm_scan_bus(p, &p->pbm_A);
638 }
639 if (p->pbm_B.prom_node) {
640 p->pbm_B.is_66mhz_capable =
641 prom_getbool(p->pbm_B.prom_node, "66mhz-capable");
642
643 pbm_scan_bus(p, &p->pbm_B);
644 }
645
646 /* XXX register error interrupt handlers XXX */
bade5622
DM
647}
648
649static unsigned int pci_sun4v_irq_build(struct pci_pbm_info *pbm,
650 struct pci_dev *pdev,
e3999574 651 unsigned int devino)
bade5622 652{
10804828
DM
653 u32 devhandle = pbm->devhandle;
654 int pil;
655
10804828
DM
656 pil = 4;
657 if (pdev) {
658 switch ((pdev->class >> 16) & 0xff) {
659 case PCI_BASE_CLASS_STORAGE:
660 pil = 4;
661 break;
662
663 case PCI_BASE_CLASS_NETWORK:
664 pil = 6;
665 break;
666
667 case PCI_BASE_CLASS_DISPLAY:
668 pil = 9;
669 break;
670
671 case PCI_BASE_CLASS_MULTIMEDIA:
672 case PCI_BASE_CLASS_MEMORY:
673 case PCI_BASE_CLASS_BRIDGE:
674 case PCI_BASE_CLASS_SERIAL:
675 pil = 10;
676 break;
677
678 default:
679 pil = 4;
680 break;
681 };
682 }
683 BUG_ON(PIL_RESERVED(pil));
684
e3999574 685 return sun4v_build_irq(devhandle, devino, pil, IBF_PCI);
bade5622
DM
686}
687
bade5622
DM
688static void pci_sun4v_base_address_update(struct pci_dev *pdev, int resource)
689{
690 struct pcidev_cookie *pcp = pdev->sysdata;
691 struct pci_pbm_info *pbm = pcp->pbm;
692 struct resource *res, *root;
693 u32 reg;
694 int where, size, is_64bit;
695
696 res = &pdev->resource[resource];
697 if (resource < 6) {
698 where = PCI_BASE_ADDRESS_0 + (resource * 4);
699 } else if (resource == PCI_ROM_RESOURCE) {
700 where = pdev->rom_base_reg;
701 } else {
702 /* Somebody might have asked allocation of a non-standard resource */
703 return;
704 }
705
c2609267 706 /* XXX 64-bit MEM handling is not %100 correct... XXX */
bade5622
DM
707 is_64bit = 0;
708 if (res->flags & IORESOURCE_IO)
709 root = &pbm->io_space;
710 else {
711 root = &pbm->mem_space;
712 if ((res->flags & PCI_BASE_ADDRESS_MEM_TYPE_MASK)
713 == PCI_BASE_ADDRESS_MEM_TYPE_64)
714 is_64bit = 1;
715 }
716
717 size = res->end - res->start;
718 pci_read_config_dword(pdev, where, &reg);
719 reg = ((reg & size) |
720 (((u32)(res->start - root->start)) & ~size));
721 if (resource == PCI_ROM_RESOURCE) {
722 reg |= PCI_ROM_ADDRESS_ENABLE;
723 res->flags |= IORESOURCE_ROM_ENABLE;
724 }
725 pci_write_config_dword(pdev, where, reg);
726
727 /* This knows that the upper 32-bits of the address
728 * must be zero. Our PCI common layer enforces this.
729 */
730 if (is_64bit)
731 pci_write_config_dword(pdev, where + 4, 0);
732}
733
bade5622
DM
734static void pci_sun4v_resource_adjust(struct pci_dev *pdev,
735 struct resource *res,
736 struct resource *root)
737{
738 res->start += root->start;
739 res->end += root->start;
740}
741
742/* Use ranges property to determine where PCI MEM, I/O, and Config
743 * space are for this PCI bus module.
744 */
745static void pci_sun4v_determine_mem_io_space(struct pci_pbm_info *pbm)
746{
221b2fb8 747 int i, saw_mem, saw_io;
bade5622 748
221b2fb8 749 saw_mem = saw_io = 0;
bade5622
DM
750 for (i = 0; i < pbm->num_pbm_ranges; i++) {
751 struct linux_prom_pci_ranges *pr = &pbm->pbm_ranges[i];
752 unsigned long a;
753 int type;
754
755 type = (pr->child_phys_hi >> 24) & 0x3;
756 a = (((unsigned long)pr->parent_phys_hi << 32UL) |
757 ((unsigned long)pr->parent_phys_lo << 0UL));
758
759 switch (type) {
bade5622
DM
760 case 1:
761 /* 16-bit IO space, 16MB */
762 pbm->io_space.start = a;
763 pbm->io_space.end = a + ((16UL*1024UL*1024UL) - 1UL);
764 pbm->io_space.flags = IORESOURCE_IO;
765 saw_io = 1;
766 break;
767
768 case 2:
769 /* 32-bit MEM space, 2GB */
770 pbm->mem_space.start = a;
771 pbm->mem_space.end = a + (0x80000000UL - 1UL);
772 pbm->mem_space.flags = IORESOURCE_MEM;
773 saw_mem = 1;
774 break;
775
c2609267
DM
776 case 3:
777 /* XXX 64-bit MEM handling XXX */
778
bade5622
DM
779 default:
780 break;
781 };
782 }
783
221b2fb8 784 if (!saw_io || !saw_mem) {
bade5622
DM
785 prom_printf("%s: Fatal error, missing %s PBM range.\n",
786 pbm->name,
221b2fb8 787 (!saw_io ? "IO" : "MEM"));
bade5622
DM
788 prom_halt();
789 }
790
221b2fb8 791 printk("%s: PCI IO[%lx] MEM[%lx]\n",
bade5622 792 pbm->name,
bade5622
DM
793 pbm->io_space.start,
794 pbm->mem_space.start);
795}
796
797static void pbm_register_toplevel_resources(struct pci_controller_info *p,
798 struct pci_pbm_info *pbm)
799{
800 pbm->io_space.name = pbm->mem_space.name = pbm->name;
801
802 request_resource(&ioport_resource, &pbm->io_space);
803 request_resource(&iomem_resource, &pbm->mem_space);
804 pci_register_legacy_regions(&pbm->io_space,
805 &pbm->mem_space);
806}
807
18397944
DM
808static void probe_existing_entries(struct pci_pbm_info *pbm,
809 struct pci_iommu *iommu)
810{
811 struct pci_iommu_arena *arena = &iommu->arena;
7c8f486a
DM
812 unsigned long i;
813 u32 devhandle;
18397944
DM
814
815 devhandle = pbm->devhandle;
816 for (i = 0; i < arena->limit; i++) {
817 unsigned long ret, io_attrs, ra;
818
819 ret = pci_sun4v_iommu_getmap(devhandle,
820 HV_PCI_TSBID(0, i),
821 &io_attrs, &ra);
822 if (ret == HV_EOK)
823 __set_bit(i, arena->map);
824 }
825}
826
bade5622
DM
827static void pci_sun4v_iommu_init(struct pci_pbm_info *pbm)
828{
18397944
DM
829 struct pci_iommu *iommu = pbm->iommu;
830 unsigned long num_tsb_entries, sz;
831 u32 vdma[2], dma_mask, dma_offset;
832 int err, tsbsize;
833
834 err = prom_getproperty(pbm->prom_node, "virtual-dma",
835 (char *)&vdma[0], sizeof(vdma));
836 if (err == 0 || err == -1) {
837 /* No property, use default values. */
838 vdma[0] = 0x80000000;
839 vdma[1] = 0x80000000;
840 }
841
842 dma_mask = vdma[0];
843 switch (vdma[1]) {
844 case 0x20000000:
845 dma_mask |= 0x1fffffff;
846 tsbsize = 64;
847 break;
848
849 case 0x40000000:
850 dma_mask |= 0x3fffffff;
851 tsbsize = 128;
852 break;
853
854 case 0x80000000:
855 dma_mask |= 0x7fffffff;
856 tsbsize = 128;
857 break;
858
859 default:
860 prom_printf("PCI-SUN4V: strange virtual-dma size.\n");
861 prom_halt();
862 };
863
864 num_tsb_entries = tsbsize / sizeof(iopte_t);
865
866 dma_offset = vdma[0];
867
868 /* Setup initial software IOMMU state. */
869 spin_lock_init(&iommu->lock);
870 iommu->ctx_lowest_free = 1;
871 iommu->page_table_map_base = dma_offset;
872 iommu->dma_addr_mask = dma_mask;
873
874 /* Allocate and initialize the free area map. */
875 sz = num_tsb_entries / 8;
876 sz = (sz + 7UL) & ~7UL;
877 iommu->arena.map = kmalloc(sz, GFP_KERNEL);
878 if (!iommu->arena.map) {
879 prom_printf("PCI_IOMMU: Error, kmalloc(arena.map) failed.\n");
880 prom_halt();
881 }
882 memset(iommu->arena.map, 0, sz);
883 iommu->arena.limit = num_tsb_entries;
884
885 probe_existing_entries(pbm, iommu);
bade5622
DM
886}
887
10804828
DM
888static void pci_sun4v_get_bus_range(struct pci_pbm_info *pbm)
889{
890 unsigned int busrange[2];
891 int prom_node = pbm->prom_node;
892 int err;
893
10804828
DM
894 err = prom_getproperty(prom_node, "bus-range",
895 (char *)&busrange[0],
896 sizeof(busrange));
897 if (err == 0 || err == -1) {
898 prom_printf("%s: Fatal error, no bus-range.\n", pbm->name);
899 prom_halt();
900 }
901
902 pbm->pci_first_busno = busrange[0];
903 pbm->pci_last_busno = busrange[1];
904
905}
906
7c8f486a 907static void pci_sun4v_pbm_init(struct pci_controller_info *p, int prom_node, u32 devhandle)
bade5622
DM
908{
909 struct pci_pbm_info *pbm;
3833789b 910 int err, i;
bade5622 911
3833789b
DM
912 if (devhandle & 0x40)
913 pbm = &p->pbm_B;
914 else
915 pbm = &p->pbm_A;
bade5622
DM
916
917 pbm->parent = p;
918 pbm->prom_node = prom_node;
919 pbm->pci_first_slot = 1;
920
3833789b 921 pbm->devhandle = devhandle;
bade5622
DM
922
923 sprintf(pbm->name, "SUN4V-PCI%d PBM%c",
924 p->index, (pbm == &p->pbm_A ? 'A' : 'B'));
925
987b6de7
DM
926 printk("%s: devhandle[%x] prom_node[%x:%x]\n",
927 pbm->name, pbm->devhandle,
928 pbm->prom_node, prom_getchild(pbm->prom_node));
bade5622
DM
929
930 prom_getstring(prom_node, "name",
931 pbm->prom_name, sizeof(pbm->prom_name));
932
933 err = prom_getproperty(prom_node, "ranges",
934 (char *) pbm->pbm_ranges,
935 sizeof(pbm->pbm_ranges));
936 if (err == 0 || err == -1) {
937 prom_printf("%s: Fatal error, no ranges property.\n",
938 pbm->name);
939 prom_halt();
940 }
941
942 pbm->num_pbm_ranges =
943 (err / sizeof(struct linux_prom_pci_ranges));
944
3833789b
DM
945 /* Mask out the top 8 bits of the ranges, leaving the real
946 * physical address.
947 */
948 for (i = 0; i < pbm->num_pbm_ranges; i++)
949 pbm->pbm_ranges[i].parent_phys_hi &= 0x0fffffff;
950
bade5622
DM
951 pci_sun4v_determine_mem_io_space(pbm);
952 pbm_register_toplevel_resources(p, pbm);
953
954 err = prom_getproperty(prom_node, "interrupt-map",
955 (char *)pbm->pbm_intmap,
956 sizeof(pbm->pbm_intmap));
957 if (err != -1) {
958 pbm->num_pbm_intmap = (err / sizeof(struct linux_prom_pci_intmap));
959 err = prom_getproperty(prom_node, "interrupt-map-mask",
960 (char *)&pbm->pbm_intmask,
961 sizeof(pbm->pbm_intmask));
962 if (err == -1) {
963 prom_printf("%s: Fatal error, no "
964 "interrupt-map-mask.\n", pbm->name);
965 prom_halt();
966 }
967 } else {
968 pbm->num_pbm_intmap = 0;
969 memset(&pbm->pbm_intmask, 0, sizeof(pbm->pbm_intmask));
970 }
971
10804828 972 pci_sun4v_get_bus_range(pbm);
bade5622
DM
973 pci_sun4v_iommu_init(pbm);
974}
975
8f6a93a1
DM
976void sun4v_pci_init(int node, char *model_name)
977{
bade5622
DM
978 struct pci_controller_info *p;
979 struct pci_iommu *iommu;
3833789b 980 struct linux_prom64_registers regs;
7c8f486a
DM
981 u32 devhandle;
982 int i;
3833789b
DM
983
984 prom_getproperty(node, "reg", (char *)&regs, sizeof(regs));
d5eb4004 985 devhandle = (regs.phys_addr >> 32UL) & 0x0fffffff;
3833789b
DM
986
987 for (p = pci_controller_root; p; p = p->next) {
988 struct pci_pbm_info *pbm;
989
990 if (p->pbm_A.prom_node && p->pbm_B.prom_node)
991 continue;
992
993 pbm = (p->pbm_A.prom_node ?
994 &p->pbm_A :
995 &p->pbm_B);
996
0b522497 997 if (pbm->devhandle == (devhandle ^ 0x40)) {
3833789b 998 pci_sun4v_pbm_init(p, node, devhandle);
0b522497
DM
999 return;
1000 }
3833789b 1001 }
bade5622 1002
7c8f486a
DM
1003 for (i = 0; i < NR_CPUS; i++) {
1004 unsigned long page = get_zeroed_page(GFP_ATOMIC);
1005
1006 if (!page)
1007 goto fatal_memory_error;
1008
1009 per_cpu(iommu_pglists, i).pglist = (u64 *) page;
bade5622 1010 }
7c8f486a
DM
1011
1012 p = kmalloc(sizeof(struct pci_controller_info), GFP_ATOMIC);
1013 if (!p)
1014 goto fatal_memory_error;
1015
bade5622
DM
1016 memset(p, 0, sizeof(*p));
1017
1018 iommu = kmalloc(sizeof(struct pci_iommu), GFP_ATOMIC);
7c8f486a
DM
1019 if (!iommu)
1020 goto fatal_memory_error;
1021
bade5622
DM
1022 memset(iommu, 0, sizeof(*iommu));
1023 p->pbm_A.iommu = iommu;
1024
1025 iommu = kmalloc(sizeof(struct pci_iommu), GFP_ATOMIC);
7c8f486a
DM
1026 if (!iommu)
1027 goto fatal_memory_error;
1028
bade5622
DM
1029 memset(iommu, 0, sizeof(*iommu));
1030 p->pbm_B.iommu = iommu;
1031
1032 p->next = pci_controller_root;
1033 pci_controller_root = p;
1034
1035 p->index = pci_num_controllers++;
1036 p->pbms_same_domain = 0;
1037
1038 p->scan_bus = pci_sun4v_scan_bus;
1039 p->irq_build = pci_sun4v_irq_build;
1040 p->base_address_update = pci_sun4v_base_address_update;
1041 p->resource_adjust = pci_sun4v_resource_adjust;
1042 p->pci_ops = &pci_sun4v_ops;
1043
1044 /* Like PSYCHO and SCHIZO we have a 2GB aligned area
1045 * for memory space.
1046 */
1047 pci_memspace_mask = 0x7fffffffUL;
1048
3833789b 1049 pci_sun4v_pbm_init(p, node, devhandle);
7c8f486a
DM
1050 return;
1051
1052fatal_memory_error:
1053 prom_printf("SUN4V_PCI: Fatal memory allocation error.\n");
1054 prom_halt();
8f6a93a1 1055}
This page took 0.07264 seconds and 5 git commands to generate.