blob: d7912b66c874829d2f958e7312d82eae5d75a6e0 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002/*
3 * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
4 * Rewrite, cleanup:
Olof Johansson91f14482005-11-21 02:12:32 -06005 * Copyright (C) 2004 Olof Johansson <olof@lixom.net>, IBM Corporation
Paul Mackerras9b6b5632005-10-06 12:06:20 +10006 */
7
8#ifndef _ASM_IOMMU_H
9#define _ASM_IOMMU_H
Arnd Bergmann88ced032005-12-16 22:43:46 +010010#ifdef __KERNEL__
Paul Mackerras9b6b5632005-10-06 12:06:20 +100011
Linas Vepstas5d2efba2006-10-30 16:15:59 +110012#include <linux/compiler.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100013#include <linux/spinlock.h>
14#include <linux/device.h>
Christoph Hellwig0a0f0d82020-09-22 15:31:03 +020015#include <linux/dma-map-ops.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070016#include <linux/bitops.h>
Johannes Berg7e115802007-05-03 22:28:32 +100017#include <asm/machdep.h>
Linas Vepstas5d2efba2006-10-30 16:15:59 +110018#include <asm/types.h>
Daniel Axtens798248a2015-03-31 16:00:48 +110019#include <asm/pci-bridge.h>
Christophe Leroyec0c4642018-07-05 16:24:57 +000020#include <asm/asm-const.h>
Linas Vepstas5d2efba2006-10-30 16:15:59 +110021
Alistair Popplee589a4402013-12-09 18:17:01 +110022#define IOMMU_PAGE_SHIFT_4K 12
23#define IOMMU_PAGE_SIZE_4K (ASM_CONST(1) << IOMMU_PAGE_SHIFT_4K)
24#define IOMMU_PAGE_MASK_4K (~((1 << IOMMU_PAGE_SHIFT_4K) - 1))
Christophe Leroyb7115312020-04-20 18:36:36 +000025#define IOMMU_PAGE_ALIGN_4K(addr) ALIGN(addr, IOMMU_PAGE_SIZE_4K)
Linas Vepstas5d2efba2006-10-30 16:15:59 +110026
Alistair Poppled0847752013-12-09 18:17:03 +110027#define IOMMU_PAGE_SIZE(tblptr) (ASM_CONST(1) << (tblptr)->it_page_shift)
28#define IOMMU_PAGE_MASK(tblptr) (~((1 << (tblptr)->it_page_shift) - 1))
Christophe Leroyb7115312020-04-20 18:36:36 +000029#define IOMMU_PAGE_ALIGN(addr, tblptr) ALIGN(addr, IOMMU_PAGE_SIZE(tblptr))
Alistair Poppled0847752013-12-09 18:17:03 +110030
Jeremy Kerr165785e2006-11-11 17:25:18 +110031/* Boot time flags */
32extern int iommu_is_off;
33extern int iommu_force_on;
Linas Vepstas5d2efba2006-10-30 16:15:59 +110034
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +100035struct iommu_table_ops {
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +100036 /*
37 * When called with direction==DMA_NONE, it is equal to clear().
38 * uaddr is a linear map address.
39 */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +100040 int (*set)(struct iommu_table *tbl,
41 long index, long npages,
42 unsigned long uaddr,
43 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070044 unsigned long attrs);
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +100045#ifdef CONFIG_IOMMU_API
46 /*
47 * Exchanges existing TCE with new TCE plus direction bits;
48 * returns old TCE and DMA direction mask.
49 * @tce is a physical address.
50 */
Alexey Kardashevskiy35872482019-08-29 18:52:48 +100051 int (*xchg_no_kill)(struct iommu_table *tbl,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +100052 long index,
53 unsigned long *hpa,
Alexey Kardashevskiy35872482019-08-29 18:52:48 +100054 enum dma_data_direction *direction,
55 bool realmode);
56
57 void (*tce_kill)(struct iommu_table *tbl,
58 unsigned long index,
59 unsigned long pages,
60 bool realmode);
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +100061
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +100062 __be64 *(*useraddrptr)(struct iommu_table *tbl, long index, bool alloc);
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +100063#endif
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +100064 void (*clear)(struct iommu_table *tbl,
65 long index, long npages);
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +100066 /* get() returns a physical address */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +100067 unsigned long (*get)(struct iommu_table *tbl, long index);
68 void (*flush)(struct iommu_table *tbl);
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +100069 void (*free)(struct iommu_table *tbl);
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +100070};
71
72/* These are used by VIO */
73extern struct iommu_table_ops iommu_table_lpar_multi_ops;
74extern struct iommu_table_ops iommu_table_pseries_ops;
75
Paul Mackerras9b6b5632005-10-06 12:06:20 +100076/*
77 * IOMAP_MAX_ORDER defines the largest contiguous block
78 * of dma space we can get. IOMAP_MAX_ORDER = 13
79 * allows up to 2**12 pages (4096 * 4096) = 16 MB
80 */
Linas Vepstas5d2efba2006-10-30 16:15:59 +110081#define IOMAP_MAX_ORDER 13
Paul Mackerras9b6b5632005-10-06 12:06:20 +100082
Anton Blanchardb4c3a872012-06-07 18:14:48 +000083#define IOMMU_POOL_HASHBITS 2
84#define IOMMU_NR_POOLS (1 << IOMMU_POOL_HASHBITS)
85
86struct iommu_pool {
87 unsigned long start;
88 unsigned long end;
89 unsigned long hint;
90 spinlock_t lock;
91} ____cacheline_aligned_in_smp;
92
Paul Mackerras9b6b5632005-10-06 12:06:20 +100093struct iommu_table {
94 unsigned long it_busno; /* Bus number this table belongs to */
95 unsigned long it_size; /* Size of iommu table in entries */
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +100096 unsigned long it_indirect_levels;
97 unsigned long it_level_size;
Alexey Kardashevskiy00547192015-06-05 16:35:22 +100098 unsigned long it_allocated_size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100099 unsigned long it_offset; /* Offset into global table */
100 unsigned long it_base; /* mapped address of tce table */
101 unsigned long it_index; /* which iommu table this is */
102 unsigned long it_type; /* type: PCI or Virtual Bus */
103 unsigned long it_blocksize; /* Entries in each block (cacheline) */
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000104 unsigned long poolsize;
105 unsigned long nr_pools;
106 struct iommu_pool large_pool;
107 struct iommu_pool pools[IOMMU_NR_POOLS];
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000108 unsigned long *it_map; /* A simple allocation bitmap for now */
Alistair Popple3a553172013-12-09 18:17:02 +1100109 unsigned long it_page_shift;/* table iommu page size */
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000110 struct list_head it_group_list;/* List of iommu_table_group_link */
Alexey Kardashevskiy00a5c582018-07-04 16:13:46 +1000111 __be64 *it_userspace; /* userspace view of the table */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000112 struct iommu_table_ops *it_ops;
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +1100113 struct kref it_kref;
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +1000114 int it_nid;
Alexey Kardashevskiy201ed7f2019-07-18 15:11:39 +1000115 unsigned long it_reserved_start; /* Start of not-DMA-able (MMIO) area */
116 unsigned long it_reserved_end;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000117};
118
Alexey Kardashevskiy6e301a82018-10-15 21:08:41 +1100119#define IOMMU_TABLE_USERSPACE_ENTRY_RO(tbl, entry) \
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +1000120 ((tbl)->it_ops->useraddrptr((tbl), (entry), false))
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000121#define IOMMU_TABLE_USERSPACE_ENTRY(tbl, entry) \
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +1000122 ((tbl)->it_ops->useraddrptr((tbl), (entry), true))
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000123
Alistair Poppled0847752013-12-09 18:17:03 +1100124/* Pure 2^n version of get_order */
125static inline __attribute_const__
126int get_iommu_order(unsigned long size, struct iommu_table *tbl)
127{
128 return __ilog2((size - 1) >> tbl->it_page_shift) + 1;
129}
130
131
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000132struct scatterlist;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000133
Benjamin Herrenschmidt2db49282015-06-24 15:25:22 +1000134#ifdef CONFIG_PPC64
135
136static inline void set_iommu_table_base(struct device *dev,
137 struct iommu_table *base)
Becky Bruce738ef422009-09-21 08:26:35 +0000138{
Benjamin Herrenschmidt2db49282015-06-24 15:25:22 +1000139 dev->archdata.iommu_table_base = base;
Becky Bruce738ef422009-09-21 08:26:35 +0000140}
141
142static inline void *get_iommu_table_base(struct device *dev)
143{
Benjamin Herrenschmidt2db49282015-06-24 15:25:22 +1000144 return dev->archdata.iommu_table_base;
Becky Bruce738ef422009-09-21 08:26:35 +0000145}
146
Benjamin Herrenschmidt2db49282015-06-24 15:25:22 +1000147extern int dma_iommu_dma_supported(struct device *dev, u64 mask);
148
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +1100149extern struct iommu_table *iommu_tce_table_get(struct iommu_table *tbl);
150extern int iommu_tce_table_put(struct iommu_table *tbl);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000151
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000152/* Initializes an iommu_table based in values set in the passed-in
153 * structure
154 */
Alexey Kardashevskiy201ed7f2019-07-18 15:11:39 +1000155extern struct iommu_table *iommu_init_table(struct iommu_table *tbl,
156 int nid, unsigned long res_start, unsigned long res_end);
Leonardo Bras3c330662021-08-17 03:39:20 -0300157bool iommu_table_in_use(struct iommu_table *tbl);
Alexey Kardashevskiy201ed7f2019-07-18 15:11:39 +1000158
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +1000159#define IOMMU_TABLE_GROUP_MAX_TABLES 2
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +1000160
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +1000161struct iommu_table_group;
162
163struct iommu_table_group_ops {
Alexey Kardashevskiy00547192015-06-05 16:35:22 +1000164 unsigned long (*get_table_size)(
165 __u32 page_shift,
166 __u64 window_size,
167 __u32 levels);
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +1000168 long (*create_table)(struct iommu_table_group *table_group,
169 int num,
170 __u32 page_shift,
171 __u64 window_size,
172 __u32 levels,
173 struct iommu_table **ptbl);
174 long (*set_window)(struct iommu_table_group *table_group,
175 int num,
176 struct iommu_table *tblnew);
177 long (*unset_window)(struct iommu_table_group *table_group,
178 int num);
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +1000179 /* Switch ownership from platform code to external user (e.g. VFIO) */
180 void (*take_ownership)(struct iommu_table_group *table_group);
181 /* Switch ownership from external user (e.g. VFIO) back to core */
182 void (*release_ownership)(struct iommu_table_group *table_group);
183};
184
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000185struct iommu_table_group_link {
186 struct list_head next;
187 struct rcu_head rcu;
188 struct iommu_table_group *table_group;
189};
190
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +1000191struct iommu_table_group {
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +1000192 /* IOMMU properties */
193 __u32 tce32_start;
194 __u32 tce32_size;
195 __u64 pgsizes; /* Bitmap of supported page sizes */
196 __u32 max_dynamic_windows_supported;
197 __u32 max_levels;
198
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +1000199 struct iommu_group *group;
200 struct iommu_table *tables[IOMMU_TABLE_GROUP_MAX_TABLES];
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +1000201 struct iommu_table_group_ops *ops;
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +1000202};
203
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +1100204#ifdef CONFIG_IOMMU_API
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +1000205
206extern void iommu_register_group(struct iommu_table_group *table_group,
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000207 int pci_domain_number, unsigned long pe_num);
Alexey Kardashevskiyc4e9d3c2018-12-19 19:52:21 +1100208extern int iommu_add_device(struct iommu_table_group *table_group,
209 struct device *dev);
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +1100210extern void iommu_del_device(struct device *dev);
Alexey Kardashevskiyc10c21e2018-12-19 19:52:15 +1100211extern long iommu_tce_xchg(struct mm_struct *mm, struct iommu_table *tbl,
212 unsigned long entry, unsigned long *hpa,
213 enum dma_data_direction *direction);
Alexey Kardashevskiy35872482019-08-29 18:52:48 +1000214extern long iommu_tce_xchg_no_kill(struct mm_struct *mm,
215 struct iommu_table *tbl,
216 unsigned long entry, unsigned long *hpa,
217 enum dma_data_direction *direction);
218extern void iommu_tce_kill(struct iommu_table *tbl,
219 unsigned long entry, unsigned long pages);
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +1100220#else
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +1000221static inline void iommu_register_group(struct iommu_table_group *table_group,
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +1100222 int pci_domain_number,
223 unsigned long pe_num)
224{
225}
226
Alexey Kardashevskiyc4e9d3c2018-12-19 19:52:21 +1100227static inline int iommu_add_device(struct iommu_table_group *table_group,
228 struct device *dev)
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +1100229{
230 return 0;
231}
232
233static inline void iommu_del_device(struct device *dev)
234{
235}
236#endif /* !CONFIG_IOMMU_API */
237
Christoph Hellwiga20f5072019-02-13 08:01:04 +0100238u64 dma_iommu_get_required_mask(struct device *dev);
Benjamin Herrenschmidt2db49282015-06-24 15:25:22 +1000239#else
240
241static inline void *get_iommu_table_base(struct device *dev)
242{
243 return NULL;
244}
245
246static inline int dma_iommu_dma_supported(struct device *dev, u64 mask)
247{
248 return 0;
249}
250
251#endif /* CONFIG_PPC64 */
252
Joerg Roedel0690cbd2014-11-05 15:28:30 +0100253extern int ppc_iommu_map_sg(struct device *dev, struct iommu_table *tbl,
254 struct scatterlist *sglist, int nelems,
255 unsigned long mask,
256 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700257 unsigned long attrs);
Joerg Roedel0690cbd2014-11-05 15:28:30 +0100258extern void ppc_iommu_unmap_sg(struct iommu_table *tbl,
259 struct scatterlist *sglist,
260 int nelems,
261 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700262 unsigned long attrs);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000263
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800264extern void *iommu_alloc_coherent(struct device *dev, struct iommu_table *tbl,
265 size_t size, dma_addr_t *dma_handle,
266 unsigned long mask, gfp_t flag, int node);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000267extern void iommu_free_coherent(struct iommu_table *tbl, size_t size,
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100268 void *vaddr, dma_addr_t dma_handle);
Mark Nelsonf9226d52008-10-27 20:38:08 +0000269extern dma_addr_t iommu_map_page(struct device *dev, struct iommu_table *tbl,
270 struct page *page, unsigned long offset,
271 size_t size, unsigned long mask,
272 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700273 unsigned long attrs);
Mark Nelsonf9226d52008-10-27 20:38:08 +0000274extern void iommu_unmap_page(struct iommu_table *tbl, dma_addr_t dma_handle,
275 size_t size, enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700276 unsigned long attrs);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000277
Nick Childe14ff962021-12-16 17:00:27 -0500278void __init iommu_init_early_pSeries(void);
Daniel Axtens798248a2015-03-31 16:00:48 +1100279extern void iommu_init_early_dart(struct pci_controller_ops *controller_ops);
Olof Johansson31c56d82007-02-04 16:36:55 -0600280extern void iommu_init_early_pasemi(void);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000281
Johannes Berg7e115802007-05-03 22:28:32 +1000282#if defined(CONFIG_PPC64) && defined(CONFIG_PM)
Johannes Berg7e115802007-05-03 22:28:32 +1000283static inline void iommu_restore(void)
284{
285 if (ppc_md.iommu_restore)
286 ppc_md.iommu_restore();
287}
288#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000289
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000290/* The API to support IOMMU operations for VFIO */
Alexey Kardashevskiyb1af23d2017-03-22 15:21:55 +1100291extern int iommu_tce_check_ioba(unsigned long page_shift,
292 unsigned long offset, unsigned long size,
293 unsigned long ioba, unsigned long npages);
294extern int iommu_tce_check_gpa(unsigned long page_shift,
295 unsigned long gpa);
296
297#define iommu_tce_clear_param_check(tbl, ioba, tce_value, npages) \
298 (iommu_tce_check_ioba((tbl)->it_page_shift, \
299 (tbl)->it_offset, (tbl)->it_size, \
300 (ioba), (npages)) || (tce_value))
301#define iommu_tce_put_param_check(tbl, ioba, gpa) \
302 (iommu_tce_check_ioba((tbl)->it_page_shift, \
303 (tbl)->it_offset, (tbl)->it_size, \
304 (ioba), 1) || \
305 iommu_tce_check_gpa((tbl)->it_page_shift, (gpa)))
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000306
307extern void iommu_flush_tce(struct iommu_table *tbl);
308extern int iommu_take_ownership(struct iommu_table *tbl);
309extern void iommu_release_ownership(struct iommu_table *tbl);
310
311extern enum dma_data_direction iommu_tce_direction(unsigned long tce);
Alexey Kardashevskiy10b35b22015-06-05 16:35:05 +1000312extern unsigned long iommu_direction_to_tce_perm(enum dma_data_direction dir);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000313
Christoph Hellwigba767b52019-02-13 08:01:09 +0100314#ifdef CONFIG_PPC_CELL_NATIVE
315extern bool iommu_fixed_is_weak;
316#else
317#define iommu_fixed_is_weak false
318#endif
319
Christoph Hellwig4a605e22019-02-13 08:01:33 +0100320extern const struct dma_map_ops dma_iommu_ops;
321
Arnd Bergmann88ced032005-12-16 22:43:46 +0100322#endif /* __KERNEL__ */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000323#endif /* _ASM_IOMMU_H */