blob: 58b4a4dbfc78b9a59f5f26a6683c1aaf03dafebd [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
Jean-Philippe Bruckerfa834332019-10-02 12:42:41 -07006# The IOASID library may also be used by non-IOMMU_API users
7config IOASID
8 tristate
9
Ohad Ben-Cohenab493a02011-06-02 02:48:05 +030010# IOMMU_API always gets selected by whoever wants it.
11config IOMMU_API
12 bool
Ohad Ben-Cohenb10f1272011-06-02 03:20:08 +030013
Joerg Roedel68255b62011-06-14 15:51:54 +020014menuconfig IOMMU_SUPPORT
15 bool "IOMMU Hardware Support"
Arnd Bergmanne5144c92015-01-28 15:45:53 +010016 depends on MMU
Joerg Roedel68255b62011-06-14 15:51:54 +020017 default y
18 ---help---
19 Say Y here if you want to compile device drivers for IO Memory
20 Management Units into the kernel. These devices usually allow to
21 remap DMA requests and/or remap interrupts from other devices on the
22 system.
23
24if IOMMU_SUPPORT
25
Will Deaconfdb1d7b2014-11-14 17:16:49 +000026menu "Generic IOMMU Pagetable Support"
27
28# Selected by the actual pagetable implementations
29config IOMMU_IO_PGTABLE
30 bool
31
Will Deacone1d3c0f2014-11-14 17:18:23 +000032config IOMMU_IO_PGTABLE_LPAE
33 bool "ARMv7/v8 Long Descriptor Format"
34 select IOMMU_IO_PGTABLE
Geert Uytterhoeven48e6f762018-04-17 19:49:09 +020035 depends on ARM || ARM64 || (COMPILE_TEST && !GENERIC_ATOMIC64)
Will Deacone1d3c0f2014-11-14 17:18:23 +000036 help
37 Enable support for the ARM long descriptor pagetable format.
38 This allocator supports 4K/2M/1G, 16K/32M and 64K/512M page
39 sizes at both stage-1 and stage-2, as well as address spaces
40 up to 48-bits in size.
41
Will Deaconfe4b9912014-11-17 23:31:12 +000042config IOMMU_IO_PGTABLE_LPAE_SELFTEST
43 bool "LPAE selftests"
44 depends on IOMMU_IO_PGTABLE_LPAE
45 help
46 Enable self-tests for LPAE page table allocator. This performs
47 a series of page-table consistency checks during boot.
48
49 If unsure, say N here.
50
Robin Murphye5fc9752016-01-26 17:13:13 +000051config IOMMU_IO_PGTABLE_ARMV7S
52 bool "ARMv7/v8 Short Descriptor Format"
53 select IOMMU_IO_PGTABLE
Geert Uytterhoeven48e6f762018-04-17 19:49:09 +020054 depends on ARM || ARM64 || COMPILE_TEST
Robin Murphye5fc9752016-01-26 17:13:13 +000055 help
56 Enable support for the ARM Short-descriptor pagetable format.
57 This supports 32-bit virtual and physical addresses mapped using
58 2-level tables with 4KB pages/1MB sections, and contiguous entries
59 for 64KB pages/16MB supersections if indicated by the IOMMU driver.
60
61config IOMMU_IO_PGTABLE_ARMV7S_SELFTEST
62 bool "ARMv7s selftests"
63 depends on IOMMU_IO_PGTABLE_ARMV7S
64 help
65 Enable self-tests for ARMv7s page table allocator. This performs
66 a series of page-table consistency checks during boot.
67
68 If unsure, say N here.
69
Will Deaconfdb1d7b2014-11-14 17:16:49 +000070endmenu
71
Gary R Hookbad614b2018-06-12 16:41:21 -050072config IOMMU_DEBUGFS
73 bool "Export IOMMU internals in DebugFS"
74 depends on DEBUG_FS
75 help
76 Allows exposure of IOMMU device internals. This option enables
77 the use of debugfs by IOMMU drivers as required. Devices can,
78 at initialization time, cause the IOMMU code to create a top-level
79 debug/iommu directory, and then populate a subdirectory with
80 entries as required.
81
Olof Johansson58d11312018-07-20 11:02:23 -070082config IOMMU_DEFAULT_PASSTHROUGH
83 bool "IOMMU passthrough by default"
84 depends on IOMMU_API
Krzysztof Kozlowskid0432342019-11-21 04:19:30 +010085 help
Olof Johansson58d11312018-07-20 11:02:23 -070086 Enable passthrough by default, removing the need to pass in
87 iommu.passthrough=on or iommu=pt through command line. If this
88 is enabled, you can still disable with iommu.passthrough=off
89 or iommu=nopt depending on the architecture.
90
91 If unsure, say N here.
92
Hiroshi Doyu4e0ee782012-06-25 14:23:54 +030093config OF_IOMMU
Krzysztof Kozlowskid0432342019-11-21 04:19:30 +010094 def_bool y
95 depends on OF && IOMMU_API
Hiroshi Doyu4e0ee782012-06-25 14:23:54 +030096
Robin Murphy0db2e5d2015-10-01 20:13:58 +010097# IOMMU-agnostic DMA-mapping layer
98config IOMMU_DMA
99 bool
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100100 select IOMMU_API
101 select IOMMU_IOVA
Julien Grallece6e6f2019-05-01 14:58:19 +0100102 select IRQ_MSI_IOMMU
Robin Murphy59a68eb2016-02-29 11:13:39 +0000103 select NEED_SG_DMA_LENGTH
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100104
Varun Sethi695093e2013-07-15 10:20:57 +0530105config FSL_PAMU
106 bool "Freescale IOMMU support"
Joerg Roedela4d98fb2017-08-09 15:00:36 +0200107 depends on PCI
Joerg Roedelaf29d9f2017-08-09 15:04:47 +0200108 depends on PHYS_64BIT
Andy Fleminga0d284d2016-03-16 23:15:44 -0500109 depends on PPC_E500MC || (COMPILE_TEST && PPC)
Varun Sethi695093e2013-07-15 10:20:57 +0530110 select IOMMU_API
111 select GENERIC_ALLOCATOR
112 help
113 Freescale PAMU support. PAMU is the IOMMU present on Freescale QorIQ platforms.
114 PAMU can authorize memory access, remap the memory address, and remap I/O
115 transaction types.
116
Ohad Ben-Cohenb10f1272011-06-02 03:20:08 +0300117# MSM IOMMU support
118config MSM_IOMMU
119 bool "MSM IOMMU Support"
Joerg Roedel477ab7a2015-01-20 16:13:33 +0100120 depends on ARM
121 depends on ARCH_MSM8X60 || ARCH_MSM8960 || COMPILE_TEST
Ohad Ben-Cohenb10f1272011-06-02 03:20:08 +0300122 select IOMMU_API
Sricharan Rc9220fb2016-06-13 17:06:06 +0530123 select IOMMU_IO_PGTABLE_ARMV7S
Ohad Ben-Cohenb10f1272011-06-02 03:20:08 +0300124 help
125 Support for the IOMMUs found on certain Qualcomm SOCs.
126 These IOMMUs allow virtualization of the address space used by most
127 cores within the multimedia subsystem.
128
129 If unsure, say N here.
130
131config IOMMU_PGTABLES_L2
132 def_bool y
133 depends on MSM_IOMMU && MMU && SMP && CPU_DCACHE_DISABLE=n
Ohad Ben-Cohen29b68412011-06-05 18:22:18 +0300134
135# AMD IOMMU support
136config AMD_IOMMU
137 bool "AMD IOMMU support"
138 select SWIOTLB
139 select PCI_MSI
Joerg Roedel52815b72011-11-17 17:24:28 +0100140 select PCI_ATS
141 select PCI_PRI
142 select PCI_PASID
Ohad Ben-Cohen29b68412011-06-05 18:22:18 +0300143 select IOMMU_API
Joerg Roedela72c4222016-07-05 11:12:49 +0200144 select IOMMU_IOVA
Tom Murphybe62dbf2019-09-08 09:56:41 -0700145 select IOMMU_DMA
Thomas Petazzoni0dbc6072013-10-03 11:59:14 +0200146 depends on X86_64 && PCI && ACPI
Ohad Ben-Cohen29b68412011-06-05 18:22:18 +0300147 ---help---
148 With this option you can enable support for AMD IOMMU hardware in
149 your system. An IOMMU is a hardware component which provides
150 remapping of DMA memory accesses from devices. With an AMD IOMMU you
Masanari Iida59bf8962012-04-18 00:01:21 +0900151 can isolate the DMA memory of different devices and protect the
Ohad Ben-Cohen29b68412011-06-05 18:22:18 +0300152 system from misbehaving device drivers or hardware.
153
154 You can find out if your system has an AMD IOMMU if you look into
155 your BIOS for an option to enable it or if you have an IVRS ACPI
156 table.
157
Joerg Roedele3c495c2011-11-09 12:31:15 +0100158config AMD_IOMMU_V2
Kees Cooka446e212013-01-16 18:53:39 -0800159 tristate "AMD IOMMU Version 2 driver"
Borislav Petkove5cac322014-07-10 12:44:56 +0200160 depends on AMD_IOMMU
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100161 select MMU_NOTIFIER
Joerg Roedele3c495c2011-11-09 12:31:15 +0100162 ---help---
163 This option enables support for the AMD IOMMUv2 features of the IOMMU
164 hardware. Select this option if you want to use devices that support
Masanari Iida59bf8962012-04-18 00:01:21 +0900165 the PCI PRI and PASID interface.
Joerg Roedele3c495c2011-11-09 12:31:15 +0100166
Gary R Hook7d0f5fd2018-06-12 16:41:30 -0500167config AMD_IOMMU_DEBUGFS
168 bool "Enable AMD IOMMU internals in DebugFS"
169 depends on AMD_IOMMU && IOMMU_DEBUGFS
170 ---help---
171 !!!WARNING!!! !!!WARNING!!! !!!WARNING!!! !!!WARNING!!!
172
173 DO NOT ENABLE THIS OPTION UNLESS YOU REALLY, -REALLY- KNOW WHAT YOU ARE DOING!!!
174 Exposes AMD IOMMU device internals in DebugFS.
175
176 This option is -NOT- intended for production environments, and should
177 not generally be enabled.
178
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300179# Intel IOMMU support
Suresh Siddhad3f13812011-08-23 17:05:25 -0700180config DMAR_TABLE
181 bool
182
183config INTEL_IOMMU
184 bool "Support for Intel IOMMU using DMA Remapping Devices"
Christoph Hellwigdf410172019-08-13 09:25:12 +0200185 depends on PCI_MSI && ACPI && (X86 || IA64)
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300186 select IOMMU_API
Robin Murphy114150d2015-01-12 17:51:13 +0000187 select IOMMU_IOVA
Christoph Hellwigf616ab52018-05-09 06:53:49 +0200188 select NEED_DMA_MAP_STATE
Suresh Siddhad3f13812011-08-23 17:05:25 -0700189 select DMAR_TABLE
Lu Baoluc5a5dc42019-09-06 14:14:50 +0800190 select SWIOTLB
Jacob Pan4a663da2020-03-19 21:32:31 -0700191 select IOASID
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300192 help
193 DMA remapping (DMAR) devices support enables independent address
194 translations for Direct Memory Access (DMA) from devices.
195 These DMA remapping devices are reported via ACPI tables
196 and include PCI device scope covered by these DMA
197 remapping devices.
198
Sohil Mehtaee2636b2018-09-11 17:11:38 -0700199config INTEL_IOMMU_DEBUGFS
200 bool "Export Intel IOMMU internals in Debugfs"
201 depends on INTEL_IOMMU && IOMMU_DEBUGFS
202 help
203 !!!WARNING!!!
204
205 DO NOT ENABLE THIS OPTION UNLESS YOU REALLY KNOW WHAT YOU ARE DOING!!!
206
207 Expose Intel IOMMU internals in Debugfs.
208
209 This option is -NOT- intended for production environments, and should
210 only be enabled for debugging Intel IOMMU.
211
David Woodhouse8a94ade2015-03-24 14:54:56 +0000212config INTEL_IOMMU_SVM
213 bool "Support for Shared Virtual Memory with Intel IOMMU"
214 depends on INTEL_IOMMU && X86
David Woodhouseb16d0cb2015-10-12 14:17:37 +0100215 select PCI_PASID
Bjorn Helgaasfd872842019-10-09 15:14:05 -0500216 select PCI_PRI
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100217 select MMU_NOTIFIER
Jacob Pan59a62332020-01-02 08:18:08 +0800218 select IOASID
David Woodhouse8a94ade2015-03-24 14:54:56 +0000219 help
220 Shared Virtual Memory (SVM) provides a facility for devices
221 to access DMA resources through process address space by
222 means of a Process Address Space ID (PASID).
223
Suresh Siddhad3f13812011-08-23 17:05:25 -0700224config INTEL_IOMMU_DEFAULT_ON
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300225 def_bool y
Suresh Siddhad3f13812011-08-23 17:05:25 -0700226 prompt "Enable Intel DMA Remapping Devices by default"
227 depends on INTEL_IOMMU
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300228 help
229 Selecting this option will enable a DMAR device at boot time if
230 one is found. If this option is not selected, DMAR support can
231 be enabled by passing intel_iommu=on to the kernel.
232
Suresh Siddhad3f13812011-08-23 17:05:25 -0700233config INTEL_IOMMU_BROKEN_GFX_WA
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300234 bool "Workaround broken graphics drivers (going away soon)"
Suresh Siddhad3f13812011-08-23 17:05:25 -0700235 depends on INTEL_IOMMU && BROKEN && X86
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300236 ---help---
237 Current Graphics drivers tend to use physical address
238 for DMA and avoid using DMA APIs. Setting this config
239 option permits the IOMMU driver to set a unity map for
240 all the OS-visible memory. Hence the driver can continue
241 to use physical addresses for DMA, at least until this
242 option is removed in the 2.6.32 kernel.
243
Suresh Siddhad3f13812011-08-23 17:05:25 -0700244config INTEL_IOMMU_FLOPPY_WA
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300245 def_bool y
Suresh Siddhad3f13812011-08-23 17:05:25 -0700246 depends on INTEL_IOMMU && X86
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300247 ---help---
248 Floppy disk drivers are known to bypass DMA API calls
249 thereby failing to work when IOMMU is enabled. This
250 workaround will setup a 1:1 mapping for the first
251 16MiB to make floppy (an ISA device) work.
252
Lu Baolu04618252020-01-02 08:18:02 +0800253config INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON
254 bool "Enable Intel IOMMU scalable mode by default"
255 depends on INTEL_IOMMU
256 help
257 Selecting this option will enable by default the scalable mode if
258 hardware presents the capability. The scalable mode is defined in
259 VT-d 3.0. The scalable mode capability could be checked by reading
260 /sys/devices/virtual/iommu/dmar*/intel-iommu/ecap. If this option
261 is not selected, scalable mode support could also be enabled by
262 passing intel_iommu=sm_on to the kernel. If not sure, please use
263 the default value.
264
Suresh Siddhad3f13812011-08-23 17:05:25 -0700265config IRQ_REMAP
Kees Cooka446e212013-01-16 18:53:39 -0800266 bool "Support for Interrupt Remapping"
267 depends on X86_64 && X86_IO_APIC && PCI_MSI && ACPI
Suresh Siddhad3f13812011-08-23 17:05:25 -0700268 select DMAR_TABLE
Ohad Ben-Cohen166e9272011-06-10 21:42:27 +0300269 ---help---
270 Supports Interrupt remapping for IO-APIC and MSI devices.
271 To use x2apic mode in the CPU's which support x2APIC enhancements or
272 to support platforms with CPU's having > 8 bit APIC ID, say Y.
Joerg Roedel68255b62011-06-14 15:51:54 +0200273
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300274# OMAP IOMMU support
275config OMAP_IOMMU
276 bool "OMAP IOMMU Support"
Krzysztof Kozlowskie93a1692020-03-03 21:27:51 +0100277 depends on ARM && MMU || (COMPILE_TEST && (ARM || ARM64 || IA64 || SPARC))
Joerg Roedel477ab7a2015-01-20 16:13:33 +0100278 depends on ARCH_OMAP2PLUS || COMPILE_TEST
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300279 select IOMMU_API
Gerd Hoffmann06b718c2014-11-11 09:17:00 +0100280 ---help---
281 The OMAP3 media platform drivers depend on iommu support,
282 if you need them say Y here.
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300283
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300284config OMAP_IOMMU_DEBUG
Suman Anna61c75352014-10-22 17:22:30 -0500285 bool "Export OMAP IOMMU internals in DebugFS"
286 depends on OMAP_IOMMU && DEBUG_FS
287 ---help---
288 Select this to see extensive information about
289 the internal state of OMAP IOMMU in debugfs.
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300290
Suman Anna61c75352014-10-22 17:22:30 -0500291 Say N unless you know you need this.
Ohad Ben-Cohenfcf3a6e2011-08-15 23:21:41 +0300292
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800293config ROCKCHIP_IOMMU
294 bool "Rockchip IOMMU Support"
Krzysztof Kozlowskie93a1692020-03-03 21:27:51 +0100295 depends on ARM || ARM64 || (COMPILE_TEST && (ARM64 || IA64 || SPARC))
Joerg Roedel11175882014-11-03 18:16:56 +0100296 depends on ARCH_ROCKCHIP || COMPILE_TEST
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800297 select IOMMU_API
298 select ARM_DMA_USE_IOMMU
299 help
300 Support for IOMMUs found on Rockchip rk32xx SOCs.
301 These IOMMUs allow virtualization of the address space used by most
302 cores within the multimedia subsystem.
303 Say Y here if you are using a Rockchip SoC that includes an IOMMU
304 device.
Ohad Ben-Cohenab493a02011-06-02 02:48:05 +0300305
Hiroshi DOYUd53e54b2011-11-16 17:36:37 +0200306config TEGRA_IOMMU_GART
307 bool "Tegra GART IOMMU Support"
308 depends on ARCH_TEGRA_2x_SOC
Dmitry Osipenkoce2785a2018-12-12 23:38:56 +0300309 depends on TEGRA_MC
Hiroshi DOYUd53e54b2011-11-16 17:36:37 +0200310 select IOMMU_API
311 help
312 Enables support for remapping discontiguous physical memory
313 shared with the operating system into contiguous I/O virtual
314 space through the GART (Graphics Address Relocation Table)
315 hardware included on Tegra SoCs.
316
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200317config TEGRA_IOMMU_SMMU
Thierry Reding89184652014-04-16 09:24:44 +0200318 bool "NVIDIA Tegra SMMU Support"
319 depends on ARCH_TEGRA
320 depends on TEGRA_AHB
321 depends on TEGRA_MC
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200322 select IOMMU_API
323 help
Thierry Reding89184652014-04-16 09:24:44 +0200324 This driver supports the IOMMU hardware (SMMU) found on NVIDIA Tegra
Thierry Reding588c43a2015-03-23 10:45:12 +0100325 SoCs (Tegra30 up to Tegra210).
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200326
KyongHo Cho2a965362012-05-12 05:56:09 +0900327config EXYNOS_IOMMU
328 bool "Exynos IOMMU Support"
Krzysztof Kozlowskie93a1692020-03-03 21:27:51 +0100329 depends on ARCH_EXYNOS && MMU || (COMPILE_TEST && (ARM || ARM64 || IA64 || SPARC))
Arnd Bergmanndb3a7fd2017-07-28 15:19:19 +0200330 depends on !CPU_BIG_ENDIAN # revisit driver if we can enable big-endian ptes
KyongHo Cho2a965362012-05-12 05:56:09 +0900331 select IOMMU_API
Tushar Behera4802c1d2014-07-04 15:01:08 +0530332 select ARM_DMA_USE_IOMMU
KyongHo Cho2a965362012-05-12 05:56:09 +0900333 help
Sachin Kamat5455d702014-05-22 09:50:55 +0530334 Support for the IOMMU (System MMU) of Samsung Exynos application
335 processor family. This enables H/W multimedia accelerators to see
336 non-linear physical memory chunks as linear memory in their
337 address space.
KyongHo Cho2a965362012-05-12 05:56:09 +0900338
339 If unsure, say N here.
340
341config EXYNOS_IOMMU_DEBUG
342 bool "Debugging log for Exynos IOMMU"
343 depends on EXYNOS_IOMMU
344 help
345 Select this to see the detailed log message that shows what
Sachin Kamat5455d702014-05-22 09:50:55 +0530346 happens in the IOMMU driver.
KyongHo Cho2a965362012-05-12 05:56:09 +0900347
Sachin Kamat5455d702014-05-22 09:50:55 +0530348 Say N unless you need kernel log message for IOMMU debugging.
KyongHo Cho2a965362012-05-12 05:56:09 +0900349
Laurent Pinchartd25a2a12014-04-02 12:47:37 +0200350config IPMMU_VMSA
351 bool "Renesas VMSA-compatible IPMMU"
Magnus Damm3ae47292017-05-17 19:07:10 +0900352 depends on ARM || IOMMU_DMA
Guenter Roecka4aaecc2017-09-10 13:43:37 -0700353 depends on ARCH_RENESAS || (COMPILE_TEST && !GENERIC_ATOMIC64)
Laurent Pinchartd25a2a12014-04-02 12:47:37 +0200354 select IOMMU_API
Laurent Pinchartf20ed392015-01-20 18:30:04 +0200355 select IOMMU_IO_PGTABLE_LPAE
Laurent Pinchartd25a2a12014-04-02 12:47:37 +0200356 select ARM_DMA_USE_IOMMU
357 help
Geert Uytterhoeven15021d32018-07-25 15:10:29 +0200358 Support for the Renesas VMSA-compatible IPMMU found in the R-Mobile
359 APE6, R-Car Gen2, and R-Car Gen3 SoCs.
Laurent Pinchartd25a2a12014-04-02 12:47:37 +0200360
361 If unsure, say N.
362
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000363config SPAPR_TCE_IOMMU
364 bool "sPAPR TCE IOMMU Support"
Krzysztof Kozlowskie93a1692020-03-03 21:27:51 +0100365 depends on PPC_POWERNV || PPC_PSERIES || (PPC && COMPILE_TEST)
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000366 select IOMMU_API
367 help
368 Enables bits of IOMMU API required by VFIO. The iommu_ops
369 is not implemented as it is not necessary for VFIO.
370
Will Deacon48ec83b2015-05-27 17:25:59 +0100371# ARM IOMMU support
Will Deacon45ae7cf2013-06-24 18:31:25 +0100372config ARM_SMMU
Will Deaconcd221bd2019-12-19 12:03:51 +0000373 tristate "ARM Ltd. System MMU (SMMU) Support"
Krzysztof Kozlowskie93a1692020-03-03 21:27:51 +0100374 depends on (ARM64 || ARM || (COMPILE_TEST && !GENERIC_ATOMIC64)) && MMU
Will Deacon45ae7cf2013-06-24 18:31:25 +0100375 select IOMMU_API
Will Deacon518f7132014-11-14 17:17:54 +0000376 select IOMMU_IO_PGTABLE_LPAE
Will Deacon45ae7cf2013-06-24 18:31:25 +0100377 select ARM_DMA_USE_IOMMU if ARM
378 help
379 Support for implementations of the ARM System MMU architecture
Will Deacon518f7132014-11-14 17:17:54 +0000380 versions 1 and 2.
Will Deacon45ae7cf2013-06-24 18:31:25 +0100381
382 Say Y here if your SoC includes an IOMMU device implementing
383 the ARM SMMU architecture.
384
Will Deaconcd221bd2019-12-19 12:03:51 +0000385config ARM_SMMU_LEGACY_DT_BINDINGS
386 bool "Support the legacy \"mmu-masters\" devicetree bindings"
387 depends on ARM_SMMU=y && OF
388 help
389 Support for the badly designed and deprecated "mmu-masters"
390 devicetree bindings. This allows some DMA masters to attach
391 to the SMMU but does not provide any support via the DMA API.
392 If you're lucky, you might be able to get VFIO up and running.
393
394 If you say Y here then you'll make me very sad. Instead, say N
395 and move your firmware to the utopian future that was 2016.
396
Douglas Anderson954a03b2019-03-01 11:20:17 -0800397config ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT
398 bool "Default to disabling bypass on ARM SMMU v1 and v2"
399 depends on ARM_SMMU
400 default y
401 help
402 Say Y here to (by default) disable bypass streams such that
403 incoming transactions from devices that are not attached to
404 an iommu domain will report an abort back to the device and
405 will not be allowed to pass through the SMMU.
406
407 Any old kernels that existed before this KConfig was
408 introduced would default to _allowing_ bypass (AKA the
409 equivalent of NO for this config). However the default for
410 this option is YES because the old behavior is insecure.
411
412 There are few reasons to allow unmatched stream bypass, and
413 even fewer good ones. If saying YES here breaks your board
414 you should work on fixing your board. This KConfig option
415 is expected to be removed in the future and we'll simply
416 hardcode the bypass disable in the code.
417
418 NOTE: the kernel command line parameter
419 'arm-smmu.disable_bypass' will continue to override this
420 config.
421
Will Deacon48ec83b2015-05-27 17:25:59 +0100422config ARM_SMMU_V3
Will Deacon2852ad02019-12-19 12:03:49 +0000423 tristate "ARM Ltd. System MMU Version 3 (SMMUv3) Support"
Robin Murphy08d4ca22016-09-12 17:13:46 +0100424 depends on ARM64
Will Deacon48ec83b2015-05-27 17:25:59 +0100425 select IOMMU_API
426 select IOMMU_IO_PGTABLE_LPAE
Marc Zyngier166bdbd2015-10-13 18:32:30 +0100427 select GENERIC_MSI_IRQ_DOMAIN
Will Deacon48ec83b2015-05-27 17:25:59 +0100428 help
429 Support for implementations of the ARM System MMU architecture
430 version 3 providing translation support to a PCIe root complex.
431
432 Say Y here if your system includes an IOMMU device implementing
433 the ARM SMMUv3 architecture.
434
Gerald Schaefer8128f23c2015-08-27 15:33:03 +0200435config S390_IOMMU
436 def_bool y if S390 && PCI
437 depends on S390 && PCI
438 select IOMMU_API
439 help
440 Support for the IOMMU API for s390 PCI devices.
441
Dong Jia Shi63f19342017-03-17 04:17:31 +0100442config S390_CCW_IOMMU
443 bool "S390 CCW IOMMU Support"
Krzysztof Kozlowskie93a1692020-03-03 21:27:51 +0100444 depends on S390 && CCW || COMPILE_TEST
Dong Jia Shi63f19342017-03-17 04:17:31 +0100445 select IOMMU_API
446 help
447 Enables bits of IOMMU API required by VFIO. The iommu_ops
448 is not implemented as it is not necessary for VFIO.
449
Tony Krowiak1fde5732018-09-25 19:16:19 -0400450config S390_AP_IOMMU
451 bool "S390 AP IOMMU Support"
Krzysztof Kozlowskie93a1692020-03-03 21:27:51 +0100452 depends on S390 && ZCRYPT || COMPILE_TEST
Tony Krowiak1fde5732018-09-25 19:16:19 -0400453 select IOMMU_API
454 help
455 Enables bits of IOMMU API required by VFIO. The iommu_ops
456 is not implemented as it is not necessary for VFIO.
457
Yong Wu0df4fab2016-02-23 01:20:50 +0800458config MTK_IOMMU
459 bool "MTK IOMMU Support"
Krzysztof Kozlowskie93a1692020-03-03 21:27:51 +0100460 depends on ARM || ARM64 || COMPILE_TEST
Yong Wu0df4fab2016-02-23 01:20:50 +0800461 depends on ARCH_MEDIATEK || COMPILE_TEST
Arnd Bergmann19288322016-02-29 10:19:06 +0100462 select ARM_DMA_USE_IOMMU
Yong Wu0df4fab2016-02-23 01:20:50 +0800463 select IOMMU_API
464 select IOMMU_DMA
465 select IOMMU_IO_PGTABLE_ARMV7S
466 select MEMORY
467 select MTK_SMI
468 help
469 Support for the M4U on certain Mediatek SOCs. M4U is MultiMedia
470 Memory Management Unit. This option enables remapping of DMA memory
471 accesses for the multimedia subsystem.
472
473 If unsure, say N here.
474
Honghui Zhangb17336c2016-06-08 17:51:00 +0800475config MTK_IOMMU_V1
476 bool "MTK IOMMU Version 1 (M4U gen1) Support"
477 depends on ARM
478 depends on ARCH_MEDIATEK || COMPILE_TEST
479 select ARM_DMA_USE_IOMMU
480 select IOMMU_API
481 select MEMORY
482 select MTK_SMI
Honghui Zhangb17336c2016-06-08 17:51:00 +0800483 help
484 Support for the M4U on certain Mediatek SoCs. M4U generation 1 HW is
485 Multimedia Memory Managememt Unit. This option enables remapping of
486 DMA memory accesses for the multimedia subsystem.
487
488 if unsure, say N here.
489
Rob Clark0ae349a2017-08-09 10:43:04 -0400490config QCOM_IOMMU
491 # Note: iommu drivers cannot (yet?) be built as modules
492 bool "Qualcomm IOMMU Support"
Guenter Roecka4aaecc2017-09-10 13:43:37 -0700493 depends on ARCH_QCOM || (COMPILE_TEST && !GENERIC_ATOMIC64)
Rob Clark0ae349a2017-08-09 10:43:04 -0400494 select IOMMU_API
495 select IOMMU_IO_PGTABLE_LPAE
496 select ARM_DMA_USE_IOMMU
497 help
498 Support for IOMMU on certain Qualcomm SoCs.
499
Lan Tianyu29217a42019-02-27 22:54:04 +0800500config HYPERV_IOMMU
501 bool "Hyper-V x2APIC IRQ Handling"
Boqun Fengd7f0b2e2019-10-17 08:57:03 +0800502 depends on HYPERV && X86
Lan Tianyu29217a42019-02-27 22:54:04 +0800503 select IOMMU_API
504 default HYPERV
505 help
506 Stub IOMMU driver to handle IRQs as to allow Hyper-V Linux
507 guests to run with x2APIC mode enabled.
508
Jean-Philippe Bruckeredcd69a2019-01-15 12:19:57 +0000509config VIRTIO_IOMMU
Jean-Philippe Bruckerfa4afd72020-02-14 17:38:27 +0100510 tristate "Virtio IOMMU driver"
511 depends on VIRTIO
Jean-Philippe Bruckeredcd69a2019-01-15 12:19:57 +0000512 depends on ARM64
513 select IOMMU_API
514 select INTERVAL_TREE
515 help
516 Para-virtualised IOMMU driver with virtio.
517
518 Say Y here if you intend to run this kernel as a guest.
519
Ohad Ben-Cohenab493a02011-06-02 02:48:05 +0300520endif # IOMMU_SUPPORT