1
2
3
4
5
6
7
8
9
10#undef DEBUG
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/interrupt.h>
15#include <linux/notifier.h>
16#include <linux/of.h>
17#include <linux/of_platform.h>
18#include <linux/slab.h>
19#include <linux/memblock.h>
20
21#include <asm/prom.h>
22#include <asm/iommu.h>
23#include <asm/machdep.h>
24#include <asm/pci-bridge.h>
25#include <asm/udbg.h>
26#include <asm/firmware.h>
27#include <asm/cell-regs.h>
28
29#include "cell.h"
30#include "interrupt.h"
31
32
33
34
35
36
37#define CELL_IOMMU_REAL_UNMAP
38
39
40
41
42
43
44#define CELL_IOMMU_STRICT_PROTECTION
45
46
47#define NR_IOMMUS 2
48
49
50#define IOC_Reg_Size 0x2000
51
52#define IOC_IOPT_CacheInvd 0x908
53#define IOC_IOPT_CacheInvd_NE_Mask 0xffe0000000000000ul
54#define IOC_IOPT_CacheInvd_IOPTE_Mask 0x000003fffffffff8ul
55#define IOC_IOPT_CacheInvd_Busy 0x0000000000000001ul
56
57#define IOC_IOST_Origin 0x918
58#define IOC_IOST_Origin_E 0x8000000000000000ul
59#define IOC_IOST_Origin_HW 0x0000000000000800ul
60#define IOC_IOST_Origin_HL 0x0000000000000400ul
61
62#define IOC_IO_ExcpStat 0x920
63#define IOC_IO_ExcpStat_V 0x8000000000000000ul
64#define IOC_IO_ExcpStat_SPF_Mask 0x6000000000000000ul
65#define IOC_IO_ExcpStat_SPF_S 0x6000000000000000ul
66#define IOC_IO_ExcpStat_SPF_P 0x2000000000000000ul
67#define IOC_IO_ExcpStat_ADDR_Mask 0x00000007fffff000ul
68#define IOC_IO_ExcpStat_RW_Mask 0x0000000000000800ul
69#define IOC_IO_ExcpStat_IOID_Mask 0x00000000000007fful
70
71#define IOC_IO_ExcpMask 0x928
72#define IOC_IO_ExcpMask_SFE 0x4000000000000000ul
73#define IOC_IO_ExcpMask_PFE 0x2000000000000000ul
74
75#define IOC_IOCmd_Offset 0x1000
76
77#define IOC_IOCmd_Cfg 0xc00
78#define IOC_IOCmd_Cfg_TE 0x0000800000000000ul
79
80
81
82#define IOSTE_V 0x8000000000000000ul
83#define IOSTE_H 0x4000000000000000ul
84#define IOSTE_PT_Base_RPN_Mask 0x3ffffffffffff000ul
85#define IOSTE_NPPT_Mask 0x0000000000000fe0ul
86#define IOSTE_PS_Mask 0x0000000000000007ul
87#define IOSTE_PS_4K 0x0000000000000001ul
88#define IOSTE_PS_64K 0x0000000000000003ul
89#define IOSTE_PS_1M 0x0000000000000005ul
90#define IOSTE_PS_16M 0x0000000000000007ul
91
92
93
94#define IO_SEGMENT_SHIFT 28
95#define IO_PAGENO_BITS(shift) (IO_SEGMENT_SHIFT - (shift))
96
97
98#define SPIDER_DMA_OFFSET 0x80000000ul
99
100struct iommu_window {
101 struct list_head list;
102 struct cbe_iommu *iommu;
103 unsigned long offset;
104 unsigned long size;
105 unsigned int ioid;
106 struct iommu_table table;
107};
108
109#define NAMESIZE 8
110struct cbe_iommu {
111 int nid;
112 char name[NAMESIZE];
113 void __iomem *xlate_regs;
114 void __iomem *cmd_regs;
115 unsigned long *stab;
116 unsigned long *ptab;
117 void *pad_page;
118 struct list_head windows;
119};
120
121
122
123
124
125
126static struct cbe_iommu iommus[NR_IOMMUS];
127static int cbe_nr_iommus;
128
129static void invalidate_tce_cache(struct cbe_iommu *iommu, unsigned long *pte,
130 long n_ptes)
131{
132 u64 __iomem *reg;
133 u64 val;
134 long n;
135
136 reg = iommu->xlate_regs + IOC_IOPT_CacheInvd;
137
138 while (n_ptes > 0) {
139
140 n = min(n_ptes, 1l << 11);
141 val = (((n ) << 53) & IOC_IOPT_CacheInvd_NE_Mask)
142 | (__pa(pte) & IOC_IOPT_CacheInvd_IOPTE_Mask)
143 | IOC_IOPT_CacheInvd_Busy;
144
145 out_be64(reg, val);
146 while (in_be64(reg) & IOC_IOPT_CacheInvd_Busy)
147 ;
148
149 n_ptes -= n;
150 pte += n;
151 }
152}
153
154static int tce_build_cell(struct iommu_table *tbl, long index, long npages,
155 unsigned long uaddr, enum dma_data_direction direction,
156 unsigned long attrs)
157{
158 int i;
159 unsigned long *io_pte, base_pte;
160 struct iommu_window *window =
161 container_of(tbl, struct iommu_window, table);
162
163
164
165
166#ifdef CELL_IOMMU_STRICT_PROTECTION
167
168
169
170
171
172
173 const unsigned long prot = 0xc48;
174 base_pte =
175 ((prot << (52 + 4 * direction)) &
176 (CBE_IOPTE_PP_W | CBE_IOPTE_PP_R)) |
177 CBE_IOPTE_M | CBE_IOPTE_SO_RW |
178 (window->ioid & CBE_IOPTE_IOID_Mask);
179#else
180 base_pte = CBE_IOPTE_PP_W | CBE_IOPTE_PP_R | CBE_IOPTE_M |
181 CBE_IOPTE_SO_RW | (window->ioid & CBE_IOPTE_IOID_Mask);
182#endif
183 if (unlikely(attrs & DMA_ATTR_WEAK_ORDERING))
184 base_pte &= ~CBE_IOPTE_SO_RW;
185
186 io_pte = (unsigned long *)tbl->it_base + (index - tbl->it_offset);
187
188 for (i = 0; i < npages; i++, uaddr += (1 << tbl->it_page_shift))
189 io_pte[i] = base_pte | (__pa(uaddr) & CBE_IOPTE_RPN_Mask);
190
191 mb();
192
193 invalidate_tce_cache(window->iommu, io_pte, npages);
194
195 pr_debug("tce_build_cell(index=%lx,n=%lx,dir=%d,base_pte=%lx)\n",
196 index, npages, direction, base_pte);
197 return 0;
198}
199
200static void tce_free_cell(struct iommu_table *tbl, long index, long npages)
201{
202
203 int i;
204 unsigned long *io_pte, pte;
205 struct iommu_window *window =
206 container_of(tbl, struct iommu_window, table);
207
208 pr_debug("tce_free_cell(index=%lx,n=%lx)\n", index, npages);
209
210#ifdef CELL_IOMMU_REAL_UNMAP
211 pte = 0;
212#else
213
214
215 pte = CBE_IOPTE_PP_R | CBE_IOPTE_M | CBE_IOPTE_SO_RW |
216 __pa(window->iommu->pad_page) |
217 (window->ioid & CBE_IOPTE_IOID_Mask);
218#endif
219
220 io_pte = (unsigned long *)tbl->it_base + (index - tbl->it_offset);
221
222 for (i = 0; i < npages; i++)
223 io_pte[i] = pte;
224
225 mb();
226
227 invalidate_tce_cache(window->iommu, io_pte, npages);
228}
229
230static irqreturn_t ioc_interrupt(int irq, void *data)
231{
232 unsigned long stat, spf;
233 struct cbe_iommu *iommu = data;
234
235 stat = in_be64(iommu->xlate_regs + IOC_IO_ExcpStat);
236 spf = stat & IOC_IO_ExcpStat_SPF_Mask;
237
238
239 printk(KERN_ERR "iommu: DMA exception 0x%016lx\n", stat);
240 printk(KERN_ERR " V=%d, SPF=[%c%c], RW=%s, IOID=0x%04x\n",
241 !!(stat & IOC_IO_ExcpStat_V),
242 (spf == IOC_IO_ExcpStat_SPF_S) ? 'S' : ' ',
243 (spf == IOC_IO_ExcpStat_SPF_P) ? 'P' : ' ',
244 (stat & IOC_IO_ExcpStat_RW_Mask) ? "Read" : "Write",
245 (unsigned int)(stat & IOC_IO_ExcpStat_IOID_Mask));
246 printk(KERN_ERR " page=0x%016lx\n",
247 stat & IOC_IO_ExcpStat_ADDR_Mask);
248
249
250 stat &= ~IOC_IO_ExcpStat_V;
251 out_be64(iommu->xlate_regs + IOC_IO_ExcpStat, stat);
252
253 return IRQ_HANDLED;
254}
255
256static int __init cell_iommu_find_ioc(int nid, unsigned long *base)
257{
258 struct device_node *np;
259 struct resource r;
260
261 *base = 0;
262
263
264 for_each_node_by_name(np, "ioc") {
265 if (of_node_to_nid(np) != nid)
266 continue;
267 if (of_address_to_resource(np, 0, &r)) {
268 printk(KERN_ERR "iommu: can't get address for %pOF\n",
269 np);
270 continue;
271 }
272 *base = r.start;
273 of_node_put(np);
274 return 0;
275 }
276
277
278 for_each_node_by_type(np, "cpu") {
279 const unsigned int *nidp;
280 const unsigned long *tmp;
281
282 nidp = of_get_property(np, "node-id", NULL);
283 if (nidp && *nidp == nid) {
284 tmp = of_get_property(np, "ioc-translation", NULL);
285 if (tmp) {
286 *base = *tmp;
287 of_node_put(np);
288 return 0;
289 }
290 }
291 }
292
293 return -ENODEV;
294}
295
296static void __init cell_iommu_setup_stab(struct cbe_iommu *iommu,
297 unsigned long dbase, unsigned long dsize,
298 unsigned long fbase, unsigned long fsize)
299{
300 struct page *page;
301 unsigned long segments, stab_size;
302
303 segments = max(dbase + dsize, fbase + fsize) >> IO_SEGMENT_SHIFT;
304
305 pr_debug("%s: iommu[%d]: segments: %lu\n",
306 __func__, iommu->nid, segments);
307
308
309 stab_size = segments * sizeof(unsigned long);
310 page = alloc_pages_node(iommu->nid, GFP_KERNEL, get_order(stab_size));
311 BUG_ON(!page);
312 iommu->stab = page_address(page);
313 memset(iommu->stab, 0, stab_size);
314}
315
316static unsigned long *__init cell_iommu_alloc_ptab(struct cbe_iommu *iommu,
317 unsigned long base, unsigned long size, unsigned long gap_base,
318 unsigned long gap_size, unsigned long page_shift)
319{
320 struct page *page;
321 int i;
322 unsigned long reg, segments, pages_per_segment, ptab_size,
323 n_pte_pages, start_seg, *ptab;
324
325 start_seg = base >> IO_SEGMENT_SHIFT;
326 segments = size >> IO_SEGMENT_SHIFT;
327 pages_per_segment = 1ull << IO_PAGENO_BITS(page_shift);
328
329 pages_per_segment = max(pages_per_segment,
330 (1 << 12) / sizeof(unsigned long));
331
332 ptab_size = segments * pages_per_segment * sizeof(unsigned long);
333 pr_debug("%s: iommu[%d]: ptab_size: %lu, order: %d\n", __func__,
334 iommu->nid, ptab_size, get_order(ptab_size));
335 page = alloc_pages_node(iommu->nid, GFP_KERNEL, get_order(ptab_size));
336 BUG_ON(!page);
337
338 ptab = page_address(page);
339 memset(ptab, 0, ptab_size);
340
341
342 n_pte_pages = (pages_per_segment * sizeof(unsigned long)) >> 12;
343
344 pr_debug("%s: iommu[%d]: stab at %p, ptab at %p, n_pte_pages: %lu\n",
345 __func__, iommu->nid, iommu->stab, ptab,
346 n_pte_pages);
347
348
349 reg = IOSTE_V | ((n_pte_pages - 1) << 5);
350
351 switch (page_shift) {
352 case 12: reg |= IOSTE_PS_4K; break;
353 case 16: reg |= IOSTE_PS_64K; break;
354 case 20: reg |= IOSTE_PS_1M; break;
355 case 24: reg |= IOSTE_PS_16M; break;
356 default: BUG();
357 }
358
359 gap_base = gap_base >> IO_SEGMENT_SHIFT;
360 gap_size = gap_size >> IO_SEGMENT_SHIFT;
361
362 pr_debug("Setting up IOMMU stab:\n");
363 for (i = start_seg; i < (start_seg + segments); i++) {
364 if (i >= gap_base && i < (gap_base + gap_size)) {
365 pr_debug("\toverlap at %d, skipping\n", i);
366 continue;
367 }
368 iommu->stab[i] = reg | (__pa(ptab) + (n_pte_pages << 12) *
369 (i - start_seg));
370 pr_debug("\t[%d] 0x%016lx\n", i, iommu->stab[i]);
371 }
372
373 return ptab;
374}
375
376static void __init cell_iommu_enable_hardware(struct cbe_iommu *iommu)
377{
378 int ret;
379 unsigned long reg, xlate_base;
380 unsigned int virq;
381
382 if (cell_iommu_find_ioc(iommu->nid, &xlate_base))
383 panic("%s: missing IOC register mappings for node %d\n",
384 __func__, iommu->nid);
385
386 iommu->xlate_regs = ioremap(xlate_base, IOC_Reg_Size);
387 iommu->cmd_regs = iommu->xlate_regs + IOC_IOCmd_Offset;
388
389
390 mb();
391
392
393 reg = in_be64(iommu->xlate_regs + IOC_IO_ExcpStat);
394 out_be64(iommu->xlate_regs + IOC_IO_ExcpStat,
395 reg & ~IOC_IO_ExcpStat_V);
396 out_be64(iommu->xlate_regs + IOC_IO_ExcpMask,
397 IOC_IO_ExcpMask_PFE | IOC_IO_ExcpMask_SFE);
398
399 virq = irq_create_mapping(NULL,
400 IIC_IRQ_IOEX_ATI | (iommu->nid << IIC_IRQ_NODE_SHIFT));
401 BUG_ON(!virq);
402
403 ret = request_irq(virq, ioc_interrupt, 0, iommu->name, iommu);
404 BUG_ON(ret);
405
406
407 reg = IOC_IOST_Origin_E | __pa(iommu->stab) | IOC_IOST_Origin_HW;
408 out_be64(iommu->xlate_regs + IOC_IOST_Origin, reg);
409 in_be64(iommu->xlate_regs + IOC_IOST_Origin);
410
411
412 reg = in_be64(iommu->cmd_regs + IOC_IOCmd_Cfg) | IOC_IOCmd_Cfg_TE;
413 out_be64(iommu->cmd_regs + IOC_IOCmd_Cfg, reg);
414}
415
416static void __init cell_iommu_setup_hardware(struct cbe_iommu *iommu,
417 unsigned long base, unsigned long size)
418{
419 cell_iommu_setup_stab(iommu, base, size, 0, 0);
420 iommu->ptab = cell_iommu_alloc_ptab(iommu, base, size, 0, 0,
421 IOMMU_PAGE_SHIFT_4K);
422 cell_iommu_enable_hardware(iommu);
423}
424
425#if 0
426static struct iommu_window *find_window(struct cbe_iommu *iommu,
427 unsigned long offset, unsigned long size)
428{
429 struct iommu_window *window;
430
431
432
433 list_for_each_entry(window, &(iommu->windows), list) {
434 if (window->offset == offset && window->size == size)
435 return window;
436 }
437
438 return NULL;
439}
440#endif
441
442static inline u32 cell_iommu_get_ioid(struct device_node *np)
443{
444 const u32 *ioid;
445
446 ioid = of_get_property(np, "ioid", NULL);
447 if (ioid == NULL) {
448 printk(KERN_WARNING "iommu: missing ioid for %pOF using 0\n",
449 np);
450 return 0;
451 }
452
453 return *ioid;
454}
455
456static struct iommu_table_ops cell_iommu_ops = {
457 .set = tce_build_cell,
458 .clear = tce_free_cell
459};
460
461static struct iommu_window * __init
462cell_iommu_setup_window(struct cbe_iommu *iommu, struct device_node *np,
463 unsigned long offset, unsigned long size,
464 unsigned long pte_offset)
465{
466 struct iommu_window *window;
467 struct page *page;
468 u32 ioid;
469
470 ioid = cell_iommu_get_ioid(np);
471
472 window = kzalloc_node(sizeof(*window), GFP_KERNEL, iommu->nid);
473 BUG_ON(window == NULL);
474
475 window->offset = offset;
476 window->size = size;
477 window->ioid = ioid;
478 window->iommu = iommu;
479
480 window->table.it_blocksize = 16;
481 window->table.it_base = (unsigned long)iommu->ptab;
482 window->table.it_index = iommu->nid;
483 window->table.it_page_shift = IOMMU_PAGE_SHIFT_4K;
484 window->table.it_offset =
485 (offset >> window->table.it_page_shift) + pte_offset;
486 window->table.it_size = size >> window->table.it_page_shift;
487 window->table.it_ops = &cell_iommu_ops;
488
489 if (!iommu_init_table(&window->table, iommu->nid, 0, 0))
490 panic("Failed to initialize iommu table");
491
492 pr_debug("\tioid %d\n", window->ioid);
493 pr_debug("\tblocksize %ld\n", window->table.it_blocksize);
494 pr_debug("\tbase 0x%016lx\n", window->table.it_base);
495 pr_debug("\toffset 0x%lx\n", window->table.it_offset);
496 pr_debug("\tsize %ld\n", window->table.it_size);
497
498 list_add(&window->list, &iommu->windows);
499
500 if (offset != 0)
501 return window;
502
503
504
505
506
507
508
509
510 page = alloc_pages_node(iommu->nid, GFP_KERNEL, 0);
511 BUG_ON(!page);
512 iommu->pad_page = page_address(page);
513 clear_page(iommu->pad_page);
514
515 __set_bit(0, window->table.it_map);
516 tce_build_cell(&window->table, window->table.it_offset, 1,
517 (unsigned long)iommu->pad_page, DMA_TO_DEVICE, 0);
518
519 return window;
520}
521
522static struct cbe_iommu *cell_iommu_for_node(int nid)
523{
524 int i;
525
526 for (i = 0; i < cbe_nr_iommus; i++)
527 if (iommus[i].nid == nid)
528 return &iommus[i];
529 return NULL;
530}
531
532static unsigned long cell_dma_nommu_offset;
533
534static unsigned long dma_iommu_fixed_base;
535static bool cell_iommu_enabled;
536
537
538bool iommu_fixed_is_weak;
539
540static struct iommu_table *cell_get_iommu_table(struct device *dev)
541{
542 struct iommu_window *window;
543 struct cbe_iommu *iommu;
544
545
546
547
548
549 iommu = cell_iommu_for_node(dev_to_node(dev));
550 if (iommu == NULL || list_empty(&iommu->windows)) {
551 dev_err(dev, "iommu: missing iommu for %pOF (node %d)\n",
552 dev->of_node, dev_to_node(dev));
553 return NULL;
554 }
555 window = list_entry(iommu->windows.next, struct iommu_window, list);
556
557 return &window->table;
558}
559
560static u64 cell_iommu_get_fixed_address(struct device *dev);
561
562static void cell_dma_dev_setup(struct device *dev)
563{
564 if (cell_iommu_enabled) {
565 u64 addr = cell_iommu_get_fixed_address(dev);
566
567 if (addr != OF_BAD_ADDR)
568 dev->archdata.dma_offset = addr + dma_iommu_fixed_base;
569 set_iommu_table_base(dev, cell_get_iommu_table(dev));
570 } else {
571 dev->archdata.dma_offset = cell_dma_nommu_offset;
572 }
573}
574
575static void cell_pci_dma_dev_setup(struct pci_dev *dev)
576{
577 cell_dma_dev_setup(&dev->dev);
578}
579
580static int cell_of_bus_notify(struct notifier_block *nb, unsigned long action,
581 void *data)
582{
583 struct device *dev = data;
584
585
586 if (action != BUS_NOTIFY_ADD_DEVICE)
587 return 0;
588
589 if (cell_iommu_enabled)
590 dev->dma_ops = &dma_iommu_ops;
591 cell_dma_dev_setup(dev);
592 return 0;
593}
594
595static struct notifier_block cell_of_bus_notifier = {
596 .notifier_call = cell_of_bus_notify
597};
598
599static int __init cell_iommu_get_window(struct device_node *np,
600 unsigned long *base,
601 unsigned long *size)
602{
603 const __be32 *dma_window;
604 unsigned long index;
605
606
607 dma_window = of_get_property(np, "ibm,dma-window", NULL);
608 if (dma_window == NULL) {
609 *base = 0;
610 *size = 0x80000000u;
611 return -ENODEV;
612 }
613
614 of_parse_dma_window(np, dma_window, &index, base, size);
615 return 0;
616}
617
618static struct cbe_iommu * __init cell_iommu_alloc(struct device_node *np)
619{
620 struct cbe_iommu *iommu;
621 int nid, i;
622
623
624 nid = of_node_to_nid(np);
625 if (nid < 0) {
626 printk(KERN_ERR "iommu: failed to get node for %pOF\n",
627 np);
628 return NULL;
629 }
630 pr_debug("iommu: setting up iommu for node %d (%pOF)\n",
631 nid, np);
632
633
634
635
636
637
638
639
640
641 if (cbe_nr_iommus >= NR_IOMMUS) {
642 printk(KERN_ERR "iommu: too many IOMMUs detected ! (%pOF)\n",
643 np);
644 return NULL;
645 }
646
647
648 i = cbe_nr_iommus++;
649 iommu = &iommus[i];
650 iommu->stab = NULL;
651 iommu->nid = nid;
652 snprintf(iommu->name, sizeof(iommu->name), "iommu%d", i);
653 INIT_LIST_HEAD(&iommu->windows);
654
655 return iommu;
656}
657
658static void __init cell_iommu_init_one(struct device_node *np,
659 unsigned long offset)
660{
661 struct cbe_iommu *iommu;
662 unsigned long base, size;
663
664 iommu = cell_iommu_alloc(np);
665 if (!iommu)
666 return;
667
668
669 cell_iommu_get_window(np, &base, &size);
670
671 pr_debug("\ttranslating window 0x%lx...0x%lx\n",
672 base, base + size - 1);
673
674
675 cell_iommu_setup_hardware(iommu, base, size);
676
677
678 cell_iommu_setup_window(iommu, np, base, size,
679 offset >> IOMMU_PAGE_SHIFT_4K);
680}
681
682static void __init cell_disable_iommus(void)
683{
684 int node;
685 unsigned long base, val;
686 void __iomem *xregs, *cregs;
687
688
689 for_each_online_node(node) {
690 if (cell_iommu_find_ioc(node, &base))
691 continue;
692 xregs = ioremap(base, IOC_Reg_Size);
693 if (xregs == NULL)
694 continue;
695 cregs = xregs + IOC_IOCmd_Offset;
696
697 pr_debug("iommu: cleaning up iommu on node %d\n", node);
698
699 out_be64(xregs + IOC_IOST_Origin, 0);
700 (void)in_be64(xregs + IOC_IOST_Origin);
701 val = in_be64(cregs + IOC_IOCmd_Cfg);
702 val &= ~IOC_IOCmd_Cfg_TE;
703 out_be64(cregs + IOC_IOCmd_Cfg, val);
704 (void)in_be64(cregs + IOC_IOCmd_Cfg);
705
706 iounmap(xregs);
707 }
708}
709
710static int __init cell_iommu_init_disabled(void)
711{
712 struct device_node *np = NULL;
713 unsigned long base = 0, size;
714
715
716
717
718 cell_disable_iommus();
719
720
721 if (of_find_node_by_name(NULL, "axon") == NULL)
722 cell_dma_nommu_offset = SPIDER_DMA_OFFSET;
723
724
725
726
727
728
729
730 for_each_node_by_name(np, "axon") {
731 if (np->parent == NULL || np->parent->parent != NULL)
732 continue;
733 if (cell_iommu_get_window(np, &base, &size) == 0)
734 break;
735 }
736 if (np == NULL) {
737 for_each_node_by_name(np, "pci-internal") {
738 if (np->parent == NULL || np->parent->parent != NULL)
739 continue;
740 if (cell_iommu_get_window(np, &base, &size) == 0)
741 break;
742 }
743 }
744 of_node_put(np);
745
746
747
748
749 if (np && size < memblock_end_of_DRAM()) {
750 printk(KERN_WARNING "iommu: force-enabled, dma window"
751 " (%ldMB) smaller than total memory (%lldMB)\n",
752 size >> 20, memblock_end_of_DRAM() >> 20);
753 return -ENODEV;
754 }
755
756 cell_dma_nommu_offset += base;
757
758 if (cell_dma_nommu_offset != 0)
759 cell_pci_controller_ops.dma_dev_setup = cell_pci_dma_dev_setup;
760
761 printk("iommu: disabled, direct DMA offset is 0x%lx\n",
762 cell_dma_nommu_offset);
763
764 return 0;
765}
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793static u64 cell_iommu_get_fixed_address(struct device *dev)
794{
795 u64 cpu_addr, size, best_size, dev_addr = OF_BAD_ADDR;
796 struct device_node *np;
797 const u32 *ranges = NULL;
798 int i, len, best, naddr, nsize, pna, range_size;
799
800
801 np = of_node_get(dev->of_node);
802 if (!np)
803 goto out;
804
805 while (1) {
806 naddr = of_n_addr_cells(np);
807 nsize = of_n_size_cells(np);
808 np = of_get_next_parent(np);
809 if (!np)
810 break;
811
812 ranges = of_get_property(np, "dma-ranges", &len);
813
814
815 if (ranges && len > 0)
816 break;
817 }
818
819 if (!ranges) {
820 dev_dbg(dev, "iommu: no dma-ranges found\n");
821 goto out;
822 }
823
824 len /= sizeof(u32);
825
826 pna = of_n_addr_cells(np);
827 range_size = naddr + nsize + pna;
828
829
830
831
832
833
834 for (i = 0, best = -1, best_size = 0; i < len; i += range_size) {
835 cpu_addr = of_translate_dma_address(np, ranges + i + naddr);
836 size = of_read_number(ranges + i + naddr + pna, nsize);
837
838 if (cpu_addr == 0 && size > best_size) {
839 best = i;
840 best_size = size;
841 }
842 }
843
844 if (best >= 0) {
845 dev_addr = of_read_number(ranges + best, naddr);
846 } else
847 dev_dbg(dev, "iommu: no suitable range found!\n");
848
849out:
850 of_node_put(np);
851
852 return dev_addr;
853}
854
855static bool cell_pci_iommu_bypass_supported(struct pci_dev *pdev, u64 mask)
856{
857 return mask == DMA_BIT_MASK(64) &&
858 cell_iommu_get_fixed_address(&pdev->dev) != OF_BAD_ADDR;
859}
860
861static void __init insert_16M_pte(unsigned long addr, unsigned long *ptab,
862 unsigned long base_pte)
863{
864 unsigned long segment, offset;
865
866 segment = addr >> IO_SEGMENT_SHIFT;
867 offset = (addr >> 24) - (segment << IO_PAGENO_BITS(24));
868 ptab = ptab + (segment * (1 << 12) / sizeof(unsigned long));
869
870 pr_debug("iommu: addr %lx ptab %p segment %lx offset %lx\n",
871 addr, ptab, segment, offset);
872
873 ptab[offset] = base_pte | (__pa(addr) & CBE_IOPTE_RPN_Mask);
874}
875
876static void __init cell_iommu_setup_fixed_ptab(struct cbe_iommu *iommu,
877 struct device_node *np, unsigned long dbase, unsigned long dsize,
878 unsigned long fbase, unsigned long fsize)
879{
880 unsigned long base_pte, uaddr, ioaddr, *ptab;
881
882 ptab = cell_iommu_alloc_ptab(iommu, fbase, fsize, dbase, dsize, 24);
883
884 dma_iommu_fixed_base = fbase;
885
886 pr_debug("iommu: mapping 0x%lx pages from 0x%lx\n", fsize, fbase);
887
888 base_pte = CBE_IOPTE_PP_W | CBE_IOPTE_PP_R | CBE_IOPTE_M |
889 (cell_iommu_get_ioid(np) & CBE_IOPTE_IOID_Mask);
890
891 if (iommu_fixed_is_weak)
892 pr_info("IOMMU: Using weak ordering for fixed mapping\n");
893 else {
894 pr_info("IOMMU: Using strong ordering for fixed mapping\n");
895 base_pte |= CBE_IOPTE_SO_RW;
896 }
897
898 for (uaddr = 0; uaddr < fsize; uaddr += (1 << 24)) {
899
900 ioaddr = uaddr + fbase;
901 if (ioaddr >= dbase && ioaddr < (dbase + dsize)) {
902 pr_debug("iommu: fixed/dynamic overlap, skipping\n");
903 continue;
904 }
905
906 insert_16M_pte(uaddr, ptab, base_pte);
907 }
908
909 mb();
910}
911
912static int __init cell_iommu_fixed_mapping_init(void)
913{
914 unsigned long dbase, dsize, fbase, fsize, hbase, hend;
915 struct cbe_iommu *iommu;
916 struct device_node *np;
917
918
919 np = of_find_node_by_name(NULL, "axon");
920 of_node_put(np);
921
922 if (!np) {
923 pr_debug("iommu: fixed mapping disabled, no axons found\n");
924 return -1;
925 }
926
927
928 np = of_find_node_with_property(NULL, "dma-ranges");
929 of_node_put(np);
930
931 if (!np) {
932 pr_debug("iommu: no dma-ranges found, no fixed mapping\n");
933 return -1;
934 }
935
936
937
938
939
940
941 fbase = 0;
942 for_each_node_by_name(np, "axon") {
943 cell_iommu_get_window(np, &dbase, &dsize);
944 fbase = max(fbase, dbase + dsize);
945 }
946
947 fbase = ALIGN(fbase, 1 << IO_SEGMENT_SHIFT);
948 fsize = memblock_phys_mem_size();
949
950 if ((fbase + fsize) <= 0x800000000ul)
951 hbase = 0;
952 else {
953
954
955
956
957
958
959 if (!htab_address) {
960 pr_debug("iommu: htab is NULL, on LPAR? Huh?\n");
961 return -1;
962 }
963 hbase = __pa(htab_address);
964 hend = hbase + htab_size_bytes;
965
966
967 if ((hbase != ALIGN(hbase, 1 << IO_SEGMENT_SHIFT)) ||
968 (hend != ALIGN(hend, 1 << IO_SEGMENT_SHIFT))) {
969 pr_debug("iommu: hash window not segment aligned\n");
970 return -1;
971 }
972
973
974 for_each_node_by_name(np, "axon") {
975 cell_iommu_get_window(np, &dbase, &dsize);
976
977 if (hbase < dbase || (hend > (dbase + dsize))) {
978 pr_debug("iommu: hash window doesn't fit in"
979 "real DMA window\n");
980 of_node_put(np);
981 return -1;
982 }
983 }
984
985 fbase = 0;
986 }
987
988
989 for_each_node_by_name(np, "axon") {
990 iommu = cell_iommu_alloc(np);
991 BUG_ON(!iommu);
992
993 if (hbase == 0)
994 cell_iommu_get_window(np, &dbase, &dsize);
995 else {
996 dbase = hbase;
997 dsize = htab_size_bytes;
998 }
999
1000 printk(KERN_DEBUG "iommu: node %d, dynamic window 0x%lx-0x%lx "
1001 "fixed window 0x%lx-0x%lx\n", iommu->nid, dbase,
1002 dbase + dsize, fbase, fbase + fsize);
1003
1004 cell_iommu_setup_stab(iommu, dbase, dsize, fbase, fsize);
1005 iommu->ptab = cell_iommu_alloc_ptab(iommu, dbase, dsize, 0, 0,
1006 IOMMU_PAGE_SHIFT_4K);
1007 cell_iommu_setup_fixed_ptab(iommu, np, dbase, dsize,
1008 fbase, fsize);
1009 cell_iommu_enable_hardware(iommu);
1010 cell_iommu_setup_window(iommu, np, dbase, dsize, 0);
1011 }
1012
1013 cell_pci_controller_ops.iommu_bypass_supported =
1014 cell_pci_iommu_bypass_supported;
1015 return 0;
1016}
1017
1018static int iommu_fixed_disabled;
1019
1020static int __init setup_iommu_fixed(char *str)
1021{
1022 struct device_node *pciep;
1023
1024 if (strcmp(str, "off") == 0)
1025 iommu_fixed_disabled = 1;
1026
1027
1028
1029
1030
1031
1032 pciep = of_find_node_by_type(NULL, "pcie-endpoint");
1033
1034 if (strcmp(str, "weak") == 0 || (pciep && strcmp(str, "strong") != 0))
1035 iommu_fixed_is_weak = true;
1036
1037 of_node_put(pciep);
1038
1039 return 1;
1040}
1041__setup("iommu_fixed=", setup_iommu_fixed);
1042
1043static int __init cell_iommu_init(void)
1044{
1045 struct device_node *np;
1046
1047
1048
1049
1050
1051
1052 if (iommu_is_off ||
1053 (!iommu_force_on && memblock_end_of_DRAM() <= 0x80000000ull))
1054 if (cell_iommu_init_disabled() == 0)
1055 goto bail;
1056
1057
1058 cell_pci_controller_ops.dma_dev_setup = cell_pci_dma_dev_setup;
1059
1060 if (!iommu_fixed_disabled && cell_iommu_fixed_mapping_init() == 0)
1061 goto done;
1062
1063
1064 for_each_node_by_name(np, "axon") {
1065 if (np->parent == NULL || np->parent->parent != NULL)
1066 continue;
1067 cell_iommu_init_one(np, 0);
1068 }
1069
1070
1071
1072
1073 for_each_node_by_name(np, "pci-internal") {
1074 if (np->parent == NULL || np->parent->parent != NULL)
1075 continue;
1076 cell_iommu_init_one(np, SPIDER_DMA_OFFSET);
1077 }
1078 done:
1079
1080 set_pci_dma_ops(&dma_iommu_ops);
1081 cell_iommu_enabled = true;
1082 bail:
1083
1084
1085
1086 bus_register_notifier(&platform_bus_type, &cell_of_bus_notifier);
1087
1088 return 0;
1089}
1090machine_arch_initcall(cell, cell_iommu_init);
1091