• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
4  * Author: Joerg Roedel <jroedel@suse.de>
5  *         Leo Duran <leo.duran@amd.com>
6  */
7 
8 #ifndef _ASM_X86_AMD_IOMMU_TYPES_H
9 #define _ASM_X86_AMD_IOMMU_TYPES_H
10 
11 #include <linux/bitfield.h>
12 #include <linux/iommu.h>
13 #include <linux/types.h>
14 #include <linux/mmu_notifier.h>
15 #include <linux/mutex.h>
16 #include <linux/msi.h>
17 #include <linux/list.h>
18 #include <linux/spinlock.h>
19 #include <linux/pci.h>
20 #include <linux/irqreturn.h>
21 #include <linux/io-pgtable.h>
22 
23 /*
24  * Maximum number of IOMMUs supported
25  */
26 #define MAX_IOMMUS	32
27 
28 /*
29  * some size calculation constants
30  */
31 #define DEV_TABLE_ENTRY_SIZE		32
32 #define ALIAS_TABLE_ENTRY_SIZE		2
33 #define RLOOKUP_TABLE_ENTRY_SIZE	(sizeof(void *))
34 
35 /* Capability offsets used by the driver */
36 #define MMIO_CAP_HDR_OFFSET	0x00
37 #define MMIO_RANGE_OFFSET	0x0c
38 #define MMIO_MISC_OFFSET	0x10
39 
40 /* Masks, shifts and macros to parse the device range capability */
41 #define MMIO_RANGE_LD_MASK	0xff000000
42 #define MMIO_RANGE_FD_MASK	0x00ff0000
43 #define MMIO_RANGE_BUS_MASK	0x0000ff00
44 #define MMIO_RANGE_LD_SHIFT	24
45 #define MMIO_RANGE_FD_SHIFT	16
46 #define MMIO_RANGE_BUS_SHIFT	8
47 #define MMIO_GET_LD(x)  (((x) & MMIO_RANGE_LD_MASK) >> MMIO_RANGE_LD_SHIFT)
48 #define MMIO_GET_FD(x)  (((x) & MMIO_RANGE_FD_MASK) >> MMIO_RANGE_FD_SHIFT)
49 #define MMIO_GET_BUS(x) (((x) & MMIO_RANGE_BUS_MASK) >> MMIO_RANGE_BUS_SHIFT)
50 #define MMIO_MSI_NUM(x)	((x) & 0x1f)
51 
52 /* Flag masks for the AMD IOMMU exclusion range */
53 #define MMIO_EXCL_ENABLE_MASK 0x01ULL
54 #define MMIO_EXCL_ALLOW_MASK  0x02ULL
55 
56 /* Used offsets into the MMIO space */
57 #define MMIO_DEV_TABLE_OFFSET   0x0000
58 #define MMIO_CMD_BUF_OFFSET     0x0008
59 #define MMIO_EVT_BUF_OFFSET     0x0010
60 #define MMIO_CONTROL_OFFSET     0x0018
61 #define MMIO_EXCL_BASE_OFFSET   0x0020
62 #define MMIO_EXCL_LIMIT_OFFSET  0x0028
63 #define MMIO_EXT_FEATURES	0x0030
64 #define MMIO_PPR_LOG_OFFSET	0x0038
65 #define MMIO_GA_LOG_BASE_OFFSET	0x00e0
66 #define MMIO_GA_LOG_TAIL_OFFSET	0x00e8
67 #define MMIO_MSI_ADDR_LO_OFFSET	0x015C
68 #define MMIO_MSI_ADDR_HI_OFFSET	0x0160
69 #define MMIO_MSI_DATA_OFFSET	0x0164
70 #define MMIO_INTCAPXT_EVT_OFFSET	0x0170
71 #define MMIO_INTCAPXT_PPR_OFFSET	0x0178
72 #define MMIO_INTCAPXT_GALOG_OFFSET	0x0180
73 #define MMIO_EXT_FEATURES2	0x01A0
74 #define MMIO_CMD_HEAD_OFFSET	0x2000
75 #define MMIO_CMD_TAIL_OFFSET	0x2008
76 #define MMIO_EVT_HEAD_OFFSET	0x2010
77 #define MMIO_EVT_TAIL_OFFSET	0x2018
78 #define MMIO_STATUS_OFFSET	0x2020
79 #define MMIO_PPR_HEAD_OFFSET	0x2030
80 #define MMIO_PPR_TAIL_OFFSET	0x2038
81 #define MMIO_GA_HEAD_OFFSET	0x2040
82 #define MMIO_GA_TAIL_OFFSET	0x2048
83 #define MMIO_CNTR_CONF_OFFSET	0x4000
84 #define MMIO_CNTR_REG_OFFSET	0x40000
85 #define MMIO_REG_END_OFFSET	0x80000
86 
87 
88 
89 /* Extended Feature Bits */
90 #define FEATURE_PREFETCH	BIT_ULL(0)
91 #define FEATURE_PPR		BIT_ULL(1)
92 #define FEATURE_X2APIC		BIT_ULL(2)
93 #define FEATURE_NX		BIT_ULL(3)
94 #define FEATURE_GT		BIT_ULL(4)
95 #define FEATURE_IA		BIT_ULL(6)
96 #define FEATURE_GA		BIT_ULL(7)
97 #define FEATURE_HE		BIT_ULL(8)
98 #define FEATURE_PC		BIT_ULL(9)
99 #define FEATURE_GATS		GENMASK_ULL(13, 12)
100 #define FEATURE_GLX		GENMASK_ULL(15, 14)
101 #define FEATURE_GAM_VAPIC	BIT_ULL(21)
102 #define FEATURE_PASMAX		GENMASK_ULL(36, 32)
103 #define FEATURE_GIOSUP		BIT_ULL(48)
104 #define FEATURE_HASUP		BIT_ULL(49)
105 #define FEATURE_EPHSUP		BIT_ULL(50)
106 #define FEATURE_HDSUP		BIT_ULL(52)
107 #define FEATURE_SNP		BIT_ULL(63)
108 
109 
110 /* Extended Feature 2 Bits */
111 #define FEATURE_SNPAVICSUP	GENMASK_ULL(7, 5)
112 #define FEATURE_SNPAVICSUP_GAM(x) \
113 	(FIELD_GET(FEATURE_SNPAVICSUP, x) == 0x1)
114 
115 /* Note:
116  * The current driver only support 16-bit PASID.
117  * Currently, hardware only implement upto 16-bit PASID
118  * even though the spec says it could have upto 20 bits.
119  */
120 #define PASID_MASK		0x0000ffff
121 
122 /* MMIO status bits */
123 #define MMIO_STATUS_EVT_OVERFLOW_MASK		BIT(0)
124 #define MMIO_STATUS_EVT_INT_MASK		BIT(1)
125 #define MMIO_STATUS_COM_WAIT_INT_MASK		BIT(2)
126 #define MMIO_STATUS_EVT_RUN_MASK		BIT(3)
127 #define MMIO_STATUS_PPR_OVERFLOW_MASK		BIT(5)
128 #define MMIO_STATUS_PPR_INT_MASK		BIT(6)
129 #define MMIO_STATUS_PPR_RUN_MASK		BIT(7)
130 #define MMIO_STATUS_GALOG_RUN_MASK		BIT(8)
131 #define MMIO_STATUS_GALOG_OVERFLOW_MASK		BIT(9)
132 #define MMIO_STATUS_GALOG_INT_MASK		BIT(10)
133 
134 /* event logging constants */
135 #define EVENT_ENTRY_SIZE	0x10
136 #define EVENT_TYPE_SHIFT	28
137 #define EVENT_TYPE_MASK		0xf
138 #define EVENT_TYPE_ILL_DEV	0x1
139 #define EVENT_TYPE_IO_FAULT	0x2
140 #define EVENT_TYPE_DEV_TAB_ERR	0x3
141 #define EVENT_TYPE_PAGE_TAB_ERR	0x4
142 #define EVENT_TYPE_ILL_CMD	0x5
143 #define EVENT_TYPE_CMD_HARD_ERR	0x6
144 #define EVENT_TYPE_IOTLB_INV_TO	0x7
145 #define EVENT_TYPE_INV_DEV_REQ	0x8
146 #define EVENT_TYPE_INV_PPR_REQ	0x9
147 #define EVENT_TYPE_RMP_FAULT	0xd
148 #define EVENT_TYPE_RMP_HW_ERR	0xe
149 #define EVENT_DEVID_MASK	0xffff
150 #define EVENT_DEVID_SHIFT	0
151 #define EVENT_DOMID_MASK_LO	0xffff
152 #define EVENT_DOMID_MASK_HI	0xf0000
153 #define EVENT_FLAGS_MASK	0xfff
154 #define EVENT_FLAGS_SHIFT	0x10
155 #define EVENT_FLAG_RW		0x020
156 #define EVENT_FLAG_I		0x008
157 
158 /* feature control bits */
159 #define CONTROL_IOMMU_EN	0
160 #define CONTROL_HT_TUN_EN	1
161 #define CONTROL_EVT_LOG_EN	2
162 #define CONTROL_EVT_INT_EN	3
163 #define CONTROL_COMWAIT_EN	4
164 #define CONTROL_INV_TIMEOUT	5
165 #define CONTROL_PASSPW_EN	8
166 #define CONTROL_RESPASSPW_EN	9
167 #define CONTROL_COHERENT_EN	10
168 #define CONTROL_ISOC_EN		11
169 #define CONTROL_CMDBUF_EN	12
170 #define CONTROL_PPRLOG_EN	13
171 #define CONTROL_PPRINT_EN	14
172 #define CONTROL_PPR_EN		15
173 #define CONTROL_GT_EN		16
174 #define CONTROL_GA_EN		17
175 #define CONTROL_GAM_EN		25
176 #define CONTROL_GALOG_EN	28
177 #define CONTROL_GAINT_EN	29
178 #define CONTROL_EPH_EN		45
179 #define CONTROL_XT_EN		50
180 #define CONTROL_INTCAPXT_EN	51
181 #define CONTROL_IRTCACHEDIS	59
182 #define CONTROL_SNPAVIC_EN	61
183 
184 #define CTRL_INV_TO_MASK	(7 << CONTROL_INV_TIMEOUT)
185 #define CTRL_INV_TO_NONE	0
186 #define CTRL_INV_TO_1MS		1
187 #define CTRL_INV_TO_10MS	2
188 #define CTRL_INV_TO_100MS	3
189 #define CTRL_INV_TO_1S		4
190 #define CTRL_INV_TO_10S		5
191 #define CTRL_INV_TO_100S	6
192 
193 /* command specific defines */
194 #define CMD_COMPL_WAIT          0x01
195 #define CMD_INV_DEV_ENTRY       0x02
196 #define CMD_INV_IOMMU_PAGES	0x03
197 #define CMD_INV_IOTLB_PAGES	0x04
198 #define CMD_INV_IRT		0x05
199 #define CMD_COMPLETE_PPR	0x07
200 #define CMD_INV_ALL		0x08
201 
202 #define CMD_COMPL_WAIT_STORE_MASK	0x01
203 #define CMD_COMPL_WAIT_INT_MASK		0x02
204 #define CMD_INV_IOMMU_PAGES_SIZE_MASK	0x01
205 #define CMD_INV_IOMMU_PAGES_PDE_MASK	0x02
206 #define CMD_INV_IOMMU_PAGES_GN_MASK	0x04
207 
208 #define PPR_STATUS_MASK			0xf
209 #define PPR_STATUS_SHIFT		12
210 
211 #define CMD_INV_IOMMU_ALL_PAGES_ADDRESS	0x7fffffffffffffffULL
212 
213 /* macros and definitions for device table entries */
214 #define DEV_ENTRY_VALID         0x00
215 #define DEV_ENTRY_TRANSLATION   0x01
216 #define DEV_ENTRY_HAD           0x07
217 #define DEV_ENTRY_PPR           0x34
218 #define DEV_ENTRY_IR            0x3d
219 #define DEV_ENTRY_IW            0x3e
220 #define DEV_ENTRY_NO_PAGE_FAULT	0x62
221 #define DEV_ENTRY_EX            0x67
222 #define DEV_ENTRY_SYSMGT1       0x68
223 #define DEV_ENTRY_SYSMGT2       0x69
224 #define DEV_ENTRY_IRQ_TBL_EN	0x80
225 #define DEV_ENTRY_INIT_PASS     0xb8
226 #define DEV_ENTRY_EINT_PASS     0xb9
227 #define DEV_ENTRY_NMI_PASS      0xba
228 #define DEV_ENTRY_LINT0_PASS    0xbe
229 #define DEV_ENTRY_LINT1_PASS    0xbf
230 #define DEV_ENTRY_MODE_MASK	0x07
231 #define DEV_ENTRY_MODE_SHIFT	0x09
232 
233 #define MAX_DEV_TABLE_ENTRIES	0xffff
234 
235 /* constants to configure the command buffer */
236 #define CMD_BUFFER_SIZE    8192
237 #define CMD_BUFFER_UNINITIALIZED 1
238 #define CMD_BUFFER_ENTRIES 512
239 #define MMIO_CMD_SIZE_SHIFT 56
240 #define MMIO_CMD_SIZE_512 (0x9ULL << MMIO_CMD_SIZE_SHIFT)
241 
242 /* constants for event buffer handling */
243 #define EVT_BUFFER_SIZE		8192 /* 512 entries */
244 #define EVT_LEN_MASK		(0x9ULL << 56)
245 
246 /* Constants for PPR Log handling */
247 #define PPR_LOG_ENTRIES		512
248 #define PPR_LOG_SIZE_SHIFT	56
249 #define PPR_LOG_SIZE_512	(0x9ULL << PPR_LOG_SIZE_SHIFT)
250 #define PPR_ENTRY_SIZE		16
251 #define PPR_LOG_SIZE		(PPR_ENTRY_SIZE * PPR_LOG_ENTRIES)
252 
253 /* PAGE_SERVICE_REQUEST PPR Log Buffer Entry flags */
254 #define PPR_FLAG_EXEC		0x002	/* Execute permission requested */
255 #define PPR_FLAG_READ		0x004	/* Read permission requested */
256 #define PPR_FLAG_WRITE		0x020	/* Write permission requested */
257 #define PPR_FLAG_US		0x040	/* 1: User, 0: Supervisor */
258 #define PPR_FLAG_RVSD		0x080	/* Reserved bit not zero */
259 #define PPR_FLAG_GN		0x100	/* GVA and PASID is valid */
260 
261 #define PPR_REQ_TYPE(x)		(((x) >> 60) & 0xfULL)
262 #define PPR_FLAGS(x)		(((x) >> 48) & 0xfffULL)
263 #define PPR_DEVID(x)		((x) & 0xffffULL)
264 #define PPR_TAG(x)		(((x) >> 32) & 0x3ffULL)
265 #define PPR_PASID1(x)		(((x) >> 16) & 0xffffULL)
266 #define PPR_PASID2(x)		(((x) >> 42) & 0xfULL)
267 #define PPR_PASID(x)		((PPR_PASID2(x) << 16) | PPR_PASID1(x))
268 
269 #define PPR_REQ_FAULT		0x01
270 
271 /* Constants for GA Log handling */
272 #define GA_LOG_ENTRIES		512
273 #define GA_LOG_SIZE_SHIFT	56
274 #define GA_LOG_SIZE_512		(0x8ULL << GA_LOG_SIZE_SHIFT)
275 #define GA_ENTRY_SIZE		8
276 #define GA_LOG_SIZE		(GA_ENTRY_SIZE * GA_LOG_ENTRIES)
277 
278 #define GA_TAG(x)		(u32)(x & 0xffffffffULL)
279 #define GA_DEVID(x)		(u16)(((x) >> 32) & 0xffffULL)
280 #define GA_REQ_TYPE(x)		(((x) >> 60) & 0xfULL)
281 
282 #define GA_GUEST_NR		0x1
283 
284 #define IOMMU_IN_ADDR_BIT_SIZE  52
285 #define IOMMU_OUT_ADDR_BIT_SIZE 52
286 
287 /*
288  * This bitmap is used to advertise the page sizes our hardware support
289  * to the IOMMU core, which will then use this information to split
290  * physically contiguous memory regions it is mapping into page sizes
291  * that we support.
292  *
293  * 512GB Pages are not supported due to a hardware bug
294  * Page sizes >= the 52 bit max physical address of the CPU are not supported.
295  */
296 #define AMD_IOMMU_PGSIZES	(GENMASK_ULL(51, 12) ^ SZ_512G)
297 
298 /* Special mode where page-sizes are limited to 4 KiB */
299 #define AMD_IOMMU_PGSIZES_4K	(PAGE_SIZE)
300 
301 /* 4K, 2MB, 1G page sizes are supported */
302 #define AMD_IOMMU_PGSIZES_V2	(PAGE_SIZE | (1ULL << 21) | (1ULL << 30))
303 
304 /* Bit value definition for dte irq remapping fields*/
305 #define DTE_IRQ_PHYS_ADDR_MASK		GENMASK_ULL(51, 6)
306 #define DTE_IRQ_REMAP_INTCTL_MASK	(0x3ULL << 60)
307 #define DTE_IRQ_REMAP_INTCTL    (2ULL << 60)
308 #define DTE_IRQ_REMAP_ENABLE    1ULL
309 
310 /*
311  * AMD IOMMU hardware only support 512 IRTEs despite
312  * the architectural limitation of 2048 entries.
313  */
314 #define DTE_INTTAB_ALIGNMENT    128
315 #define DTE_INTTABLEN_VALUE     9ULL
316 #define DTE_INTTABLEN           (DTE_INTTABLEN_VALUE << 1)
317 #define DTE_INTTABLEN_MASK      (0xfULL << 1)
318 #define MAX_IRQS_PER_TABLE      (1 << DTE_INTTABLEN_VALUE)
319 
320 #define PAGE_MODE_NONE    0x00
321 #define PAGE_MODE_1_LEVEL 0x01
322 #define PAGE_MODE_2_LEVEL 0x02
323 #define PAGE_MODE_3_LEVEL 0x03
324 #define PAGE_MODE_4_LEVEL 0x04
325 #define PAGE_MODE_5_LEVEL 0x05
326 #define PAGE_MODE_6_LEVEL 0x06
327 #define PAGE_MODE_7_LEVEL 0x07
328 
329 #define GUEST_PGTABLE_4_LEVEL	0x00
330 #define GUEST_PGTABLE_5_LEVEL	0x01
331 
332 #define PM_LEVEL_SHIFT(x)	(12 + ((x) * 9))
333 #define PM_LEVEL_SIZE(x)	(((x) < 6) ? \
334 				  ((1ULL << PM_LEVEL_SHIFT((x))) - 1): \
335 				   (0xffffffffffffffffULL))
336 #define PM_LEVEL_INDEX(x, a)	(((a) >> PM_LEVEL_SHIFT((x))) & 0x1ffULL)
337 #define PM_LEVEL_ENC(x)		(((x) << 9) & 0xe00ULL)
338 #define PM_LEVEL_PDE(x, a)	((a) | PM_LEVEL_ENC((x)) | \
339 				 IOMMU_PTE_PR | IOMMU_PTE_IR | IOMMU_PTE_IW)
340 #define PM_PTE_LEVEL(pte)	(((pte) >> 9) & 0x7ULL)
341 
342 #define PM_MAP_4k		0
343 #define PM_ADDR_MASK		0x000ffffffffff000ULL
344 #define PM_MAP_MASK(lvl)	(PM_ADDR_MASK & \
345 				(~((1ULL << (12 + ((lvl) * 9))) - 1)))
346 #define PM_ALIGNED(lvl, addr)	((PM_MAP_MASK(lvl) & (addr)) == (addr))
347 
348 /*
349  * Returns the page table level to use for a given page size
350  * Pagesize is expected to be a power-of-two
351  */
352 #define PAGE_SIZE_LEVEL(pagesize) \
353 		((__ffs(pagesize) - 12) / 9)
354 /*
355  * Returns the number of ptes to use for a given page size
356  * Pagesize is expected to be a power-of-two
357  */
358 #define PAGE_SIZE_PTE_COUNT(pagesize) \
359 		(1ULL << ((__ffs(pagesize) - 12) % 9))
360 
361 /*
362  * Aligns a given io-virtual address to a given page size
363  * Pagesize is expected to be a power-of-two
364  */
365 #define PAGE_SIZE_ALIGN(address, pagesize) \
366 		((address) & ~((pagesize) - 1))
367 /*
368  * Creates an IOMMU PTE for an address and a given pagesize
369  * The PTE has no permission bits set
370  * Pagesize is expected to be a power-of-two larger than 4096
371  */
372 #define PAGE_SIZE_PTE(address, pagesize)		\
373 		(((address) | ((pagesize) - 1)) &	\
374 		 (~(pagesize >> 1)) & PM_ADDR_MASK)
375 
376 /*
377  * Takes a PTE value with mode=0x07 and returns the page size it maps
378  */
379 #define PTE_PAGE_SIZE(pte) \
380 	(1ULL << (1 + ffz(((pte) | 0xfffULL))))
381 
382 /*
383  * Takes a page-table level and returns the default page-size for this level
384  */
385 #define PTE_LEVEL_PAGE_SIZE(level)			\
386 	(1ULL << (12 + (9 * (level))))
387 
388 /*
389  * The IOPTE dirty bit
390  */
391 #define IOMMU_PTE_HD_BIT (6)
392 
393 /*
394  * Bit value definition for I/O PTE fields
395  */
396 #define IOMMU_PTE_PR	BIT_ULL(0)
397 #define IOMMU_PTE_HD	BIT_ULL(IOMMU_PTE_HD_BIT)
398 #define IOMMU_PTE_U	BIT_ULL(59)
399 #define IOMMU_PTE_FC	BIT_ULL(60)
400 #define IOMMU_PTE_IR	BIT_ULL(61)
401 #define IOMMU_PTE_IW	BIT_ULL(62)
402 
403 /*
404  * Bit value definition for DTE fields
405  */
406 #define DTE_FLAG_V	BIT_ULL(0)
407 #define DTE_FLAG_TV	BIT_ULL(1)
408 #define DTE_FLAG_HAD	(3ULL << 7)
409 #define DTE_FLAG_GIOV	BIT_ULL(54)
410 #define DTE_FLAG_GV	BIT_ULL(55)
411 #define DTE_GLX_SHIFT	(56)
412 #define DTE_GLX_MASK	(3)
413 #define DTE_FLAG_IR	BIT_ULL(61)
414 #define DTE_FLAG_IW	BIT_ULL(62)
415 
416 #define DTE_FLAG_IOTLB	BIT_ULL(32)
417 #define DTE_FLAG_MASK	(0x3ffULL << 32)
418 #define DEV_DOMID_MASK	0xffffULL
419 
420 #define DTE_GCR3_VAL_A(x)	(((x) >> 12) & 0x00007ULL)
421 #define DTE_GCR3_VAL_B(x)	(((x) >> 15) & 0x0ffffULL)
422 #define DTE_GCR3_VAL_C(x)	(((x) >> 31) & 0x1fffffULL)
423 
424 #define DTE_GCR3_SHIFT_A	58
425 #define DTE_GCR3_SHIFT_B	16
426 #define DTE_GCR3_SHIFT_C	43
427 
428 #define DTE_GPT_LEVEL_SHIFT	54
429 
430 #define GCR3_VALID		0x01ULL
431 
432 #define IOMMU_PAGE_MASK (((1ULL << 52) - 1) & ~0xfffULL)
433 #define IOMMU_PTE_PRESENT(pte) ((pte) & IOMMU_PTE_PR)
434 #define IOMMU_PTE_DIRTY(pte) ((pte) & IOMMU_PTE_HD)
435 #define IOMMU_PTE_PAGE(pte) (iommu_phys_to_virt((pte) & IOMMU_PAGE_MASK))
436 #define IOMMU_PTE_MODE(pte) (((pte) >> 9) & 0x07)
437 
438 #define IOMMU_PROT_MASK 0x03
439 #define IOMMU_PROT_IR 0x01
440 #define IOMMU_PROT_IW 0x02
441 
442 #define IOMMU_UNITY_MAP_FLAG_EXCL_RANGE	(1 << 2)
443 
444 /* IOMMU capabilities */
445 #define IOMMU_CAP_IOTLB   24
446 #define IOMMU_CAP_NPCACHE 26
447 #define IOMMU_CAP_EFR     27
448 
449 /* IOMMU IVINFO */
450 #define IOMMU_IVINFO_OFFSET     36
451 #define IOMMU_IVINFO_EFRSUP     BIT(0)
452 #define IOMMU_IVINFO_DMA_REMAP  BIT(1)
453 
454 /* IOMMU Feature Reporting Field (for IVHD type 10h */
455 #define IOMMU_FEAT_GASUP_SHIFT	6
456 
457 /* IOMMU Extended Feature Register (EFR) */
458 #define IOMMU_EFR_XTSUP_SHIFT	2
459 #define IOMMU_EFR_GASUP_SHIFT	7
460 #define IOMMU_EFR_MSICAPMMIOSUP_SHIFT	46
461 
462 #define MAX_DOMAIN_ID 65536
463 
464 /* Timeout stuff */
465 #define LOOP_TIMEOUT		100000
466 #define MMIO_STATUS_TIMEOUT	2000000
467 
468 extern bool amd_iommu_dump;
469 #define DUMP_printk(format, arg...)				\
470 	do {							\
471 		if (amd_iommu_dump)				\
472 			pr_info("AMD-Vi: " format, ## arg);	\
473 	} while(0);
474 
475 /* global flag if IOMMUs cache non-present entries */
476 extern bool amd_iommu_np_cache;
477 /* Only true if all IOMMUs support device IOTLBs */
478 extern bool amd_iommu_iotlb_sup;
479 
480 struct irq_remap_table {
481 	raw_spinlock_t lock;
482 	unsigned min_index;
483 	u32 *table;
484 };
485 
486 /* Interrupt remapping feature used? */
487 extern bool amd_iommu_irq_remap;
488 
489 extern const struct iommu_ops amd_iommu_ops;
490 
491 /* IVRS indicates that pre-boot remapping was enabled */
492 extern bool amdr_ivrs_remap_support;
493 
494 /* kmem_cache to get tables with 128 byte alignement */
495 extern struct kmem_cache *amd_iommu_irq_cache;
496 
497 #define PCI_SBDF_TO_SEGID(sbdf)		(((sbdf) >> 16) & 0xffff)
498 #define PCI_SBDF_TO_DEVID(sbdf)		((sbdf) & 0xffff)
499 #define PCI_SEG_DEVID_TO_SBDF(seg, devid)	((((u32)(seg) & 0xffff) << 16) | \
500 						 ((devid) & 0xffff))
501 
502 /* Make iterating over all pci segment easier */
503 #define for_each_pci_segment(pci_seg) \
504 	list_for_each_entry((pci_seg), &amd_iommu_pci_seg_list, list)
505 #define for_each_pci_segment_safe(pci_seg, next) \
506 	list_for_each_entry_safe((pci_seg), (next), &amd_iommu_pci_seg_list, list)
507 /*
508  * Make iterating over all IOMMUs easier
509  */
510 #define for_each_iommu(iommu) \
511 	list_for_each_entry((iommu), &amd_iommu_list, list)
512 #define for_each_iommu_safe(iommu, next) \
513 	list_for_each_entry_safe((iommu), (next), &amd_iommu_list, list)
514 /* Making iterating over protection_domain->dev_data_list easier */
515 #define for_each_pdom_dev_data(pdom_dev_data, pdom) \
516 	list_for_each_entry(pdom_dev_data, &pdom->dev_data_list, list)
517 #define for_each_pdom_dev_data_safe(pdom_dev_data, next, pdom) \
518 	list_for_each_entry_safe((pdom_dev_data), (next), &pdom->dev_data_list, list)
519 
520 struct amd_iommu;
521 struct iommu_domain;
522 struct irq_domain;
523 struct amd_irte_ops;
524 
525 #define AMD_IOMMU_FLAG_TRANS_PRE_ENABLED      (1 << 0)
526 
527 #define io_pgtable_to_data(x) \
528 	container_of((x), struct amd_io_pgtable, pgtbl)
529 
530 #define io_pgtable_ops_to_data(x) \
531 	io_pgtable_to_data(io_pgtable_ops_to_pgtable(x))
532 
533 #define io_pgtable_ops_to_domain(x) \
534 	container_of(io_pgtable_ops_to_data(x), \
535 		     struct protection_domain, iop)
536 
537 #define io_pgtable_cfg_to_data(x) \
538 	container_of((x), struct amd_io_pgtable, pgtbl.cfg)
539 
540 struct gcr3_tbl_info {
541 	u64	*gcr3_tbl;	/* Guest CR3 table */
542 	int	glx;		/* Number of levels for GCR3 table */
543 	u32	pasid_cnt;	/* Track attached PASIDs */
544 	u16	domid;		/* Per device domain ID */
545 };
546 
547 struct amd_io_pgtable {
548 	seqcount_t		seqcount;	/* Protects root/mode update */
549 	struct io_pgtable	pgtbl;
550 	int			mode;
551 	u64			*root;
552 	u64			*pgd;		/* v2 pgtable pgd pointer */
553 };
554 
555 enum protection_domain_mode {
556 	PD_MODE_V1 = 1,
557 	PD_MODE_V2,
558 };
559 
560 /* Track dev_data/PASID list for the protection domain */
561 struct pdom_dev_data {
562 	/* Points to attached device data */
563 	struct iommu_dev_data *dev_data;
564 	/* PASID attached to the protection domain */
565 	ioasid_t pasid;
566 	/* For protection_domain->dev_data_list */
567 	struct list_head list;
568 };
569 
570 /*
571  * This structure contains generic data for  IOMMU protection domains
572  * independent of their use.
573  */
574 struct protection_domain {
575 	struct list_head dev_list; /* List of all devices in this domain */
576 	struct iommu_domain domain; /* generic domain handle used by
577 				       iommu core code */
578 	struct amd_io_pgtable iop;
579 	spinlock_t lock;	/* mostly used to lock the page table*/
580 	u16 id;			/* the domain id written to the device table */
581 	enum protection_domain_mode pd_mode; /* Track page table type */
582 	bool dirty_tracking;	/* dirty tracking is enabled in the domain */
583 	unsigned dev_cnt;	/* devices assigned to this domain */
584 	unsigned dev_iommu[MAX_IOMMUS]; /* per-IOMMU reference count */
585 
586 	struct mmu_notifier mn;	/* mmu notifier for the SVA domain */
587 	struct list_head dev_data_list; /* List of pdom_dev_data */
588 };
589 
590 /*
591  * This structure contains information about one PCI segment in the system.
592  */
593 struct amd_iommu_pci_seg {
594 	/* List with all PCI segments in the system */
595 	struct list_head list;
596 
597 	/* List of all available dev_data structures */
598 	struct llist_head dev_data_list;
599 
600 	/* PCI segment number */
601 	u16 id;
602 
603 	/* Largest PCI device id we expect translation requests for */
604 	u16 last_bdf;
605 
606 	/* Size of the device table */
607 	u32 dev_table_size;
608 
609 	/* Size of the alias table */
610 	u32 alias_table_size;
611 
612 	/* Size of the rlookup table */
613 	u32 rlookup_table_size;
614 
615 	/*
616 	 * device table virtual address
617 	 *
618 	 * Pointer to the per PCI segment device table.
619 	 * It is indexed by the PCI device id or the HT unit id and contains
620 	 * information about the domain the device belongs to as well as the
621 	 * page table root pointer.
622 	 */
623 	struct dev_table_entry *dev_table;
624 
625 	/*
626 	 * The rlookup iommu table is used to find the IOMMU which is
627 	 * responsible for a specific device. It is indexed by the PCI
628 	 * device id.
629 	 */
630 	struct amd_iommu **rlookup_table;
631 
632 	/*
633 	 * This table is used to find the irq remapping table for a given
634 	 * device id quickly.
635 	 */
636 	struct irq_remap_table **irq_lookup_table;
637 
638 	/*
639 	 * Pointer to a device table which the content of old device table
640 	 * will be copied to. It's only be used in kdump kernel.
641 	 */
642 	struct dev_table_entry *old_dev_tbl_cpy;
643 
644 	/*
645 	 * The alias table is a driver specific data structure which contains the
646 	 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
647 	 * More than one device can share the same requestor id.
648 	 */
649 	u16 *alias_table;
650 
651 	/*
652 	 * A list of required unity mappings we find in ACPI. It is not locked
653 	 * because as runtime it is only read. It is created at ACPI table
654 	 * parsing time.
655 	 */
656 	struct list_head unity_map;
657 };
658 
659 /*
660  * Structure where we save information about one hardware AMD IOMMU in the
661  * system.
662  */
663 struct amd_iommu {
664 	struct list_head list;
665 
666 	/* Index within the IOMMU array */
667 	int index;
668 
669 	/* locks the accesses to the hardware */
670 	raw_spinlock_t lock;
671 
672 	/* Pointer to PCI device of this IOMMU */
673 	struct pci_dev *dev;
674 
675 	/* Cache pdev to root device for resume quirks */
676 	struct pci_dev *root_pdev;
677 
678 	/* physical address of MMIO space */
679 	u64 mmio_phys;
680 
681 	/* physical end address of MMIO space */
682 	u64 mmio_phys_end;
683 
684 	/* virtual address of MMIO space */
685 	u8 __iomem *mmio_base;
686 
687 	/* capabilities of that IOMMU read from ACPI */
688 	u32 cap;
689 
690 	/* flags read from acpi table */
691 	u8 acpi_flags;
692 
693 	/* Extended features */
694 	u64 features;
695 
696 	/* Extended features 2 */
697 	u64 features2;
698 
699 	/* PCI device id of the IOMMU device */
700 	u16 devid;
701 
702 	/*
703 	 * Capability pointer. There could be more than one IOMMU per PCI
704 	 * device function if there are more than one AMD IOMMU capability
705 	 * pointers.
706 	 */
707 	u16 cap_ptr;
708 
709 	/* pci domain of this IOMMU */
710 	struct amd_iommu_pci_seg *pci_seg;
711 
712 	/* start of exclusion range of that IOMMU */
713 	u64 exclusion_start;
714 	/* length of exclusion range of that IOMMU */
715 	u64 exclusion_length;
716 
717 	/* command buffer virtual address */
718 	u8 *cmd_buf;
719 	u32 cmd_buf_head;
720 	u32 cmd_buf_tail;
721 
722 	/* event buffer virtual address */
723 	u8 *evt_buf;
724 
725 	/* Name for event log interrupt */
726 	unsigned char evt_irq_name[16];
727 
728 	/* Base of the PPR log, if present */
729 	u8 *ppr_log;
730 
731 	/* Name for PPR log interrupt */
732 	unsigned char ppr_irq_name[16];
733 
734 	/* Base of the GA log, if present */
735 	u8 *ga_log;
736 
737 	/* Name for GA log interrupt */
738 	unsigned char ga_irq_name[16];
739 
740 	/* Tail of the GA log, if present */
741 	u8 *ga_log_tail;
742 
743 	/* true if interrupts for this IOMMU are already enabled */
744 	bool int_enabled;
745 
746 	/* if one, we need to send a completion wait command */
747 	bool need_sync;
748 
749 	/* true if disable irte caching */
750 	bool irtcachedis_enabled;
751 
752 	/* Handle for IOMMU core code */
753 	struct iommu_device iommu;
754 
755 	/*
756 	 * We can't rely on the BIOS to restore all values on reinit, so we
757 	 * need to stash them
758 	 */
759 
760 	/* The iommu BAR */
761 	u32 stored_addr_lo;
762 	u32 stored_addr_hi;
763 
764 	/*
765 	 * Each iommu has 6 l1s, each of which is documented as having 0x12
766 	 * registers
767 	 */
768 	u32 stored_l1[6][0x12];
769 
770 	/* The l2 indirect registers */
771 	u32 stored_l2[0x83];
772 
773 	/* The maximum PC banks and counters/bank (PCSup=1) */
774 	u8 max_banks;
775 	u8 max_counters;
776 #ifdef CONFIG_IRQ_REMAP
777 	struct irq_domain *ir_domain;
778 
779 	struct amd_irte_ops *irte_ops;
780 #endif
781 
782 	u32 flags;
783 	volatile u64 *cmd_sem;
784 	atomic64_t cmd_sem_val;
785 
786 #ifdef CONFIG_AMD_IOMMU_DEBUGFS
787 	/* DebugFS Info */
788 	struct dentry *debugfs;
789 #endif
790 
791 	/* IOPF support */
792 	struct iopf_queue *iopf_queue;
793 	unsigned char iopfq_name[32];
794 };
795 
dev_to_amd_iommu(struct device * dev)796 static inline struct amd_iommu *dev_to_amd_iommu(struct device *dev)
797 {
798 	struct iommu_device *iommu = dev_to_iommu_device(dev);
799 
800 	return container_of(iommu, struct amd_iommu, iommu);
801 }
802 
803 #define ACPIHID_UID_LEN 256
804 #define ACPIHID_HID_LEN 9
805 
806 struct acpihid_map_entry {
807 	struct list_head list;
808 	u8 uid[ACPIHID_UID_LEN];
809 	u8 hid[ACPIHID_HID_LEN];
810 	u32 devid;
811 	u32 root_devid;
812 	bool cmd_line;
813 	struct iommu_group *group;
814 };
815 
816 struct devid_map {
817 	struct list_head list;
818 	u8 id;
819 	u32 devid;
820 	bool cmd_line;
821 };
822 
823 #define AMD_IOMMU_DEVICE_FLAG_ATS_SUP     0x1    /* ATS feature supported */
824 #define AMD_IOMMU_DEVICE_FLAG_PRI_SUP     0x2    /* PRI feature supported */
825 #define AMD_IOMMU_DEVICE_FLAG_PASID_SUP   0x4    /* PASID context supported */
826 /* Device may request execution on memory pages */
827 #define AMD_IOMMU_DEVICE_FLAG_EXEC_SUP    0x8
828 /* Device may request super-user privileges */
829 #define AMD_IOMMU_DEVICE_FLAG_PRIV_SUP   0x10
830 
831 /*
832  * This struct contains device specific data for the IOMMU
833  */
834 struct iommu_dev_data {
835 	/*Protect against attach/detach races */
836 	spinlock_t lock;
837 
838 	struct list_head list;		  /* For domain->dev_list */
839 	struct llist_node dev_data_list;  /* For global dev_data_list */
840 	struct protection_domain *domain; /* Domain the device is bound to */
841 	struct gcr3_tbl_info gcr3_info;   /* Per-device GCR3 table */
842 	struct device *dev;
843 	u16 devid;			  /* PCI Device ID */
844 
845 	u32 max_pasids;			  /* Max supported PASIDs */
846 	u32 flags;			  /* Holds AMD_IOMMU_DEVICE_FLAG_<*> */
847 	int ats_qdep;
848 	u8 ats_enabled  :1;		  /* ATS state */
849 	u8 pri_enabled  :1;		  /* PRI state */
850 	u8 pasid_enabled:1;		  /* PASID state */
851 	u8 pri_tlp      :1;		  /* PASID TLB required for
852 					     PPR completions */
853 	u8 ppr          :1;		  /* Enable device PPR support */
854 	bool use_vapic;			  /* Enable device to use vapic mode */
855 	bool defer_attach;
856 
857 	struct ratelimit_state rs;        /* Ratelimit IOPF messages */
858 };
859 
860 /* Map HPET and IOAPIC ids to the devid used by the IOMMU */
861 extern struct list_head ioapic_map;
862 extern struct list_head hpet_map;
863 extern struct list_head acpihid_map;
864 
865 /*
866  * List with all PCI segments in the system. This list is not locked because
867  * it is only written at driver initialization time
868  */
869 extern struct list_head amd_iommu_pci_seg_list;
870 
871 /*
872  * List with all IOMMUs in the system. This list is not locked because it is
873  * only written and read at driver initialization or suspend time
874  */
875 extern struct list_head amd_iommu_list;
876 
877 /*
878  * Array with pointers to each IOMMU struct
879  * The indices are referenced in the protection domains
880  */
881 extern struct amd_iommu *amd_iommus[MAX_IOMMUS];
882 
883 /*
884  * Structure defining one entry in the device table
885  */
886 struct dev_table_entry {
887 	u64 data[4];
888 };
889 
890 /*
891  * One entry for unity mappings parsed out of the ACPI table.
892  */
893 struct unity_map_entry {
894 	struct list_head list;
895 
896 	/* starting device id this entry is used for (including) */
897 	u16 devid_start;
898 	/* end device id this entry is used for (including) */
899 	u16 devid_end;
900 
901 	/* start address to unity map (including) */
902 	u64 address_start;
903 	/* end address to unity map (including) */
904 	u64 address_end;
905 
906 	/* required protection */
907 	int prot;
908 };
909 
910 /*
911  * Data structures for device handling
912  */
913 
914 /* size of the dma_ops aperture as power of 2 */
915 extern unsigned amd_iommu_aperture_order;
916 
917 /* allocation bitmap for domain ids */
918 extern unsigned long *amd_iommu_pd_alloc_bitmap;
919 
920 extern bool amd_iommu_force_isolation;
921 
922 /* Max levels of glxval supported */
923 extern int amd_iommu_max_glx_val;
924 
925 /* Global EFR and EFR2 registers */
926 extern u64 amd_iommu_efr;
927 extern u64 amd_iommu_efr2;
928 
get_ioapic_devid(int id)929 static inline int get_ioapic_devid(int id)
930 {
931 	struct devid_map *entry;
932 
933 	list_for_each_entry(entry, &ioapic_map, list) {
934 		if (entry->id == id)
935 			return entry->devid;
936 	}
937 
938 	return -EINVAL;
939 }
940 
get_hpet_devid(int id)941 static inline int get_hpet_devid(int id)
942 {
943 	struct devid_map *entry;
944 
945 	list_for_each_entry(entry, &hpet_map, list) {
946 		if (entry->id == id)
947 			return entry->devid;
948 	}
949 
950 	return -EINVAL;
951 }
952 
953 enum amd_iommu_intr_mode_type {
954 	AMD_IOMMU_GUEST_IR_LEGACY,
955 
956 	/* This mode is not visible to users. It is used when
957 	 * we cannot fully enable vAPIC and fallback to only support
958 	 * legacy interrupt remapping via 128-bit IRTE.
959 	 */
960 	AMD_IOMMU_GUEST_IR_LEGACY_GA,
961 	AMD_IOMMU_GUEST_IR_VAPIC,
962 };
963 
964 #define AMD_IOMMU_GUEST_IR_GA(x)	(x == AMD_IOMMU_GUEST_IR_VAPIC || \
965 					 x == AMD_IOMMU_GUEST_IR_LEGACY_GA)
966 
967 #define AMD_IOMMU_GUEST_IR_VAPIC(x)	(x == AMD_IOMMU_GUEST_IR_VAPIC)
968 
969 union irte {
970 	u32 val;
971 	struct {
972 		u32 valid	: 1,
973 		    no_fault	: 1,
974 		    int_type	: 3,
975 		    rq_eoi	: 1,
976 		    dm		: 1,
977 		    rsvd_1	: 1,
978 		    destination	: 8,
979 		    vector	: 8,
980 		    rsvd_2	: 8;
981 	} fields;
982 };
983 
984 #define APICID_TO_IRTE_DEST_LO(x)    (x & 0xffffff)
985 #define APICID_TO_IRTE_DEST_HI(x)    ((x >> 24) & 0xff)
986 
987 union irte_ga_lo {
988 	u64 val;
989 
990 	/* For int remapping */
991 	struct {
992 		u64 valid	: 1,
993 		    no_fault	: 1,
994 		    /* ------ */
995 		    int_type	: 3,
996 		    rq_eoi	: 1,
997 		    dm		: 1,
998 		    /* ------ */
999 		    guest_mode	: 1,
1000 		    destination	: 24,
1001 		    ga_tag	: 32;
1002 	} fields_remap;
1003 
1004 	/* For guest vAPIC */
1005 	struct {
1006 		u64 valid	: 1,
1007 		    no_fault	: 1,
1008 		    /* ------ */
1009 		    ga_log_intr	: 1,
1010 		    rsvd1	: 3,
1011 		    is_run	: 1,
1012 		    /* ------ */
1013 		    guest_mode	: 1,
1014 		    destination	: 24,
1015 		    ga_tag	: 32;
1016 	} fields_vapic;
1017 };
1018 
1019 union irte_ga_hi {
1020 	u64 val;
1021 	struct {
1022 		u64 vector	: 8,
1023 		    rsvd_1	: 4,
1024 		    ga_root_ptr	: 40,
1025 		    rsvd_2	: 4,
1026 		    destination : 8;
1027 	} fields;
1028 };
1029 
1030 struct irte_ga {
1031 	union {
1032 		struct {
1033 			union irte_ga_lo lo;
1034 			union irte_ga_hi hi;
1035 		};
1036 		u128 irte;
1037 	};
1038 };
1039 
1040 struct irq_2_irte {
1041 	u16 devid; /* Device ID for IRTE table */
1042 	u16 index; /* Index into IRTE table*/
1043 };
1044 
1045 struct amd_ir_data {
1046 	u32 cached_ga_tag;
1047 	struct amd_iommu *iommu;
1048 	struct irq_2_irte irq_2_irte;
1049 	struct msi_msg msi_entry;
1050 	void *entry;    /* Pointer to union irte or struct irte_ga */
1051 
1052 	/**
1053 	 * Store information for activate/de-activate
1054 	 * Guest virtual APIC mode during runtime.
1055 	 */
1056 	struct irq_cfg *cfg;
1057 	int ga_vector;
1058 	u64 ga_root_ptr;
1059 	u32 ga_tag;
1060 };
1061 
1062 struct amd_irte_ops {
1063 	void (*prepare)(void *, u32, bool, u8, u32, int);
1064 	void (*activate)(struct amd_iommu *iommu, void *, u16, u16);
1065 	void (*deactivate)(struct amd_iommu *iommu, void *, u16, u16);
1066 	void (*set_affinity)(struct amd_iommu *iommu, void *, u16, u16, u8, u32);
1067 	void *(*get)(struct irq_remap_table *, int);
1068 	void (*set_allocated)(struct irq_remap_table *, int);
1069 	bool (*is_allocated)(struct irq_remap_table *, int);
1070 	void (*clear_allocated)(struct irq_remap_table *, int);
1071 };
1072 
1073 #ifdef CONFIG_IRQ_REMAP
1074 extern struct amd_irte_ops irte_32_ops;
1075 extern struct amd_irte_ops irte_128_ops;
1076 #endif
1077 
1078 #endif /* _ASM_X86_AMD_IOMMU_TYPES_H */
1079