2 * IOMMU API for s390 PCI devices
4 * Copyright IBM Corp. 2015
5 * Author(s): Gerald Schaefer <gerald.schaefer@de.ibm.com>
9 #include <linux/iommu.h>
10 #include <linux/iommu-helper.h>
11 #include <linux/pci.h>
12 #include <linux/sizes.h>
13 #include <asm/pci_dma.h>
16 * Physically contiguous memory regions can be mapped with 4 KiB alignment,
17 * we allow all page sizes that are an order of 4KiB (no special large page
20 #define S390_IOMMU_PGSIZES (~0xFFFUL)
23 struct iommu_domain domain;
24 struct list_head devices;
25 unsigned long *dma_table;
26 spinlock_t dma_table_lock;
30 struct s390_domain_device {
31 struct list_head list;
32 struct zpci_dev *zdev;
35 static struct s390_domain *to_s390_domain(struct iommu_domain *dom)
37 return container_of(dom, struct s390_domain, domain);
40 static bool s390_iommu_capable(enum iommu_cap cap)
43 case IOMMU_CAP_CACHE_COHERENCY:
45 case IOMMU_CAP_INTR_REMAP:
52 static struct iommu_domain *s390_domain_alloc(unsigned domain_type)
54 struct s390_domain *s390_domain;
56 if (domain_type != IOMMU_DOMAIN_UNMANAGED)
59 s390_domain = kzalloc(sizeof(*s390_domain), GFP_KERNEL);
63 s390_domain->dma_table = dma_alloc_cpu_table();
64 if (!s390_domain->dma_table) {
69 spin_lock_init(&s390_domain->dma_table_lock);
70 spin_lock_init(&s390_domain->list_lock);
71 INIT_LIST_HEAD(&s390_domain->devices);
73 return &s390_domain->domain;
76 static void s390_domain_free(struct iommu_domain *domain)
78 struct s390_domain *s390_domain = to_s390_domain(domain);
80 dma_cleanup_tables(s390_domain->dma_table);
84 static int s390_iommu_attach_device(struct iommu_domain *domain,
87 struct s390_domain *s390_domain = to_s390_domain(domain);
88 struct zpci_dev *zdev = to_pci_dev(dev)->sysdata;
89 struct s390_domain_device *domain_device;
96 domain_device = kzalloc(sizeof(*domain_device), GFP_KERNEL);
101 zpci_dma_exit_device(zdev);
103 zdev->dma_table = s390_domain->dma_table;
104 rc = zpci_register_ioat(zdev, 0, zdev->start_dma + PAGE_OFFSET,
105 zdev->start_dma + zdev->iommu_size - 1,
106 (u64) zdev->dma_table);
110 spin_lock_irqsave(&s390_domain->list_lock, flags);
111 /* First device defines the DMA range limits */
112 if (list_empty(&s390_domain->devices)) {
113 domain->geometry.aperture_start = zdev->start_dma;
114 domain->geometry.aperture_end = zdev->end_dma;
115 domain->geometry.force_aperture = true;
116 /* Allow only devices with identical DMA range limits */
117 } else if (domain->geometry.aperture_start != zdev->start_dma ||
118 domain->geometry.aperture_end != zdev->end_dma) {
120 spin_unlock_irqrestore(&s390_domain->list_lock, flags);
123 domain_device->zdev = zdev;
124 zdev->s390_domain = s390_domain;
125 list_add(&domain_device->list, &s390_domain->devices);
126 spin_unlock_irqrestore(&s390_domain->list_lock, flags);
131 zpci_dma_init_device(zdev);
132 kfree(domain_device);
137 static void s390_iommu_detach_device(struct iommu_domain *domain,
140 struct s390_domain *s390_domain = to_s390_domain(domain);
141 struct zpci_dev *zdev = to_pci_dev(dev)->sysdata;
142 struct s390_domain_device *domain_device, *tmp;
149 spin_lock_irqsave(&s390_domain->list_lock, flags);
150 list_for_each_entry_safe(domain_device, tmp, &s390_domain->devices,
152 if (domain_device->zdev == zdev) {
153 list_del(&domain_device->list);
154 kfree(domain_device);
159 spin_unlock_irqrestore(&s390_domain->list_lock, flags);
162 zdev->s390_domain = NULL;
163 zpci_unregister_ioat(zdev, 0);
164 zpci_dma_init_device(zdev);
168 static int s390_iommu_add_device(struct device *dev)
170 struct iommu_group *group;
173 group = iommu_group_get(dev);
175 group = iommu_group_alloc();
177 return PTR_ERR(group);
180 rc = iommu_group_add_device(group, dev);
181 iommu_group_put(group);
186 static void s390_iommu_remove_device(struct device *dev)
188 struct zpci_dev *zdev = to_pci_dev(dev)->sysdata;
189 struct iommu_domain *domain;
192 * This is a workaround for a scenario where the IOMMU API common code
193 * "forgets" to call the detach_dev callback: After binding a device
194 * to vfio-pci and completing the VFIO_SET_IOMMU ioctl (which triggers
195 * the attach_dev), removing the device via
196 * "echo 1 > /sys/bus/pci/devices/.../remove" won't trigger detach_dev,
197 * only remove_device will be called via the BUS_NOTIFY_REMOVED_DEVICE
200 * So let's call detach_dev from here if it hasn't been called before.
202 if (zdev && zdev->s390_domain) {
203 domain = iommu_get_domain_for_dev(dev);
205 s390_iommu_detach_device(domain, dev);
208 iommu_group_remove_device(dev);
211 static int s390_iommu_update_trans(struct s390_domain *s390_domain,
212 unsigned long pa, dma_addr_t dma_addr,
213 size_t size, int flags)
215 struct s390_domain_device *domain_device;
216 u8 *page_addr = (u8 *) (pa & PAGE_MASK);
217 dma_addr_t start_dma_addr = dma_addr;
218 unsigned long irq_flags, nr_pages, i;
219 unsigned long *entry;
222 if (dma_addr < s390_domain->domain.geometry.aperture_start ||
223 dma_addr + size > s390_domain->domain.geometry.aperture_end)
226 nr_pages = PAGE_ALIGN(size) >> PAGE_SHIFT;
230 spin_lock_irqsave(&s390_domain->dma_table_lock, irq_flags);
231 for (i = 0; i < nr_pages; i++) {
232 entry = dma_walk_cpu_trans(s390_domain->dma_table, dma_addr);
237 dma_update_cpu_trans(entry, page_addr, flags);
238 page_addr += PAGE_SIZE;
239 dma_addr += PAGE_SIZE;
242 spin_lock(&s390_domain->list_lock);
243 list_for_each_entry(domain_device, &s390_domain->devices, list) {
244 rc = zpci_refresh_trans((u64) domain_device->zdev->fh << 32,
245 start_dma_addr, nr_pages * PAGE_SIZE);
249 spin_unlock(&s390_domain->list_lock);
252 if (rc && ((flags & ZPCI_PTE_VALID_MASK) == ZPCI_PTE_VALID)) {
253 flags = ZPCI_PTE_INVALID;
255 page_addr -= PAGE_SIZE;
256 dma_addr -= PAGE_SIZE;
257 entry = dma_walk_cpu_trans(s390_domain->dma_table,
261 dma_update_cpu_trans(entry, page_addr, flags);
264 spin_unlock_irqrestore(&s390_domain->dma_table_lock, irq_flags);
269 static int s390_iommu_map(struct iommu_domain *domain, unsigned long iova,
270 phys_addr_t paddr, size_t size, int prot)
272 struct s390_domain *s390_domain = to_s390_domain(domain);
273 int flags = ZPCI_PTE_VALID, rc = 0;
275 if (!(prot & IOMMU_READ))
278 if (!(prot & IOMMU_WRITE))
279 flags |= ZPCI_TABLE_PROTECTED;
281 rc = s390_iommu_update_trans(s390_domain, (unsigned long) paddr, iova,
287 static phys_addr_t s390_iommu_iova_to_phys(struct iommu_domain *domain,
290 struct s390_domain *s390_domain = to_s390_domain(domain);
291 unsigned long *sto, *pto, *rto, flags;
292 unsigned int rtx, sx, px;
293 phys_addr_t phys = 0;
295 if (iova < domain->geometry.aperture_start ||
296 iova > domain->geometry.aperture_end)
299 rtx = calc_rtx(iova);
302 rto = s390_domain->dma_table;
304 spin_lock_irqsave(&s390_domain->dma_table_lock, flags);
305 if (rto && reg_entry_isvalid(rto[rtx])) {
306 sto = get_rt_sto(rto[rtx]);
307 if (sto && reg_entry_isvalid(sto[sx])) {
308 pto = get_st_pto(sto[sx]);
309 if (pto && pt_entry_isvalid(pto[px]))
310 phys = pto[px] & ZPCI_PTE_ADDR_MASK;
313 spin_unlock_irqrestore(&s390_domain->dma_table_lock, flags);
318 static size_t s390_iommu_unmap(struct iommu_domain *domain,
319 unsigned long iova, size_t size)
321 struct s390_domain *s390_domain = to_s390_domain(domain);
322 int flags = ZPCI_PTE_INVALID;
326 paddr = s390_iommu_iova_to_phys(domain, iova);
330 rc = s390_iommu_update_trans(s390_domain, (unsigned long) paddr, iova,
338 static struct iommu_ops s390_iommu_ops = {
339 .capable = s390_iommu_capable,
340 .domain_alloc = s390_domain_alloc,
341 .domain_free = s390_domain_free,
342 .attach_dev = s390_iommu_attach_device,
343 .detach_dev = s390_iommu_detach_device,
344 .map = s390_iommu_map,
345 .unmap = s390_iommu_unmap,
346 .iova_to_phys = s390_iommu_iova_to_phys,
347 .add_device = s390_iommu_add_device,
348 .remove_device = s390_iommu_remove_device,
349 .pgsize_bitmap = S390_IOMMU_PGSIZES,
352 static int __init s390_iommu_init(void)
354 return bus_set_iommu(&pci_bus_type, &s390_iommu_ops);
356 subsys_initcall(s390_iommu_init);