Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Sakari Ailus | bd3c2e6 | 2019-01-02 23:16:57 +0200 | [diff] [blame] | 2 | # The IOVA library may also be used by non-IOMMU_API users |
| 3 | config IOMMU_IOVA |
| 4 | tristate |
| 5 | |
Jean-Philippe Brucker | fa83433 | 2019-10-02 12:42:41 -0700 | [diff] [blame] | 6 | # The IOASID library may also be used by non-IOMMU_API users |
| 7 | config IOASID |
| 8 | tristate |
| 9 | |
Ohad Ben-Cohen | ab493a0 | 2011-06-02 02:48:05 +0300 | [diff] [blame] | 10 | # IOMMU_API always gets selected by whoever wants it. |
| 11 | config IOMMU_API |
| 12 | bool |
Ohad Ben-Cohen | b10f127 | 2011-06-02 03:20:08 +0300 | [diff] [blame] | 13 | |
Joerg Roedel | 68255b6 | 2011-06-14 15:51:54 +0200 | [diff] [blame] | 14 | menuconfig IOMMU_SUPPORT |
| 15 | bool "IOMMU Hardware Support" |
Arnd Bergmann | e5144c9 | 2015-01-28 15:45:53 +0100 | [diff] [blame] | 16 | depends on MMU |
Joerg Roedel | 68255b6 | 2011-06-14 15:51:54 +0200 | [diff] [blame] | 17 | 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 | |
| 24 | if IOMMU_SUPPORT |
| 25 | |
Will Deacon | fdb1d7b | 2014-11-14 17:16:49 +0000 | [diff] [blame] | 26 | menu "Generic IOMMU Pagetable Support" |
| 27 | |
| 28 | # Selected by the actual pagetable implementations |
| 29 | config IOMMU_IO_PGTABLE |
| 30 | bool |
| 31 | |
Will Deacon | e1d3c0f | 2014-11-14 17:18:23 +0000 | [diff] [blame] | 32 | config IOMMU_IO_PGTABLE_LPAE |
| 33 | bool "ARMv7/v8 Long Descriptor Format" |
| 34 | select IOMMU_IO_PGTABLE |
Geert Uytterhoeven | 48e6f7652 | 2018-04-17 19:49:09 +0200 | [diff] [blame] | 35 | depends on ARM || ARM64 || (COMPILE_TEST && !GENERIC_ATOMIC64) |
Will Deacon | e1d3c0f | 2014-11-14 17:18:23 +0000 | [diff] [blame] | 36 | 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 Deacon | fe4b991 | 2014-11-17 23:31:12 +0000 | [diff] [blame] | 42 | config 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 Murphy | e5fc975 | 2016-01-26 17:13:13 +0000 | [diff] [blame] | 51 | config IOMMU_IO_PGTABLE_ARMV7S |
| 52 | bool "ARMv7/v8 Short Descriptor Format" |
| 53 | select IOMMU_IO_PGTABLE |
Geert Uytterhoeven | 48e6f7652 | 2018-04-17 19:49:09 +0200 | [diff] [blame] | 54 | depends on ARM || ARM64 || COMPILE_TEST |
Robin Murphy | e5fc975 | 2016-01-26 17:13:13 +0000 | [diff] [blame] | 55 | 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 | |
| 61 | config 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 Deacon | fdb1d7b | 2014-11-14 17:16:49 +0000 | [diff] [blame] | 70 | endmenu |
| 71 | |
Gary R Hook | bad614b | 2018-06-12 16:41:21 -0500 | [diff] [blame] | 72 | config 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 Johansson | 58d1131 | 2018-07-20 11:02:23 -0700 | [diff] [blame] | 82 | config IOMMU_DEFAULT_PASSTHROUGH |
| 83 | bool "IOMMU passthrough by default" |
| 84 | depends on IOMMU_API |
| 85 | help |
| 86 | 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 Doyu | 4e0ee78 | 2012-06-25 14:23:54 +0300 | [diff] [blame] | 93 | config OF_IOMMU |
| 94 | def_bool y |
Will Deacon | 7eba1d5 | 2014-08-27 16:20:32 +0100 | [diff] [blame] | 95 | depends on OF && IOMMU_API |
Hiroshi Doyu | 4e0ee78 | 2012-06-25 14:23:54 +0300 | [diff] [blame] | 96 | |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 97 | # IOMMU-agnostic DMA-mapping layer |
| 98 | config IOMMU_DMA |
| 99 | bool |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 100 | select IOMMU_API |
| 101 | select IOMMU_IOVA |
Julien Grall | ece6e6f | 2019-05-01 14:58:19 +0100 | [diff] [blame] | 102 | select IRQ_MSI_IOMMU |
Robin Murphy | 59a68eb | 2016-02-29 11:13:39 +0000 | [diff] [blame] | 103 | select NEED_SG_DMA_LENGTH |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 104 | |
Varun Sethi | 695093e | 2013-07-15 10:20:57 +0530 | [diff] [blame] | 105 | config FSL_PAMU |
| 106 | bool "Freescale IOMMU support" |
Joerg Roedel | a4d98fb | 2017-08-09 15:00:36 +0200 | [diff] [blame] | 107 | depends on PCI |
Joerg Roedel | af29d9f | 2017-08-09 15:04:47 +0200 | [diff] [blame] | 108 | depends on PHYS_64BIT |
Andy Fleming | a0d284d | 2016-03-16 23:15:44 -0500 | [diff] [blame] | 109 | depends on PPC_E500MC || (COMPILE_TEST && PPC) |
Varun Sethi | 695093e | 2013-07-15 10:20:57 +0530 | [diff] [blame] | 110 | 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-Cohen | b10f127 | 2011-06-02 03:20:08 +0300 | [diff] [blame] | 117 | # MSM IOMMU support |
| 118 | config MSM_IOMMU |
| 119 | bool "MSM IOMMU Support" |
Joerg Roedel | 477ab7a | 2015-01-20 16:13:33 +0100 | [diff] [blame] | 120 | depends on ARM |
| 121 | depends on ARCH_MSM8X60 || ARCH_MSM8960 || COMPILE_TEST |
Ohad Ben-Cohen | b10f127 | 2011-06-02 03:20:08 +0300 | [diff] [blame] | 122 | select IOMMU_API |
Sricharan R | c9220fb | 2016-06-13 17:06:06 +0530 | [diff] [blame] | 123 | select IOMMU_IO_PGTABLE_ARMV7S |
Ohad Ben-Cohen | b10f127 | 2011-06-02 03:20:08 +0300 | [diff] [blame] | 124 | 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 | |
| 131 | config IOMMU_PGTABLES_L2 |
| 132 | def_bool y |
| 133 | depends on MSM_IOMMU && MMU && SMP && CPU_DCACHE_DISABLE=n |
Ohad Ben-Cohen | 29b6841 | 2011-06-05 18:22:18 +0300 | [diff] [blame] | 134 | |
| 135 | # AMD IOMMU support |
| 136 | config AMD_IOMMU |
| 137 | bool "AMD IOMMU support" |
| 138 | select SWIOTLB |
| 139 | select PCI_MSI |
Joerg Roedel | 52815b7 | 2011-11-17 17:24:28 +0100 | [diff] [blame] | 140 | select PCI_ATS |
| 141 | select PCI_PRI |
| 142 | select PCI_PASID |
Ohad Ben-Cohen | 29b6841 | 2011-06-05 18:22:18 +0300 | [diff] [blame] | 143 | select IOMMU_API |
Joerg Roedel | a72c422 | 2016-07-05 11:12:49 +0200 | [diff] [blame] | 144 | select IOMMU_IOVA |
Tom Murphy | be62dbf | 2019-09-08 09:56:41 -0700 | [diff] [blame] | 145 | select IOMMU_DMA |
Thomas Petazzoni | 0dbc607 | 2013-10-03 11:59:14 +0200 | [diff] [blame] | 146 | depends on X86_64 && PCI && ACPI |
Ohad Ben-Cohen | 29b6841 | 2011-06-05 18:22:18 +0300 | [diff] [blame] | 147 | ---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 Iida | 59bf896 | 2012-04-18 00:01:21 +0900 | [diff] [blame] | 151 | can isolate the DMA memory of different devices and protect the |
Ohad Ben-Cohen | 29b6841 | 2011-06-05 18:22:18 +0300 | [diff] [blame] | 152 | 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 Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 158 | config AMD_IOMMU_V2 |
Kees Cook | a446e21 | 2013-01-16 18:53:39 -0800 | [diff] [blame] | 159 | tristate "AMD IOMMU Version 2 driver" |
Borislav Petkov | e5cac32 | 2014-07-10 12:44:56 +0200 | [diff] [blame] | 160 | depends on AMD_IOMMU |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 161 | select MMU_NOTIFIER |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 162 | ---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 Iida | 59bf896 | 2012-04-18 00:01:21 +0900 | [diff] [blame] | 165 | the PCI PRI and PASID interface. |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 166 | |
Gary R Hook | 7d0f5fd | 2018-06-12 16:41:30 -0500 | [diff] [blame] | 167 | config 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-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 179 | # Intel IOMMU support |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 180 | config DMAR_TABLE |
| 181 | bool |
| 182 | |
| 183 | config INTEL_IOMMU |
| 184 | bool "Support for Intel IOMMU using DMA Remapping Devices" |
Christoph Hellwig | df41017 | 2019-08-13 09:25:12 +0200 | [diff] [blame] | 185 | depends on PCI_MSI && ACPI && (X86 || IA64) |
Ohad Ben-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 186 | select IOMMU_API |
Robin Murphy | 114150d | 2015-01-12 17:51:13 +0000 | [diff] [blame] | 187 | select IOMMU_IOVA |
Christoph Hellwig | f616ab5 | 2018-05-09 06:53:49 +0200 | [diff] [blame] | 188 | select NEED_DMA_MAP_STATE |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 189 | select DMAR_TABLE |
Lu Baolu | c5a5dc4 | 2019-09-06 14:14:50 +0800 | [diff] [blame] | 190 | select SWIOTLB |
Ohad Ben-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 191 | help |
| 192 | DMA remapping (DMAR) devices support enables independent address |
| 193 | translations for Direct Memory Access (DMA) from devices. |
| 194 | These DMA remapping devices are reported via ACPI tables |
| 195 | and include PCI device scope covered by these DMA |
| 196 | remapping devices. |
| 197 | |
Sohil Mehta | ee2636b | 2018-09-11 17:11:38 -0700 | [diff] [blame] | 198 | config INTEL_IOMMU_DEBUGFS |
| 199 | bool "Export Intel IOMMU internals in Debugfs" |
| 200 | depends on INTEL_IOMMU && IOMMU_DEBUGFS |
| 201 | help |
| 202 | !!!WARNING!!! |
| 203 | |
| 204 | DO NOT ENABLE THIS OPTION UNLESS YOU REALLY KNOW WHAT YOU ARE DOING!!! |
| 205 | |
| 206 | Expose Intel IOMMU internals in Debugfs. |
| 207 | |
| 208 | This option is -NOT- intended for production environments, and should |
| 209 | only be enabled for debugging Intel IOMMU. |
| 210 | |
David Woodhouse | 8a94ade | 2015-03-24 14:54:56 +0000 | [diff] [blame] | 211 | config INTEL_IOMMU_SVM |
| 212 | bool "Support for Shared Virtual Memory with Intel IOMMU" |
| 213 | depends on INTEL_IOMMU && X86 |
David Woodhouse | b16d0cb | 2015-10-12 14:17:37 +0100 | [diff] [blame] | 214 | select PCI_PASID |
Bjorn Helgaas | fd87284 | 2019-10-09 15:14:05 -0500 | [diff] [blame] | 215 | select PCI_PRI |
David Woodhouse | 2f26e0a | 2015-09-09 11:40:47 +0100 | [diff] [blame] | 216 | select MMU_NOTIFIER |
David Woodhouse | 8a94ade | 2015-03-24 14:54:56 +0000 | [diff] [blame] | 217 | help |
| 218 | Shared Virtual Memory (SVM) provides a facility for devices |
| 219 | to access DMA resources through process address space by |
| 220 | means of a Process Address Space ID (PASID). |
| 221 | |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 222 | config INTEL_IOMMU_DEFAULT_ON |
Ohad Ben-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 223 | def_bool y |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 224 | prompt "Enable Intel DMA Remapping Devices by default" |
| 225 | depends on INTEL_IOMMU |
Ohad Ben-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 226 | help |
| 227 | Selecting this option will enable a DMAR device at boot time if |
| 228 | one is found. If this option is not selected, DMAR support can |
| 229 | be enabled by passing intel_iommu=on to the kernel. |
| 230 | |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 231 | config INTEL_IOMMU_BROKEN_GFX_WA |
Ohad Ben-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 232 | bool "Workaround broken graphics drivers (going away soon)" |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 233 | depends on INTEL_IOMMU && BROKEN && X86 |
Ohad Ben-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 234 | ---help--- |
| 235 | Current Graphics drivers tend to use physical address |
| 236 | for DMA and avoid using DMA APIs. Setting this config |
| 237 | option permits the IOMMU driver to set a unity map for |
| 238 | all the OS-visible memory. Hence the driver can continue |
| 239 | to use physical addresses for DMA, at least until this |
| 240 | option is removed in the 2.6.32 kernel. |
| 241 | |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 242 | config INTEL_IOMMU_FLOPPY_WA |
Ohad Ben-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 243 | def_bool y |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 244 | depends on INTEL_IOMMU && X86 |
Ohad Ben-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 245 | ---help--- |
| 246 | Floppy disk drivers are known to bypass DMA API calls |
| 247 | thereby failing to work when IOMMU is enabled. This |
| 248 | workaround will setup a 1:1 mapping for the first |
| 249 | 16MiB to make floppy (an ISA device) work. |
| 250 | |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 251 | config IRQ_REMAP |
Kees Cook | a446e21 | 2013-01-16 18:53:39 -0800 | [diff] [blame] | 252 | bool "Support for Interrupt Remapping" |
| 253 | depends on X86_64 && X86_IO_APIC && PCI_MSI && ACPI |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 254 | select DMAR_TABLE |
Ohad Ben-Cohen | 166e927 | 2011-06-10 21:42:27 +0300 | [diff] [blame] | 255 | ---help--- |
| 256 | Supports Interrupt remapping for IO-APIC and MSI devices. |
| 257 | To use x2apic mode in the CPU's which support x2APIC enhancements or |
| 258 | to support platforms with CPU's having > 8 bit APIC ID, say Y. |
Joerg Roedel | 68255b6 | 2011-06-14 15:51:54 +0200 | [diff] [blame] | 259 | |
Ohad Ben-Cohen | fcf3a6e | 2011-08-15 23:21:41 +0300 | [diff] [blame] | 260 | # OMAP IOMMU support |
| 261 | config OMAP_IOMMU |
| 262 | bool "OMAP IOMMU Support" |
Joerg Roedel | 477ab7a | 2015-01-20 16:13:33 +0100 | [diff] [blame] | 263 | depends on ARM && MMU |
| 264 | depends on ARCH_OMAP2PLUS || COMPILE_TEST |
Ohad Ben-Cohen | fcf3a6e | 2011-08-15 23:21:41 +0300 | [diff] [blame] | 265 | select IOMMU_API |
Gerd Hoffmann | 06b718c | 2014-11-11 09:17:00 +0100 | [diff] [blame] | 266 | ---help--- |
| 267 | The OMAP3 media platform drivers depend on iommu support, |
| 268 | if you need them say Y here. |
Ohad Ben-Cohen | fcf3a6e | 2011-08-15 23:21:41 +0300 | [diff] [blame] | 269 | |
Ohad Ben-Cohen | fcf3a6e | 2011-08-15 23:21:41 +0300 | [diff] [blame] | 270 | config OMAP_IOMMU_DEBUG |
Suman Anna | 61c7535 | 2014-10-22 17:22:30 -0500 | [diff] [blame] | 271 | bool "Export OMAP IOMMU internals in DebugFS" |
| 272 | depends on OMAP_IOMMU && DEBUG_FS |
| 273 | ---help--- |
| 274 | Select this to see extensive information about |
| 275 | the internal state of OMAP IOMMU in debugfs. |
Ohad Ben-Cohen | fcf3a6e | 2011-08-15 23:21:41 +0300 | [diff] [blame] | 276 | |
Suman Anna | 61c7535 | 2014-10-22 17:22:30 -0500 | [diff] [blame] | 277 | Say N unless you know you need this. |
Ohad Ben-Cohen | fcf3a6e | 2011-08-15 23:21:41 +0300 | [diff] [blame] | 278 | |
Daniel Kurtz | c68a292 | 2014-11-03 10:53:27 +0800 | [diff] [blame] | 279 | config ROCKCHIP_IOMMU |
| 280 | bool "Rockchip IOMMU Support" |
Simon Xue | 4f1fcfe | 2017-05-03 17:19:40 +0200 | [diff] [blame] | 281 | depends on ARM || ARM64 |
Joerg Roedel | 1117588 | 2014-11-03 18:16:56 +0100 | [diff] [blame] | 282 | depends on ARCH_ROCKCHIP || COMPILE_TEST |
Daniel Kurtz | c68a292 | 2014-11-03 10:53:27 +0800 | [diff] [blame] | 283 | select IOMMU_API |
| 284 | select ARM_DMA_USE_IOMMU |
| 285 | help |
| 286 | Support for IOMMUs found on Rockchip rk32xx SOCs. |
| 287 | These IOMMUs allow virtualization of the address space used by most |
| 288 | cores within the multimedia subsystem. |
| 289 | Say Y here if you are using a Rockchip SoC that includes an IOMMU |
| 290 | device. |
Ohad Ben-Cohen | ab493a0 | 2011-06-02 02:48:05 +0300 | [diff] [blame] | 291 | |
Hiroshi DOYU | d53e54b | 2011-11-16 17:36:37 +0200 | [diff] [blame] | 292 | config TEGRA_IOMMU_GART |
| 293 | bool "Tegra GART IOMMU Support" |
| 294 | depends on ARCH_TEGRA_2x_SOC |
Dmitry Osipenko | ce2785a | 2018-12-12 23:38:56 +0300 | [diff] [blame] | 295 | depends on TEGRA_MC |
Hiroshi DOYU | d53e54b | 2011-11-16 17:36:37 +0200 | [diff] [blame] | 296 | select IOMMU_API |
| 297 | help |
| 298 | Enables support for remapping discontiguous physical memory |
| 299 | shared with the operating system into contiguous I/O virtual |
| 300 | space through the GART (Graphics Address Relocation Table) |
| 301 | hardware included on Tegra SoCs. |
| 302 | |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 303 | config TEGRA_IOMMU_SMMU |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 304 | bool "NVIDIA Tegra SMMU Support" |
| 305 | depends on ARCH_TEGRA |
| 306 | depends on TEGRA_AHB |
| 307 | depends on TEGRA_MC |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 308 | select IOMMU_API |
| 309 | help |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 310 | This driver supports the IOMMU hardware (SMMU) found on NVIDIA Tegra |
Thierry Reding | 588c43a | 2015-03-23 10:45:12 +0100 | [diff] [blame] | 311 | SoCs (Tegra30 up to Tegra210). |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 312 | |
KyongHo Cho | 2a96536 | 2012-05-12 05:56:09 +0900 | [diff] [blame] | 313 | config EXYNOS_IOMMU |
| 314 | bool "Exynos IOMMU Support" |
Marek Szyprowski | 740a01e | 2016-02-18 15:12:58 +0100 | [diff] [blame] | 315 | depends on ARCH_EXYNOS && MMU |
Arnd Bergmann | db3a7fd | 2017-07-28 15:19:19 +0200 | [diff] [blame] | 316 | depends on !CPU_BIG_ENDIAN # revisit driver if we can enable big-endian ptes |
KyongHo Cho | 2a96536 | 2012-05-12 05:56:09 +0900 | [diff] [blame] | 317 | select IOMMU_API |
Tushar Behera | 4802c1d | 2014-07-04 15:01:08 +0530 | [diff] [blame] | 318 | select ARM_DMA_USE_IOMMU |
KyongHo Cho | 2a96536 | 2012-05-12 05:56:09 +0900 | [diff] [blame] | 319 | help |
Sachin Kamat | 5455d70 | 2014-05-22 09:50:55 +0530 | [diff] [blame] | 320 | Support for the IOMMU (System MMU) of Samsung Exynos application |
| 321 | processor family. This enables H/W multimedia accelerators to see |
| 322 | non-linear physical memory chunks as linear memory in their |
| 323 | address space. |
KyongHo Cho | 2a96536 | 2012-05-12 05:56:09 +0900 | [diff] [blame] | 324 | |
| 325 | If unsure, say N here. |
| 326 | |
| 327 | config EXYNOS_IOMMU_DEBUG |
| 328 | bool "Debugging log for Exynos IOMMU" |
| 329 | depends on EXYNOS_IOMMU |
| 330 | help |
| 331 | Select this to see the detailed log message that shows what |
Sachin Kamat | 5455d70 | 2014-05-22 09:50:55 +0530 | [diff] [blame] | 332 | happens in the IOMMU driver. |
KyongHo Cho | 2a96536 | 2012-05-12 05:56:09 +0900 | [diff] [blame] | 333 | |
Sachin Kamat | 5455d70 | 2014-05-22 09:50:55 +0530 | [diff] [blame] | 334 | Say N unless you need kernel log message for IOMMU debugging. |
KyongHo Cho | 2a96536 | 2012-05-12 05:56:09 +0900 | [diff] [blame] | 335 | |
Laurent Pinchart | d25a2a1 | 2014-04-02 12:47:37 +0200 | [diff] [blame] | 336 | config IPMMU_VMSA |
| 337 | bool "Renesas VMSA-compatible IPMMU" |
Magnus Damm | 3ae4729 | 2017-05-17 19:07:10 +0900 | [diff] [blame] | 338 | depends on ARM || IOMMU_DMA |
Guenter Roeck | a4aaecc | 2017-09-10 13:43:37 -0700 | [diff] [blame] | 339 | depends on ARCH_RENESAS || (COMPILE_TEST && !GENERIC_ATOMIC64) |
Laurent Pinchart | d25a2a1 | 2014-04-02 12:47:37 +0200 | [diff] [blame] | 340 | select IOMMU_API |
Laurent Pinchart | f20ed39 | 2015-01-20 18:30:04 +0200 | [diff] [blame] | 341 | select IOMMU_IO_PGTABLE_LPAE |
Laurent Pinchart | d25a2a1 | 2014-04-02 12:47:37 +0200 | [diff] [blame] | 342 | select ARM_DMA_USE_IOMMU |
| 343 | help |
Geert Uytterhoeven | 15021d3 | 2018-07-25 15:10:29 +0200 | [diff] [blame] | 344 | Support for the Renesas VMSA-compatible IPMMU found in the R-Mobile |
| 345 | APE6, R-Car Gen2, and R-Car Gen3 SoCs. |
Laurent Pinchart | d25a2a1 | 2014-04-02 12:47:37 +0200 | [diff] [blame] | 346 | |
| 347 | If unsure, say N. |
| 348 | |
Alexey Kardashevskiy | 4e13c1a | 2013-05-21 13:33:09 +1000 | [diff] [blame] | 349 | config SPAPR_TCE_IOMMU |
| 350 | bool "sPAPR TCE IOMMU Support" |
Alexey Kardashevskiy | 5b25199 | 2013-05-21 13:33:11 +1000 | [diff] [blame] | 351 | depends on PPC_POWERNV || PPC_PSERIES |
Alexey Kardashevskiy | 4e13c1a | 2013-05-21 13:33:09 +1000 | [diff] [blame] | 352 | select IOMMU_API |
| 353 | help |
| 354 | Enables bits of IOMMU API required by VFIO. The iommu_ops |
| 355 | is not implemented as it is not necessary for VFIO. |
| 356 | |
Will Deacon | 48ec83b | 2015-05-27 17:25:59 +0100 | [diff] [blame] | 357 | # ARM IOMMU support |
Will Deacon | 45ae7cf | 2013-06-24 18:31:25 +0100 | [diff] [blame] | 358 | config ARM_SMMU |
| 359 | bool "ARM Ltd. System MMU (SMMU) Support" |
Joerg Roedel | a20cc76 | 2015-02-04 16:53:44 +0100 | [diff] [blame] | 360 | depends on (ARM64 || ARM) && MMU |
Will Deacon | 45ae7cf | 2013-06-24 18:31:25 +0100 | [diff] [blame] | 361 | select IOMMU_API |
Will Deacon | 518f713 | 2014-11-14 17:17:54 +0000 | [diff] [blame] | 362 | select IOMMU_IO_PGTABLE_LPAE |
Will Deacon | 45ae7cf | 2013-06-24 18:31:25 +0100 | [diff] [blame] | 363 | select ARM_DMA_USE_IOMMU if ARM |
| 364 | help |
| 365 | Support for implementations of the ARM System MMU architecture |
Will Deacon | 518f713 | 2014-11-14 17:17:54 +0000 | [diff] [blame] | 366 | versions 1 and 2. |
Will Deacon | 45ae7cf | 2013-06-24 18:31:25 +0100 | [diff] [blame] | 367 | |
| 368 | Say Y here if your SoC includes an IOMMU device implementing |
| 369 | the ARM SMMU architecture. |
| 370 | |
Douglas Anderson | 954a03b | 2019-03-01 11:20:17 -0800 | [diff] [blame] | 371 | config ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT |
| 372 | bool "Default to disabling bypass on ARM SMMU v1 and v2" |
| 373 | depends on ARM_SMMU |
| 374 | default y |
| 375 | help |
| 376 | Say Y here to (by default) disable bypass streams such that |
| 377 | incoming transactions from devices that are not attached to |
| 378 | an iommu domain will report an abort back to the device and |
| 379 | will not be allowed to pass through the SMMU. |
| 380 | |
| 381 | Any old kernels that existed before this KConfig was |
| 382 | introduced would default to _allowing_ bypass (AKA the |
| 383 | equivalent of NO for this config). However the default for |
| 384 | this option is YES because the old behavior is insecure. |
| 385 | |
| 386 | There are few reasons to allow unmatched stream bypass, and |
| 387 | even fewer good ones. If saying YES here breaks your board |
| 388 | you should work on fixing your board. This KConfig option |
| 389 | is expected to be removed in the future and we'll simply |
| 390 | hardcode the bypass disable in the code. |
| 391 | |
| 392 | NOTE: the kernel command line parameter |
| 393 | 'arm-smmu.disable_bypass' will continue to override this |
| 394 | config. |
| 395 | |
Will Deacon | 48ec83b | 2015-05-27 17:25:59 +0100 | [diff] [blame] | 396 | config ARM_SMMU_V3 |
| 397 | bool "ARM Ltd. System MMU Version 3 (SMMUv3) Support" |
Robin Murphy | 08d4ca2 | 2016-09-12 17:13:46 +0100 | [diff] [blame] | 398 | depends on ARM64 |
Will Deacon | 48ec83b | 2015-05-27 17:25:59 +0100 | [diff] [blame] | 399 | select IOMMU_API |
| 400 | select IOMMU_IO_PGTABLE_LPAE |
Marc Zyngier | 166bdbd | 2015-10-13 18:32:30 +0100 | [diff] [blame] | 401 | select GENERIC_MSI_IRQ_DOMAIN |
Will Deacon | 48ec83b | 2015-05-27 17:25:59 +0100 | [diff] [blame] | 402 | help |
| 403 | Support for implementations of the ARM System MMU architecture |
| 404 | version 3 providing translation support to a PCIe root complex. |
| 405 | |
| 406 | Say Y here if your system includes an IOMMU device implementing |
| 407 | the ARM SMMUv3 architecture. |
| 408 | |
Gerald Schaefer | 8128f23c | 2015-08-27 15:33:03 +0200 | [diff] [blame] | 409 | config S390_IOMMU |
| 410 | def_bool y if S390 && PCI |
| 411 | depends on S390 && PCI |
| 412 | select IOMMU_API |
| 413 | help |
| 414 | Support for the IOMMU API for s390 PCI devices. |
| 415 | |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 416 | config S390_CCW_IOMMU |
| 417 | bool "S390 CCW IOMMU Support" |
| 418 | depends on S390 && CCW |
| 419 | select IOMMU_API |
| 420 | help |
| 421 | Enables bits of IOMMU API required by VFIO. The iommu_ops |
| 422 | is not implemented as it is not necessary for VFIO. |
| 423 | |
Tony Krowiak | 1fde573 | 2018-09-25 19:16:19 -0400 | [diff] [blame] | 424 | config S390_AP_IOMMU |
| 425 | bool "S390 AP IOMMU Support" |
| 426 | depends on S390 && ZCRYPT |
| 427 | select IOMMU_API |
| 428 | help |
| 429 | Enables bits of IOMMU API required by VFIO. The iommu_ops |
| 430 | is not implemented as it is not necessary for VFIO. |
| 431 | |
Yong Wu | 0df4fab | 2016-02-23 01:20:50 +0800 | [diff] [blame] | 432 | config MTK_IOMMU |
| 433 | bool "MTK IOMMU Support" |
| 434 | depends on ARM || ARM64 |
| 435 | depends on ARCH_MEDIATEK || COMPILE_TEST |
Arnd Bergmann | 1928832 | 2016-02-29 10:19:06 +0100 | [diff] [blame] | 436 | select ARM_DMA_USE_IOMMU |
Yong Wu | 0df4fab | 2016-02-23 01:20:50 +0800 | [diff] [blame] | 437 | select IOMMU_API |
| 438 | select IOMMU_DMA |
| 439 | select IOMMU_IO_PGTABLE_ARMV7S |
| 440 | select MEMORY |
| 441 | select MTK_SMI |
| 442 | help |
| 443 | Support for the M4U on certain Mediatek SOCs. M4U is MultiMedia |
| 444 | Memory Management Unit. This option enables remapping of DMA memory |
| 445 | accesses for the multimedia subsystem. |
| 446 | |
| 447 | If unsure, say N here. |
| 448 | |
Honghui Zhang | b17336c | 2016-06-08 17:51:00 +0800 | [diff] [blame] | 449 | config MTK_IOMMU_V1 |
| 450 | bool "MTK IOMMU Version 1 (M4U gen1) Support" |
| 451 | depends on ARM |
| 452 | depends on ARCH_MEDIATEK || COMPILE_TEST |
| 453 | select ARM_DMA_USE_IOMMU |
| 454 | select IOMMU_API |
| 455 | select MEMORY |
| 456 | select MTK_SMI |
Honghui Zhang | b17336c | 2016-06-08 17:51:00 +0800 | [diff] [blame] | 457 | help |
| 458 | Support for the M4U on certain Mediatek SoCs. M4U generation 1 HW is |
| 459 | Multimedia Memory Managememt Unit. This option enables remapping of |
| 460 | DMA memory accesses for the multimedia subsystem. |
| 461 | |
| 462 | if unsure, say N here. |
| 463 | |
Rob Clark | 0ae349a | 2017-08-09 10:43:04 -0400 | [diff] [blame] | 464 | config QCOM_IOMMU |
| 465 | # Note: iommu drivers cannot (yet?) be built as modules |
| 466 | bool "Qualcomm IOMMU Support" |
Guenter Roeck | a4aaecc | 2017-09-10 13:43:37 -0700 | [diff] [blame] | 467 | depends on ARCH_QCOM || (COMPILE_TEST && !GENERIC_ATOMIC64) |
Rob Clark | 0ae349a | 2017-08-09 10:43:04 -0400 | [diff] [blame] | 468 | select IOMMU_API |
| 469 | select IOMMU_IO_PGTABLE_LPAE |
| 470 | select ARM_DMA_USE_IOMMU |
| 471 | help |
| 472 | Support for IOMMU on certain Qualcomm SoCs. |
| 473 | |
Lan Tianyu | 29217a4 | 2019-02-27 22:54:04 +0800 | [diff] [blame] | 474 | config HYPERV_IOMMU |
| 475 | bool "Hyper-V x2APIC IRQ Handling" |
Boqun Feng | d7f0b2e | 2019-10-17 08:57:03 +0800 | [diff] [blame] | 476 | depends on HYPERV && X86 |
Lan Tianyu | 29217a4 | 2019-02-27 22:54:04 +0800 | [diff] [blame] | 477 | select IOMMU_API |
| 478 | default HYPERV |
| 479 | help |
| 480 | Stub IOMMU driver to handle IRQs as to allow Hyper-V Linux |
| 481 | guests to run with x2APIC mode enabled. |
| 482 | |
Jean-Philippe Brucker | edcd69a | 2019-01-15 12:19:57 +0000 | [diff] [blame] | 483 | config VIRTIO_IOMMU |
| 484 | bool "Virtio IOMMU driver" |
| 485 | depends on VIRTIO=y |
| 486 | depends on ARM64 |
| 487 | select IOMMU_API |
| 488 | select INTERVAL_TREE |
| 489 | help |
| 490 | Para-virtualised IOMMU driver with virtio. |
| 491 | |
| 492 | Say Y here if you intend to run this kernel as a guest. |
| 493 | |
Ohad Ben-Cohen | ab493a0 | 2011-06-02 02:48:05 +0300 | [diff] [blame] | 494 | endif # IOMMU_SUPPORT |