1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * This file manages the translation entries for the IBM Calgary IOMMU.
5 * Derived from arch/powerpc/platforms/pseries/iommu.c
7 * Copyright (C) IBM Corporation, 2006
9 * Author: Jon Mason <jdmason@us.ibm.com>
10 * Author: Muli Ben-Yehuda <muli@il.ibm.com>
13 #include <linux/types.h>
14 #include <linux/slab.h>
16 #include <linux/spinlock.h>
17 #include <linux/string.h>
18 #include <linux/pci.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/memblock.h>
22 #include <asm/calgary.h>
23 #include <asm/proto.h>
24 #include <asm/cacheflush.h>
26 /* flush a tce at 'tceaddr' to main memory */
27 static inline void flush_tce(void* tceaddr
)
29 /* a single tce can't cross a cache line */
30 if (boot_cpu_has(X86_FEATURE_CLFLUSH
))
36 void tce_build(struct iommu_table
*tbl
, unsigned long index
,
37 unsigned int npages
, unsigned long uaddr
, int direction
)
43 t
= (1 << TCE_READ_SHIFT
);
44 if (direction
!= DMA_TO_DEVICE
)
45 t
|= (1 << TCE_WRITE_SHIFT
);
47 tp
= ((u64
*)tbl
->it_base
) + index
;
50 rpn
= (virt_to_bus((void*)uaddr
)) >> PAGE_SHIFT
;
52 t
|= (rpn
<< TCE_RPN_SHIFT
);
62 void tce_free(struct iommu_table
*tbl
, long index
, unsigned int npages
)
66 tp
= ((u64
*)tbl
->it_base
) + index
;
75 static inline unsigned int table_size_to_number_of_entries(unsigned char size
)
78 * size is the order of the table, 0-7
79 * smallest table is 8K entries, so shift result by 13 to
82 return (1 << size
) << 13;
85 static int tce_table_setparms(struct pci_dev
*dev
, struct iommu_table
*tbl
)
87 unsigned int bitmapsz
;
88 unsigned long bmppages
;
91 tbl
->it_busno
= dev
->bus
->number
;
93 /* set the tce table size - measured in entries */
94 tbl
->it_size
= table_size_to_number_of_entries(specified_table_size
);
97 * number of bytes needed for the bitmap size in number of
98 * entries; we need one bit per entry
100 bitmapsz
= tbl
->it_size
/ BITS_PER_BYTE
;
101 bmppages
= __get_free_pages(GFP_KERNEL
, get_order(bitmapsz
));
103 printk(KERN_ERR
"Calgary: cannot allocate bitmap\n");
108 tbl
->it_map
= (unsigned long*)bmppages
;
110 memset(tbl
->it_map
, 0, bitmapsz
);
114 spin_lock_init(&tbl
->it_lock
);
122 int __init
build_tce_table(struct pci_dev
*dev
, void __iomem
*bbar
)
124 struct iommu_table
*tbl
;
127 if (pci_iommu(dev
->bus
)) {
128 printk(KERN_ERR
"Calgary: dev %p has sysdata->iommu %p\n",
129 dev
, pci_iommu(dev
->bus
));
133 tbl
= kzalloc(sizeof(struct iommu_table
), GFP_KERNEL
);
135 printk(KERN_ERR
"Calgary: error allocating iommu_table\n");
140 ret
= tce_table_setparms(dev
, tbl
);
146 set_pci_iommu(dev
->bus
, tbl
);
156 void * __init
alloc_tce_table(void)
160 size
= table_size_to_number_of_entries(specified_table_size
);
161 size
*= TCE_ENTRY_SIZE
;
163 return memblock_alloc_low(size
, size
);
166 void __init
free_tce_table(void *tbl
)
173 size
= table_size_to_number_of_entries(specified_table_size
);
174 size
*= TCE_ENTRY_SIZE
;
176 memblock_free(__pa(tbl
), size
);