blob: a4ddeade8ac4d72691d13f1a351f8b688e00509d [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Sakari Ailusbd3c2e62019-01-02 23:16:57 +02002# The IOVA library may also be used by non-IOMMU_API users
3config IOMMU_IOVA
4 tristate
5
Ohad Ben-Cohenab493a02011-06-02 02:48:05 +03006# IOMMU_API always gets selected by whoever wants it.
7config IOMMU_API
8 bool
Ohad Ben-Cohenb10f1272011-06-02 03:20:08 +03009
Joerg Roedel68255b62011-06-14 15:51:54 +020010menuconfig IOMMU_SUPPORT
11 bool "IOMMU Hardware Support"
Arnd Bergmanne5144c92015-01-28 15:45:53 +010012 depends on MMU
Joerg Roedel68255b62011-06-14 15:51:54 +020013 default y
14 ---help---
15 Say Y here if you want to compile device drivers for IO Memory
16 Management Units into the kernel. These devices usually allow to
17 remap DMA requests and/or remap interrupts from other devices on the
18 system.
19
20if IOMMU_SUPPORT
21
Will Deaconfdb1d7b2014-11-14 17:16:49 +000022menu "Generic IOMMU Pagetable Support"
23
24# Selected by the actual pagetable implementations
25config IOMMU_IO_PGTABLE
26 bool
27
Will Deacone1d3c0f2014-11-14 17:18:23 +000028config IOMMU_IO_PGTABLE_LPAE
29 bool "ARMv7/v8 Long Descriptor Format"
30 select IOMMU_IO_PGTABLE
Geert Uytterhoeven48e6f762018-04-17 19:49:09 +020031 depends on ARM || ARM64 || (COMPILE_TEST && !GENERIC_ATOMIC64)
Will Deacone1d3c0f2014-11-14 17:18:23 +000032 help
33 Enable support for the ARM long descriptor pagetable format.
34 This allocator supports 4K/2M/1G, 16K/32M and 64K/512M page
35 sizes at both stage-1 and stage-2, as well as address spaces
36 up to 48-bits in size.
37
Will Deaconfe4b9912014-11-17 23:31:12 +000038config IOMMU_IO_PGTABLE_LPAE_SELFTEST
39 bool "LPAE selftests"
40 depends on IOMMU_IO_PGTABLE_LPAE
41 help
42 Enable self-tests for LPAE page table allocator. This performs
43 a series of page-table consistency checks during boot.
44
45 If unsure, say N here.
46
Robin Murphye5fc9752016-01-26 17:13:13 +000047config IOMMU_IO_PGTABLE_ARMV7S
48 bool "ARMv7/v8 Short Descriptor Format"
49 select IOMMU_IO_PGTABLE
Geert Uytterhoeven48e6f762018-04-17 19:49:09 +020050 depends on ARM || ARM64 || COMPILE_TEST
Robin Murphye5fc9752016-01-26 17:13:13 +000051 help
52 Enable support for the ARM Short-descriptor pagetable format.
53 This supports 32-bit virtual and physical addresses mapped using
54 2-level tables with 4KB pages/1MB sections, and contiguous entries
55 for 64KB pages/16MB supersections if indicated by the IOMMU driver.
56
57config IOMMU_IO_PGTABLE_ARMV7S_SELFTEST
58 bool "ARMv7s selftests"
59 depends on IOMMU_IO_PGTABLE_ARMV7S
60 help
61 Enable self-tests for ARMv7s page table allocator. This performs
62 a series of page-table consistency checks during boot.
63
64 If unsure, say N here.
65
Will Deaconfdb1d7b2014-11-14 17:16:49 +000066endmenu
67
Gary R Hookbad614b2018-06-12 16:41:21 -050068config IOMMU_DEBUGFS
69 bool "Export IOMMU internals in DebugFS"
70 depends on DEBUG_FS
71 help
72 Allows exposure of IOMMU device internals. This option enables
73 the use of debugfs by IOMMU drivers as required. Devices can,
74 at initialization time, cause the IOMMU code to create a top-level
75 debug/iommu directory, and then populate a subdirectory with
76 entries as required.
77
Olof Johansson58d11312018-07-20 11:02:23 -070078config IOMMU_DEFAULT_PASSTHROUGH
79 bool "IOMMU passthrough by default"
80 depends on IOMMU_API
81 help
82 Enable passthrough by default, removing the need to pass in
83 iommu.passthrough=on or iommu=pt through command line. If this
84 is enabled, you can still disable with iommu.passthrough=off
85 or iommu=nopt depending on the architecture.
86
87 If unsure, say N here.
88
Hiroshi Doyu4e0ee782012-06-25 14:23:54 +030089config OF_IOMMU
90 def_bool y
Will Deacon7eba1d52014-08-27 16:20:32 +010091 depends on OF && IOMMU_API
Hiroshi Doyu4e0ee782012-06-25 14:23:54 +030092
Robin Murphy0db2e5d2015-10-01 20:13:58 +010093# IOMMU-agnostic DMA-mapping layer
94config IOMMU_DMA
95 bool
Robin Murphy0db2e5d2015-10-01 20:13:58 +010096 select IOMMU_API
97 select IOMMU_IOVA
Julien Grallece6e6f2019-05-01 14:58:19 +010098 select IRQ_MSI_IOMMU
Robin Murphy59a68eb2016-02-29 11:13:39 +000099 select NEED_SG_DMA_LENGTH
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100100
Varun Sethi695093e2013-07-15 10:20:57 +0530101config FSL_PAMU
102 bool "Freescale IOMMU support"
Joerg Roedela4d98fb2017-08-09 15:00:36 +0200103 depends on PCI
Joerg Roedelaf29d9f2017-08-09 15:04:47 +0200104 depends on PHYS_64BIT
Andy Fleminga0d284d2016-03-16 23:15:44 -0500105 depends on PPC_E500MC || (COMPILE_TEST && PPC)
Varun Sethi695093e2013-07-15 10:20:57 +0530106 select IOMMU_API
107 select GENERIC_ALLOCATOR
108 help
109 Freescale PAMU support. PAMU is the IOMMU present on Freescale QorIQ platforms.
110 PAMU can authorize memory access, remap the memory address, and remap I/O
111 transaction types.
112
Ohad Ben-Cohenb10f1272011-06-02 03:20:08 +0300113# MSM IOMMU support
114config MSM_IOMMU
115 bool "MSM IOMMU Support"
Joerg Roedel477ab7a2015-01-20 16:13:33 +0100116 depends on ARM
117 depends on ARCH_MSM8X60 || ARCH_MSM8960 || COMPILE_TEST
Ohad Ben-Cohenb10f1272011-06-02 03:20:08 +0300118 select IOMMU_API
Sricharan Rc9220fb2016-06-13 17:06:06 +0530119 select IOMMU_IO_PGTABLE_ARMV7S
Ohad Ben-Cohenb10f1272011-06-02 03:20:08 +0300120 help
121 Support for the IOMMUs found on certain Qualcomm SOCs.
122 These IOMMUs allow virtualization of the address space used by most
123 cores within the multimedia subsystem.
124
125 If unsure, say N here.
126
127config IOMMU_PGTABLES_L2
128 def_bool y
129 depends on MSM_IOMMU && MMU && SMP && CPU_DCACHE_DISABLE=n
Ohad Ben-Cohen29b68412011-06-05 18:22:18 +0300130
131# AMD IOMMU support
132config AMD_IOMMU
133 bool "AMD IOMMU support"
134 select SWIOTLB
135 select PCI_MSI
Joerg Roedel52815b72011-11-17 17:24:28 +0100136 select PCI_ATS
137 select PCI_PRI
138 select PCI_PASID
Ohad Ben-Cohen29b68412011-06-05 18:22:18 +0300139 select IOMMU_API
Joerg Roedela72c4222016-07-05 11:12:49 +0200140 select IOMMU_IOVA
Thomas Petazzoni0dbc6072013-10-03 11:59:14 +0200141 depends on X86_64 && PCI && ACPI
Ohad Ben-Cohen29b68412011-06-05 18:22:18 +0300142 ---help---
143 With this option you can enable support for AMD IOMMU hardware in
144 your system. An IOMMU is a hardware component which provides
145 remapping of DMA memory accesses from devices. With an AMD IOMMU you
Masanari Iida59bf8962012-04-18 00:01:21 +0900146 can isolate the DMA memory of different devices and protect the
Ohad Ben-Cohen29b68412011-06-05 18:22:18 +0300147 system from misbehaving device drivers or hardware.
148
149 You can find out if your system has an AMD IOMMU if you look into
150 your BIOS for an option to enable it or if you have an IVRS ACPI
151 table.
152
Joerg Roedele3c495c2011-11-09 12:31:15 +0100153config AMD_IOMMU_V2
Kees Cooka446e212013-01-16 18:53:39 -0800154 tristate "AMD IOMMU Version 2 driver"
Borislav Petkove5cac322014-07-10 12:44:56 +0200155 depends on AMD_IOMMU
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100156 select MMU_NOTIFIER
Joerg Roedele3c495c2011-11-09 12:31:15 +0100157 ---help---
158 This option enables support for the AMD IOMMUv2 features of the IOMMU
159 hardware. Select this option if you want to use devices that support
Masanari Iida59bf8962012-04-18 00:01:21 +0900160 the PCI PRI and PASID interface.
Joerg Roedele3c495c2011-11-09 12:31:15 +0100161
Gary R Hook7d0f5fd2018-06-12 16:41:30 -0500162config AMD_IOMMU_DEBUGFS
163 bool "Enable AMD IOMMU internals in DebugFS"
164 depends on AMD_IOMMU && IOMMU_DEBUGFS
165 ---help---
166 !!!WARNING!!! !!!WARNING!!! !!!WARNING!!! !!!WARNING!!!
167
168 DO NOT ENABLE THIS OPTION UNLESS YOU REALLY, -REALLY- KNOW WHAT YOU ARE DOING!!!
169 Exposes AMD IOMMU device internals in DebugFS.
170
171 This option is -NOT- intended for production environments, and should
172 not generally be enabled.
173
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300174# Intel IOMMU support
Suresh Siddhad3f13812011-08-23 17:05:25 -0700175config DMAR_TABLE
176 bool
177
178config INTEL_IOMMU
179 bool "Support for Intel IOMMU using DMA Remapping Devices"
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300180 depends on PCI_MSI && ACPI && (X86 || IA64_GENERIC)
181 select IOMMU_API
Robin Murphy114150d2015-01-12 17:51:13 +0000182 select IOMMU_IOVA
Christoph Hellwigf616ab52018-05-09 06:53:49 +0200183 select NEED_DMA_MAP_STATE
Suresh Siddhad3f13812011-08-23 17:05:25 -0700184 select DMAR_TABLE
Lu Baoluc5a5dc42019-09-06 14:14:50 +0800185 select SWIOTLB
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300186 help
187 DMA remapping (DMAR) devices support enables independent address
188 translations for Direct Memory Access (DMA) from devices.
189 These DMA remapping devices are reported via ACPI tables
190 and include PCI device scope covered by these DMA
191 remapping devices.
192
Sohil Mehtaee2636b2018-09-11 17:11:38 -0700193config INTEL_IOMMU_DEBUGFS
194 bool "Export Intel IOMMU internals in Debugfs"
195 depends on INTEL_IOMMU && IOMMU_DEBUGFS
196 help
197 !!!WARNING!!!
198
199 DO NOT ENABLE THIS OPTION UNLESS YOU REALLY KNOW WHAT YOU ARE DOING!!!
200
201 Expose Intel IOMMU internals in Debugfs.
202
203 This option is -NOT- intended for production environments, and should
204 only be enabled for debugging Intel IOMMU.
205
David Woodhouse8a94ade2015-03-24 14:54:56 +0000206config INTEL_IOMMU_SVM
207 bool "Support for Shared Virtual Memory with Intel IOMMU"
208 depends on INTEL_IOMMU && X86
David Woodhouseb16d0cb2015-10-12 14:17:37 +0100209 select PCI_PASID
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100210 select MMU_NOTIFIER
David Woodhouse8a94ade2015-03-24 14:54:56 +0000211 help
212 Shared Virtual Memory (SVM) provides a facility for devices
213 to access DMA resources through process address space by
214 means of a Process Address Space ID (PASID).
215
Suresh Siddhad3f13812011-08-23 17:05:25 -0700216config INTEL_IOMMU_DEFAULT_ON
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300217 def_bool y
Suresh Siddhad3f13812011-08-23 17:05:25 -0700218 prompt "Enable Intel DMA Remapping Devices by default"
219 depends on INTEL_IOMMU
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300220 help
221 Selecting this option will enable a DMAR device at boot time if
222 one is found. If this option is not selected, DMAR support can
223 be enabled by passing intel_iommu=on to the kernel.
224
Suresh Siddhad3f13812011-08-23 17:05:25 -0700225config INTEL_IOMMU_BROKEN_GFX_WA
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300226 bool "Workaround broken graphics drivers (going away soon)"
Suresh Siddhad3f13812011-08-23 17:05:25 -0700227 depends on INTEL_IOMMU && BROKEN && X86
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300228 ---help---
229 Current Graphics drivers tend to use physical address
230 for DMA and avoid using DMA APIs. Setting this config
231 option permits the IOMMU driver to set a unity map for
232 all the OS-visible memory. Hence the driver can continue
233 to use physical addresses for DMA, at least until this
234 option is removed in the 2.6.32 kernel.
235
Suresh Siddhad3f13812011-08-23 17:05:25 -0700236config INTEL_IOMMU_FLOPPY_WA
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300237 def_bool y
Suresh Siddhad3f13812011-08-23 17:05:25 -0700238 depends on INTEL_IOMMU && X86
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300239 ---help---
240 Floppy disk drivers are known to bypass DMA API calls
241 thereby failing to work when IOMMU is enabled. This
242 workaround will setup a 1:1 mapping for the first
243 16MiB to make floppy (an ISA device) work.
244
Suresh Siddhad3f13812011-08-23 17:05:25 -0700245config IRQ_REMAP
Kees Cooka446e212013-01-16 18:53:39 -0800246 bool "Support for Interrupt Remapping"
247 depends on X86_64 && X86_IO_APIC && PCI_MSI && ACPI
Suresh Siddhad3f13812011-08-23 17:05:25 -0700248 select DMAR_TABLE
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300249 ---help---
250 Supports Interrupt remapping for IO-APIC and MSI devices.
251 To use x2apic mode in the CPU's which support x2APIC enhancements or
252 to support platforms with CPU's having > 8 bit APIC ID, say Y.
Joerg Roedel68255b62011-06-14 15:51:54 +0200253
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300254# OMAP IOMMU support
255config OMAP_IOMMU
256 bool "OMAP IOMMU Support"
Joerg Roedel477ab7a2015-01-20 16:13:33 +0100257 depends on ARM && MMU
258 depends on ARCH_OMAP2PLUS || COMPILE_TEST
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300259 select IOMMU_API
Gerd Hoffmann06b718c2014-11-11 09:17:00 +0100260 ---help---
261 The OMAP3 media platform drivers depend on iommu support,
262 if you need them say Y here.
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300263
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300264config OMAP_IOMMU_DEBUG
Suman Anna61c75352014-10-22 17:22:30 -0500265 bool "Export OMAP IOMMU internals in DebugFS"
266 depends on OMAP_IOMMU && DEBUG_FS
267 ---help---
268 Select this to see extensive information about
269 the internal state of OMAP IOMMU in debugfs.
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300270
Suman Anna61c75352014-10-22 17:22:30 -0500271 Say N unless you know you need this.
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300272
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800273config ROCKCHIP_IOMMU
274 bool "Rockchip IOMMU Support"
Simon Xue4f1fcfe2017-05-03 17:19:40 +0200275 depends on ARM || ARM64
Joerg Roedel11175882014-11-03 18:16:56 +0100276 depends on ARCH_ROCKCHIP || COMPILE_TEST
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800277 select IOMMU_API
278 select ARM_DMA_USE_IOMMU
279 help
280 Support for IOMMUs found on Rockchip rk32xx SOCs.
281 These IOMMUs allow virtualization of the address space used by most
282 cores within the multimedia subsystem.
283 Say Y here if you are using a Rockchip SoC that includes an IOMMU
284 device.
Ohad Ben-Cohenab493a02011-06-02 02:48:05 +0300285
Hiroshi DOYUd53e54b2011-11-16 17:36:37 +0200286config TEGRA_IOMMU_GART
287 bool "Tegra GART IOMMU Support"
288 depends on ARCH_TEGRA_2x_SOC
Dmitry Osipenkoce2785a2018-12-12 23:38:56 +0300289 depends on TEGRA_MC
Hiroshi DOYUd53e54b2011-11-16 17:36:37 +0200290 select IOMMU_API
291 help
292 Enables support for remapping discontiguous physical memory
293 shared with the operating system into contiguous I/O virtual
294 space through the GART (Graphics Address Relocation Table)
295 hardware included on Tegra SoCs.
296
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200297config TEGRA_IOMMU_SMMU
Thierry Reding89184652014-04-16 09:24:44 +0200298 bool "NVIDIA Tegra SMMU Support"
299 depends on ARCH_TEGRA
300 depends on TEGRA_AHB
301 depends on TEGRA_MC
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200302 select IOMMU_API
303 help
Thierry Reding89184652014-04-16 09:24:44 +0200304 This driver supports the IOMMU hardware (SMMU) found on NVIDIA Tegra
Thierry Reding588c43a2015-03-23 10:45:12 +0100305 SoCs (Tegra30 up to Tegra210).
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200306
KyongHo Cho2a965362012-05-12 05:56:09 +0900307config EXYNOS_IOMMU
308 bool "Exynos IOMMU Support"
Marek Szyprowski740a01e2016-02-18 15:12:58 +0100309 depends on ARCH_EXYNOS && MMU
Arnd Bergmanndb3a7fd2017-07-28 15:19:19 +0200310 depends on !CPU_BIG_ENDIAN # revisit driver if we can enable big-endian ptes
KyongHo Cho2a965362012-05-12 05:56:09 +0900311 select IOMMU_API
Tushar Behera4802c1d2014-07-04 15:01:08 +0530312 select ARM_DMA_USE_IOMMU
KyongHo Cho2a965362012-05-12 05:56:09 +0900313 help
Sachin Kamat5455d702014-05-22 09:50:55 +0530314 Support for the IOMMU (System MMU) of Samsung Exynos application
315 processor family. This enables H/W multimedia accelerators to see
316 non-linear physical memory chunks as linear memory in their
317 address space.
KyongHo Cho2a965362012-05-12 05:56:09 +0900318
319 If unsure, say N here.
320
321config EXYNOS_IOMMU_DEBUG
322 bool "Debugging log for Exynos IOMMU"
323 depends on EXYNOS_IOMMU
324 help
325 Select this to see the detailed log message that shows what
Sachin Kamat5455d702014-05-22 09:50:55 +0530326 happens in the IOMMU driver.
KyongHo Cho2a965362012-05-12 05:56:09 +0900327
Sachin Kamat5455d702014-05-22 09:50:55 +0530328 Say N unless you need kernel log message for IOMMU debugging.
KyongHo Cho2a965362012-05-12 05:56:09 +0900329
Laurent Pinchartd25a2a12014-04-02 12:47:37 +0200330config IPMMU_VMSA
331 bool "Renesas VMSA-compatible IPMMU"
Magnus Damm3ae47292017-05-17 19:07:10 +0900332 depends on ARM || IOMMU_DMA
Guenter Roecka4aaecc2017-09-10 13:43:37 -0700333 depends on ARCH_RENESAS || (COMPILE_TEST && !GENERIC_ATOMIC64)
Laurent Pinchartd25a2a12014-04-02 12:47:37 +0200334 select IOMMU_API
Laurent Pinchartf20ed392015-01-20 18:30:04 +0200335 select IOMMU_IO_PGTABLE_LPAE
Laurent Pinchartd25a2a12014-04-02 12:47:37 +0200336 select ARM_DMA_USE_IOMMU
337 help
Geert Uytterhoeven15021d32018-07-25 15:10:29 +0200338 Support for the Renesas VMSA-compatible IPMMU found in the R-Mobile
339 APE6, R-Car Gen2, and R-Car Gen3 SoCs.
Laurent Pinchartd25a2a12014-04-02 12:47:37 +0200340
341 If unsure, say N.
342
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000343config SPAPR_TCE_IOMMU
344 bool "sPAPR TCE IOMMU Support"
Alexey Kardashevskiy5b251992013-05-21 13:33:11 +1000345 depends on PPC_POWERNV || PPC_PSERIES
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000346 select IOMMU_API
347 help
348 Enables bits of IOMMU API required by VFIO. The iommu_ops
349 is not implemented as it is not necessary for VFIO.
350
Will Deacon48ec83b2015-05-27 17:25:59 +0100351# ARM IOMMU support
Will Deacon45ae7cf2013-06-24 18:31:25 +0100352config ARM_SMMU
353 bool "ARM Ltd. System MMU (SMMU) Support"
Joerg Roedela20cc762015-02-04 16:53:44 +0100354 depends on (ARM64 || ARM) && MMU
Will Deacon45ae7cf2013-06-24 18:31:25 +0100355 select IOMMU_API
Will Deacon518f7132014-11-14 17:17:54 +0000356 select IOMMU_IO_PGTABLE_LPAE
Will Deacon45ae7cf2013-06-24 18:31:25 +0100357 select ARM_DMA_USE_IOMMU if ARM
358 help
359 Support for implementations of the ARM System MMU architecture
Will Deacon518f7132014-11-14 17:17:54 +0000360 versions 1 and 2.
Will Deacon45ae7cf2013-06-24 18:31:25 +0100361
362 Say Y here if your SoC includes an IOMMU device implementing
363 the ARM SMMU architecture.
364
Douglas Anderson954a03b2019-03-01 11:20:17 -0800365config ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT
366 bool "Default to disabling bypass on ARM SMMU v1 and v2"
367 depends on ARM_SMMU
368 default y
369 help
370 Say Y here to (by default) disable bypass streams such that
371 incoming transactions from devices that are not attached to
372 an iommu domain will report an abort back to the device and
373 will not be allowed to pass through the SMMU.
374
375 Any old kernels that existed before this KConfig was
376 introduced would default to _allowing_ bypass (AKA the
377 equivalent of NO for this config). However the default for
378 this option is YES because the old behavior is insecure.
379
380 There are few reasons to allow unmatched stream bypass, and
381 even fewer good ones. If saying YES here breaks your board
382 you should work on fixing your board. This KConfig option
383 is expected to be removed in the future and we'll simply
384 hardcode the bypass disable in the code.
385
386 NOTE: the kernel command line parameter
387 'arm-smmu.disable_bypass' will continue to override this
388 config.
389
Will Deacon48ec83b2015-05-27 17:25:59 +0100390config ARM_SMMU_V3
391 bool "ARM Ltd. System MMU Version 3 (SMMUv3) Support"
Robin Murphy08d4ca22016-09-12 17:13:46 +0100392 depends on ARM64
Will Deacon48ec83b2015-05-27 17:25:59 +0100393 select IOMMU_API
394 select IOMMU_IO_PGTABLE_LPAE
Marc Zyngier166bdbd2015-10-13 18:32:30 +0100395 select GENERIC_MSI_IRQ_DOMAIN
Will Deacon48ec83b2015-05-27 17:25:59 +0100396 help
397 Support for implementations of the ARM System MMU architecture
398 version 3 providing translation support to a PCIe root complex.
399
400 Say Y here if your system includes an IOMMU device implementing
401 the ARM SMMUv3 architecture.
402
Gerald Schaefer8128f23c2015-08-27 15:33:03 +0200403config S390_IOMMU
404 def_bool y if S390 && PCI
405 depends on S390 && PCI
406 select IOMMU_API
407 help
408 Support for the IOMMU API for s390 PCI devices.
409
Dong Jia Shi63f19342017-03-17 04:17:31 +0100410config S390_CCW_IOMMU
411 bool "S390 CCW IOMMU Support"
412 depends on S390 && CCW
413 select IOMMU_API
414 help
415 Enables bits of IOMMU API required by VFIO. The iommu_ops
416 is not implemented as it is not necessary for VFIO.
417
Tony Krowiak1fde5732018-09-25 19:16:19 -0400418config S390_AP_IOMMU
419 bool "S390 AP IOMMU Support"
420 depends on S390 && ZCRYPT
421 select IOMMU_API
422 help
423 Enables bits of IOMMU API required by VFIO. The iommu_ops
424 is not implemented as it is not necessary for VFIO.
425
Yong Wu0df4fab2016-02-23 01:20:50 +0800426config MTK_IOMMU
427 bool "MTK IOMMU Support"
428 depends on ARM || ARM64
429 depends on ARCH_MEDIATEK || COMPILE_TEST
Arnd Bergmann19288322016-02-29 10:19:06 +0100430 select ARM_DMA_USE_IOMMU
Yong Wu0df4fab2016-02-23 01:20:50 +0800431 select IOMMU_API
432 select IOMMU_DMA
433 select IOMMU_IO_PGTABLE_ARMV7S
434 select MEMORY
435 select MTK_SMI
436 help
437 Support for the M4U on certain Mediatek SOCs. M4U is MultiMedia
438 Memory Management Unit. This option enables remapping of DMA memory
439 accesses for the multimedia subsystem.
440
441 If unsure, say N here.
442
Honghui Zhangb17336c2016-06-08 17:51:00 +0800443config MTK_IOMMU_V1
444 bool "MTK IOMMU Version 1 (M4U gen1) Support"
445 depends on ARM
446 depends on ARCH_MEDIATEK || COMPILE_TEST
447 select ARM_DMA_USE_IOMMU
448 select IOMMU_API
449 select MEMORY
450 select MTK_SMI
Honghui Zhangb17336c2016-06-08 17:51:00 +0800451 help
452 Support for the M4U on certain Mediatek SoCs. M4U generation 1 HW is
453 Multimedia Memory Managememt Unit. This option enables remapping of
454 DMA memory accesses for the multimedia subsystem.
455
456 if unsure, say N here.
457
Rob Clark0ae349a2017-08-09 10:43:04 -0400458config QCOM_IOMMU
459 # Note: iommu drivers cannot (yet?) be built as modules
460 bool "Qualcomm IOMMU Support"
Guenter Roecka4aaecc2017-09-10 13:43:37 -0700461 depends on ARCH_QCOM || (COMPILE_TEST && !GENERIC_ATOMIC64)
Rob Clark0ae349a2017-08-09 10:43:04 -0400462 select IOMMU_API
463 select IOMMU_IO_PGTABLE_LPAE
464 select ARM_DMA_USE_IOMMU
465 help
466 Support for IOMMU on certain Qualcomm SoCs.
467
Lan Tianyu29217a42019-02-27 22:54:04 +0800468config HYPERV_IOMMU
469 bool "Hyper-V x2APIC IRQ Handling"
470 depends on HYPERV
471 select IOMMU_API
472 default HYPERV
473 help
474 Stub IOMMU driver to handle IRQs as to allow Hyper-V Linux
475 guests to run with x2APIC mode enabled.
476
Jean-Philippe Bruckeredcd69a2019-01-15 12:19:57 +0000477config VIRTIO_IOMMU
478 bool "Virtio IOMMU driver"
479 depends on VIRTIO=y
480 depends on ARM64
481 select IOMMU_API
482 select INTERVAL_TREE
483 help
484 Para-virtualised IOMMU driver with virtio.
485
486 Say Y here if you intend to run this kernel as a guest.
487
Ohad Ben-Cohenab493a02011-06-02 02:48:05 +0300488endif # IOMMU_SUPPORT