Kconfig 12.3 KB
Newer Older
1 2 3
# IOMMU_API always gets selected by whoever wants it.
config IOMMU_API
	bool
4

5 6
menuconfig IOMMU_SUPPORT
	bool "IOMMU Hardware Support"
A
Arnd Bergmann 已提交
7
	depends on MMU
8 9 10 11 12 13 14 15 16
	default y
	---help---
	  Say Y here if you want to compile device drivers for IO Memory
	  Management Units into the kernel. These devices usually allow to
	  remap DMA requests and/or remap interrupts from other devices on the
	  system.

if IOMMU_SUPPORT

17 18 19 20 21 22
menu "Generic IOMMU Pagetable Support"

# Selected by the actual pagetable implementations
config IOMMU_IO_PGTABLE
	bool

23 24 25
config IOMMU_IO_PGTABLE_LPAE
	bool "ARMv7/v8 Long Descriptor Format"
	select IOMMU_IO_PGTABLE
26
	depends on ARM || ARM64 || (COMPILE_TEST && !GENERIC_ATOMIC64)
27 28 29 30 31 32
	help
	  Enable support for the ARM long descriptor pagetable format.
	  This allocator supports 4K/2M/1G, 16K/32M and 64K/512M page
	  sizes at both stage-1 and stage-2, as well as address spaces
	  up to 48-bits in size.

33 34 35 36 37 38 39 40 41
config IOMMU_IO_PGTABLE_LPAE_SELFTEST
	bool "LPAE selftests"
	depends on IOMMU_IO_PGTABLE_LPAE
	help
	  Enable self-tests for LPAE page table allocator. This performs
	  a series of page-table consistency checks during boot.

	  If unsure, say N here.

42 43 44
config IOMMU_IO_PGTABLE_ARMV7S
	bool "ARMv7/v8 Short Descriptor Format"
	select IOMMU_IO_PGTABLE
45
	depends on ARM || ARM64 || COMPILE_TEST
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
	help
	  Enable support for the ARM Short-descriptor pagetable format.
	  This supports 32-bit virtual and physical addresses mapped using
	  2-level tables with 4KB pages/1MB sections, and contiguous entries
	  for 64KB pages/16MB supersections if indicated by the IOMMU driver.

config IOMMU_IO_PGTABLE_ARMV7S_SELFTEST
	bool "ARMv7s selftests"
	depends on IOMMU_IO_PGTABLE_ARMV7S
	help
	  Enable self-tests for ARMv7s page table allocator. This performs
	  a series of page-table consistency checks during boot.

	  If unsure, say N here.

61 62
endmenu

63 64 65 66 67 68 69 70 71 72
config IOMMU_DEBUGFS
	bool "Export IOMMU internals in DebugFS"
	depends on DEBUG_FS
	help
	  Allows exposure of IOMMU device internals. This option enables
	  the use of debugfs by IOMMU drivers as required. Devices can,
	  at initialization time, cause the IOMMU code to create a top-level
	  debug/iommu directory, and then populate a subdirectory with
	  entries as required.

73 74 75 76 77 78 79 80 81 82 83
config IOMMU_DEFAULT_PASSTHROUGH
	bool "IOMMU passthrough by default"
	depends on IOMMU_API
        help
	  Enable passthrough by default, removing the need to pass in
	  iommu.passthrough=on or iommu=pt through command line. If this
	  is enabled, you can still disable with iommu.passthrough=off
	  or iommu=nopt depending on the architecture.

	  If unsure, say N here.

84
config IOMMU_IOVA
85
	tristate
86

87 88
config OF_IOMMU
       def_bool y
89
       depends on OF && IOMMU_API
90

91 92 93 94 95
# IOMMU-agnostic DMA-mapping layer
config IOMMU_DMA
	bool
	select IOMMU_API
	select IOMMU_IOVA
96
	select NEED_SG_DMA_LENGTH
97

98 99
config FSL_PAMU
	bool "Freescale IOMMU support"
100
	depends on PCI
101
	depends on PHYS_64BIT
102
	depends on PPC_E500MC || (COMPILE_TEST && PPC)
103 104 105 106 107 108 109
	select IOMMU_API
	select GENERIC_ALLOCATOR
	help
	  Freescale PAMU support. PAMU is the IOMMU present on Freescale QorIQ platforms.
	  PAMU can authorize memory access, remap the memory address, and remap I/O
	  transaction types.

110 111 112
# MSM IOMMU support
config MSM_IOMMU
	bool "MSM IOMMU Support"
113 114
	depends on ARM
	depends on ARCH_MSM8X60 || ARCH_MSM8960 || COMPILE_TEST
115
	select IOMMU_API
116
	select IOMMU_IO_PGTABLE_ARMV7S
117 118 119 120 121 122 123 124 125 126
	help
	  Support for the IOMMUs found on certain Qualcomm SOCs.
	  These IOMMUs allow virtualization of the address space used by most
	  cores within the multimedia subsystem.

	  If unsure, say N here.

config IOMMU_PGTABLES_L2
	def_bool y
	depends on MSM_IOMMU && MMU && SMP && CPU_DCACHE_DISABLE=n
127 128 129 130 131 132

# AMD IOMMU support
config AMD_IOMMU
	bool "AMD IOMMU support"
	select SWIOTLB
	select PCI_MSI
133 134 135
	select PCI_ATS
	select PCI_PRI
	select PCI_PASID
136
	select IOMMU_API
137
	select IOMMU_IOVA
138
	depends on X86_64 && PCI && ACPI
139 140 141 142
	---help---
	  With this option you can enable support for AMD IOMMU hardware in
	  your system. An IOMMU is a hardware component which provides
	  remapping of DMA memory accesses from devices. With an AMD IOMMU you
M
Masanari Iida 已提交
143
	  can isolate the DMA memory of different devices and protect the
144 145 146 147 148 149
	  system from misbehaving device drivers or hardware.

	  You can find out if your system has an AMD IOMMU if you look into
	  your BIOS for an option to enable it or if you have an IVRS ACPI
	  table.

150
config AMD_IOMMU_V2
151
	tristate "AMD IOMMU Version 2 driver"
152
	depends on AMD_IOMMU
153
	select MMU_NOTIFIER
154 155 156
	---help---
	  This option enables support for the AMD IOMMUv2 features of the IOMMU
	  hardware. Select this option if you want to use devices that support
M
Masanari Iida 已提交
157
	  the PCI PRI and PASID interface.
158

159 160 161 162 163 164 165 166 167 168 169 170
config AMD_IOMMU_DEBUGFS
	bool "Enable AMD IOMMU internals in DebugFS"
	depends on AMD_IOMMU && IOMMU_DEBUGFS
	---help---
	  !!!WARNING!!!  !!!WARNING!!!  !!!WARNING!!!  !!!WARNING!!!

	  DO NOT ENABLE THIS OPTION UNLESS YOU REALLY, -REALLY- KNOW WHAT YOU ARE DOING!!!
	  Exposes AMD IOMMU device internals in DebugFS.

	  This option is -NOT- intended for production environments, and should
	  not generally be enabled.

171
# Intel IOMMU support
172 173 174 175 176
config DMAR_TABLE
	bool

config INTEL_IOMMU
	bool "Support for Intel IOMMU using DMA Remapping Devices"
177 178
	depends on PCI_MSI && ACPI && (X86 || IA64_GENERIC)
	select IOMMU_API
179
	select IOMMU_IOVA
180
	select NEED_DMA_MAP_STATE
181
	select DMAR_TABLE
182 183 184 185 186 187 188
	help
	  DMA remapping (DMAR) devices support enables independent address
	  translations for Direct Memory Access (DMA) from devices.
	  These DMA remapping devices are reported via ACPI tables
	  and include PCI device scope covered by these DMA
	  remapping devices.

189 190 191
config INTEL_IOMMU_SVM
	bool "Support for Shared Virtual Memory with Intel IOMMU"
	depends on INTEL_IOMMU && X86
192
	select PCI_PASID
193
	select MMU_NOTIFIER
194 195 196 197 198
	help
	  Shared Virtual Memory (SVM) provides a facility for devices
	  to access DMA resources through process address space by
	  means of a Process Address Space ID (PASID).

199
config INTEL_IOMMU_DEFAULT_ON
200
	def_bool y
201 202
	prompt "Enable Intel DMA Remapping Devices by default"
	depends on INTEL_IOMMU
203 204 205 206 207
	help
	  Selecting this option will enable a DMAR device at boot time if
	  one is found. If this option is not selected, DMAR support can
	  be enabled by passing intel_iommu=on to the kernel.

208
config INTEL_IOMMU_BROKEN_GFX_WA
209
	bool "Workaround broken graphics drivers (going away soon)"
210
	depends on INTEL_IOMMU && BROKEN && X86
211 212 213 214 215 216 217 218
	---help---
	  Current Graphics drivers tend to use physical address
	  for DMA and avoid using DMA APIs. Setting this config
	  option permits the IOMMU driver to set a unity map for
	  all the OS-visible memory. Hence the driver can continue
	  to use physical addresses for DMA, at least until this
	  option is removed in the 2.6.32 kernel.

219
config INTEL_IOMMU_FLOPPY_WA
220
	def_bool y
221
	depends on INTEL_IOMMU && X86
222 223 224 225 226 227
	---help---
	  Floppy disk drivers are known to bypass DMA API calls
	  thereby failing to work when IOMMU is enabled. This
	  workaround will setup a 1:1 mapping for the first
	  16MiB to make floppy (an ISA device) work.

228
config IRQ_REMAP
229 230
	bool "Support for Interrupt Remapping"
	depends on X86_64 && X86_IO_APIC && PCI_MSI && ACPI
231
	select DMAR_TABLE
232 233 234 235
	---help---
	  Supports Interrupt remapping for IO-APIC and MSI devices.
	  To use x2apic mode in the CPU's which support x2APIC enhancements or
	  to support platforms with CPU's having > 8 bit APIC ID, say Y.
236

237 238 239
# OMAP IOMMU support
config OMAP_IOMMU
	bool "OMAP IOMMU Support"
240 241
	depends on ARM && MMU
	depends on ARCH_OMAP2PLUS || COMPILE_TEST
242
	select IOMMU_API
G
Gerd Hoffmann 已提交
243 244 245
	---help---
	  The OMAP3 media platform drivers depend on iommu support,
	  if you need them say Y here.
246 247

config OMAP_IOMMU_DEBUG
248 249 250 251 252
	bool "Export OMAP IOMMU internals in DebugFS"
	depends on OMAP_IOMMU && DEBUG_FS
	---help---
	  Select this to see extensive information about
	  the internal state of OMAP IOMMU in debugfs.
253

254
	  Say N unless you know you need this.
255

D
Daniel Kurtz 已提交
256 257
config ROCKCHIP_IOMMU
	bool "Rockchip IOMMU Support"
258
	depends on ARM || ARM64
259
	depends on ARCH_ROCKCHIP || COMPILE_TEST
D
Daniel Kurtz 已提交
260 261 262 263 264 265 266 267
	select IOMMU_API
	select ARM_DMA_USE_IOMMU
	help
	  Support for IOMMUs found on Rockchip rk32xx SOCs.
	  These IOMMUs allow virtualization of the address space used by most
	  cores within the multimedia subsystem.
	  Say Y here if you are using a Rockchip SoC that includes an IOMMU
	  device.
268

269 270 271 272 273 274 275 276 277 278
config TEGRA_IOMMU_GART
	bool "Tegra GART IOMMU Support"
	depends on ARCH_TEGRA_2x_SOC
	select IOMMU_API
	help
	  Enables support for remapping discontiguous physical memory
	  shared with the operating system into contiguous I/O virtual
	  space through the GART (Graphics Address Relocation Table)
	  hardware included on Tegra SoCs.

279
config TEGRA_IOMMU_SMMU
280 281 282 283
	bool "NVIDIA Tegra SMMU Support"
	depends on ARCH_TEGRA
	depends on TEGRA_AHB
	depends on TEGRA_MC
284 285
	select IOMMU_API
	help
286
	  This driver supports the IOMMU hardware (SMMU) found on NVIDIA Tegra
287
	  SoCs (Tegra30 up to Tegra210).
288

289 290
config EXYNOS_IOMMU
	bool "Exynos IOMMU Support"
291
	depends on ARCH_EXYNOS && MMU
292
	depends on !CPU_BIG_ENDIAN # revisit driver if we can enable big-endian ptes
293
	select IOMMU_API
294
	select ARM_DMA_USE_IOMMU
295
	help
S
Sachin Kamat 已提交
296 297 298 299
	  Support for the IOMMU (System MMU) of Samsung Exynos application
	  processor family. This enables H/W multimedia accelerators to see
	  non-linear physical memory chunks as linear memory in their
	  address space.
300 301 302 303 304 305 306 307

	  If unsure, say N here.

config EXYNOS_IOMMU_DEBUG
	bool "Debugging log for Exynos IOMMU"
	depends on EXYNOS_IOMMU
	help
	  Select this to see the detailed log message that shows what
S
Sachin Kamat 已提交
308
	  happens in the IOMMU driver.
309

S
Sachin Kamat 已提交
310
	  Say N unless you need kernel log message for IOMMU debugging.
311

312 313
config IPMMU_VMSA
	bool "Renesas VMSA-compatible IPMMU"
314
	depends on ARM || IOMMU_DMA
G
Guenter Roeck 已提交
315
	depends on ARCH_RENESAS || (COMPILE_TEST && !GENERIC_ATOMIC64)
316
	select IOMMU_API
317
	select IOMMU_IO_PGTABLE_LPAE
318 319
	select ARM_DMA_USE_IOMMU
	help
320 321
	  Support for the Renesas VMSA-compatible IPMMU found in the R-Mobile
	  APE6, R-Car Gen2, and R-Car Gen3 SoCs.
322 323 324

	  If unsure, say N.

325 326
config SPAPR_TCE_IOMMU
	bool "sPAPR TCE IOMMU Support"
327
	depends on PPC_POWERNV || PPC_PSERIES
328 329 330 331 332
	select IOMMU_API
	help
	  Enables bits of IOMMU API required by VFIO. The iommu_ops
	  is not implemented as it is not necessary for VFIO.

333
# ARM IOMMU support
334 335
config ARM_SMMU
	bool "ARM Ltd. System MMU (SMMU) Support"
336
	depends on (ARM64 || ARM) && MMU
337
	select IOMMU_API
338
	select IOMMU_IO_PGTABLE_LPAE
339 340 341
	select ARM_DMA_USE_IOMMU if ARM
	help
	  Support for implementations of the ARM System MMU architecture
342
	  versions 1 and 2.
343 344 345 346

	  Say Y here if your SoC includes an IOMMU device implementing
	  the ARM SMMU architecture.

347 348
config ARM_SMMU_V3
	bool "ARM Ltd. System MMU Version 3 (SMMUv3) Support"
349
	depends on ARM64
350 351
	select IOMMU_API
	select IOMMU_IO_PGTABLE_LPAE
352
	select GENERIC_MSI_IRQ_DOMAIN
353 354 355 356 357 358 359
	help
	  Support for implementations of the ARM System MMU architecture
	  version 3 providing translation support to a PCIe root complex.

	  Say Y here if your system includes an IOMMU device implementing
	  the ARM SMMUv3 architecture.

360 361 362 363 364 365 366
config S390_IOMMU
	def_bool y if S390 && PCI
	depends on S390 && PCI
	select IOMMU_API
	help
	  Support for the IOMMU API for s390 PCI devices.

367 368 369 370 371 372 373 374
config S390_CCW_IOMMU
	bool "S390 CCW IOMMU Support"
	depends on S390 && CCW
	select IOMMU_API
	help
	  Enables bits of IOMMU API required by VFIO. The iommu_ops
	  is not implemented as it is not necessary for VFIO.

375 376 377 378
config MTK_IOMMU
	bool "MTK IOMMU Support"
	depends on ARM || ARM64
	depends on ARCH_MEDIATEK || COMPILE_TEST
379
	select ARM_DMA_USE_IOMMU
380 381 382 383 384 385 386 387 388 389 390 391
	select IOMMU_API
	select IOMMU_DMA
	select IOMMU_IO_PGTABLE_ARMV7S
	select MEMORY
	select MTK_SMI
	help
	  Support for the M4U on certain Mediatek SOCs. M4U is MultiMedia
	  Memory Management Unit. This option enables remapping of DMA memory
	  accesses for the multimedia subsystem.

	  If unsure, say N here.

392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
config MTK_IOMMU_V1
	bool "MTK IOMMU Version 1 (M4U gen1) Support"
	depends on ARM
	depends on ARCH_MEDIATEK || COMPILE_TEST
	select ARM_DMA_USE_IOMMU
	select IOMMU_API
	select MEMORY
	select MTK_SMI
	help
	  Support for the M4U on certain Mediatek SoCs. M4U generation 1 HW is
	  Multimedia Memory Managememt Unit. This option enables remapping of
	  DMA memory accesses for the multimedia subsystem.

	  if unsure, say N here.

R
Rob Clark 已提交
407 408 409
config QCOM_IOMMU
	# Note: iommu drivers cannot (yet?) be built as modules
	bool "Qualcomm IOMMU Support"
G
Guenter Roeck 已提交
410
	depends on ARCH_QCOM || (COMPILE_TEST && !GENERIC_ATOMIC64)
R
Rob Clark 已提交
411 412 413 414 415 416
	select IOMMU_API
	select IOMMU_IO_PGTABLE_LPAE
	select ARM_DMA_USE_IOMMU
	help
	  Support for IOMMU on certain Qualcomm SoCs.

417
endif # IOMMU_SUPPORT