Kconfig 14.7 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0-only
2 3 4 5
# The IOVA library may also be used by non-IOMMU_API users
config IOMMU_IOVA
	tristate

6 7 8 9
# The IOASID library may also be used by non-IOMMU_API users
config IOASID
	tristate

10 11 12
# IOMMU_API always gets selected by whoever wants it.
config IOMMU_API
	bool
13

14 15
menuconfig IOMMU_SUPPORT
	bool "IOMMU Hardware Support"
A
Arnd Bergmann 已提交
16
	depends on MMU
17
	default y
18
	help
19 20 21 22 23 24 25
	  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

26 27 28 29 30 31
menu "Generic IOMMU Pagetable Support"

# Selected by the actual pagetable implementations
config IOMMU_IO_PGTABLE
	bool

32 33 34
config IOMMU_IO_PGTABLE_LPAE
	bool "ARMv7/v8 Long Descriptor Format"
	select IOMMU_IO_PGTABLE
35
	depends on ARM || ARM64 || (COMPILE_TEST && !GENERIC_ATOMIC64)
36 37 38 39 40 41
	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.

42 43 44 45 46 47 48 49 50
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.

51 52 53
config IOMMU_IO_PGTABLE_ARMV7S
	bool "ARMv7/v8 Short Descriptor Format"
	select IOMMU_IO_PGTABLE
54
	depends on ARM || ARM64 || COMPILE_TEST
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
	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.

70 71
endmenu

72 73 74 75 76 77 78 79 80 81
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.

82 83
choice
	prompt "IOMMU default domain type"
84
	depends on IOMMU_API
85
	default IOMMU_DEFAULT_DMA_LAZY if X86 || IA64
86
	default IOMMU_DEFAULT_DMA_STRICT
87
	help
88 89 90 91 92 93
	  Choose the type of IOMMU domain used to manage DMA API usage by
	  device drivers. The options here typically represent different
	  levels of tradeoff between robustness/security and performance,
	  depending on the IOMMU driver. Not all IOMMUs support all options.
	  This choice can be overridden at boot via the command line, and for
	  some devices also at runtime via sysfs.
94

95
	  If unsure, keep the default.
96

97 98
config IOMMU_DEFAULT_DMA_STRICT
	bool "Translated - Strict"
99
	help
100 101 102
	  Trusted devices use translation to restrict their access to only
	  DMA-mapped pages, with strict TLB invalidation on unmap. Equivalent
	  to passing "iommu.passthrough=0 iommu.strict=1" on the command line.
103

104 105 106
	  Untrusted devices always use this mode, with an additional layer of
	  bounce-buffering such that they cannot gain access to any unrelated
	  data within a mapped page.
107

108 109
config IOMMU_DEFAULT_DMA_LAZY
	bool "Translated - Lazy"
110
	help
111 112 113 114 115 116 117 118 119 120
	  Trusted devices use translation to restrict their access to only
	  DMA-mapped pages, but with "lazy" batched TLB invalidation. This
	  mode allows higher performance with some IOMMUs due to reduced TLB
	  flushing, but at the cost of reduced isolation since devices may be
	  able to access memory for some time after it has been unmapped.
	  Equivalent to passing "iommu.passthrough=0 iommu.strict=0" on the
	  command line.

	  If this mode is not supported by the IOMMU driver, the effective
	  runtime default will fall back to IOMMU_DEFAULT_DMA_STRICT.
121

122 123
config IOMMU_DEFAULT_PASSTHROUGH
	bool "Passthrough"
124
	help
125 126 127 128 129 130
	  Trusted devices are identity-mapped, giving them unrestricted access
	  to memory with minimal performance overhead. Equivalent to passing
	  "iommu.passthrough=1" (historically "iommu=pt") on the command line.

	  If this mode is not supported by the IOMMU driver, the effective
	  runtime default will fall back to IOMMU_DEFAULT_DMA_STRICT.
131 132

endchoice
133

134
config OF_IOMMU
135 136
	def_bool y
	depends on OF && IOMMU_API
137

138 139 140
# IOMMU-agnostic DMA-mapping layer
config IOMMU_DMA
	bool
141
	select DMA_OPS
142 143
	select IOMMU_API
	select IOMMU_IOVA
144
	select IRQ_MSI_IOMMU
145
	select NEED_SG_DMA_LENGTH
146

147 148 149 150 151
# Shared Virtual Addressing library
config IOMMU_SVA_LIB
	bool
	select IOASID

152 153
config FSL_PAMU
	bool "Freescale IOMMU support"
154
	depends on PCI
155
	depends on PHYS_64BIT
156
	depends on PPC_E500MC || (COMPILE_TEST && PPC)
157 158 159 160 161 162 163
	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.

164 165 166
# MSM IOMMU support
config MSM_IOMMU
	bool "MSM IOMMU Support"
167 168
	depends on ARM
	depends on ARCH_MSM8X60 || ARCH_MSM8960 || COMPILE_TEST
169
	select IOMMU_API
170
	select IOMMU_IO_PGTABLE_ARMV7S
171 172 173 174 175 176 177
	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.

178
source "drivers/iommu/amd/Kconfig"
179
source "drivers/iommu/intel/Kconfig"
180

181
config IRQ_REMAP
182 183
	bool "Support for Interrupt Remapping"
	depends on X86_64 && X86_IO_APIC && PCI_MSI && ACPI
184
	select DMAR_TABLE
185
	help
186 187 188
	  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.
189

190 191 192
# OMAP IOMMU support
config OMAP_IOMMU
	bool "OMAP IOMMU Support"
193
	depends on ARCH_OMAP2PLUS || COMPILE_TEST
194
	select IOMMU_API
195
	help
G
Gerd Hoffmann 已提交
196 197
	  The OMAP3 media platform drivers depend on iommu support,
	  if you need them say Y here.
198 199

config OMAP_IOMMU_DEBUG
200 201
	bool "Export OMAP IOMMU internals in DebugFS"
	depends on OMAP_IOMMU && DEBUG_FS
202
	help
203 204
	  Select this to see extensive information about
	  the internal state of OMAP IOMMU in debugfs.
205

206
	  Say N unless you know you need this.
207

D
Daniel Kurtz 已提交
208 209
config ROCKCHIP_IOMMU
	bool "Rockchip IOMMU Support"
210
	depends on ARCH_ROCKCHIP || COMPILE_TEST
D
Daniel Kurtz 已提交
211 212 213 214 215 216 217 218
	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.
219

220 221
config SUN50I_IOMMU
	bool "Allwinner H6 IOMMU Support"
222
	depends on HAS_DMA
223 224 225 226 227 228
	depends on ARCH_SUNXI || COMPILE_TEST
	select ARM_DMA_USE_IOMMU
	select IOMMU_API
	help
	  Support for the IOMMU introduced in the Allwinner H6 SoCs.

229 230 231
config TEGRA_IOMMU_GART
	bool "Tegra GART IOMMU Support"
	depends on ARCH_TEGRA_2x_SOC
232
	depends on TEGRA_MC
233 234 235 236 237 238 239
	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.

240
config TEGRA_IOMMU_SMMU
241 242 243 244
	bool "NVIDIA Tegra SMMU Support"
	depends on ARCH_TEGRA
	depends on TEGRA_AHB
	depends on TEGRA_MC
245 246
	select IOMMU_API
	help
247
	  This driver supports the IOMMU hardware (SMMU) found on NVIDIA Tegra
248
	  SoCs (Tegra30 up to Tegra210).
249

250 251
config EXYNOS_IOMMU
	bool "Exynos IOMMU Support"
252
	depends on ARCH_EXYNOS || COMPILE_TEST
253
	depends on !CPU_BIG_ENDIAN # revisit driver if we can enable big-endian ptes
254
	select IOMMU_API
255
	select ARM_DMA_USE_IOMMU
256
	help
S
Sachin Kamat 已提交
257 258 259 260
	  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.
261 262 263 264 265 266 267 268

	  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 已提交
269
	  happens in the IOMMU driver.
270

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

273 274
config IPMMU_VMSA
	bool "Renesas VMSA-compatible IPMMU"
G
Guenter Roeck 已提交
275
	depends on ARCH_RENESAS || (COMPILE_TEST && !GENERIC_ATOMIC64)
276
	select IOMMU_API
277
	select IOMMU_IO_PGTABLE_LPAE
278 279
	select ARM_DMA_USE_IOMMU
	help
280
	  Support for the Renesas VMSA-compatible IPMMU found in the R-Mobile
281
	  APE6, R-Car Gen{2,3} and RZ/G{1,2} SoCs.
282 283 284

	  If unsure, say N.

285 286
config SPAPR_TCE_IOMMU
	bool "sPAPR TCE IOMMU Support"
287
	depends on PPC_POWERNV || PPC_PSERIES
288 289 290 291 292
	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.

S
Sven Peter 已提交
293 294
config APPLE_DART
	tristate "Apple DART IOMMU Support"
295
	depends on ARCH_APPLE || (COMPILE_TEST && !GENERIC_ATOMIC64)
S
Sven Peter 已提交
296 297 298 299 300 301 302 303 304 305 306
	select IOMMU_API
	select IOMMU_IO_PGTABLE_LPAE
	default ARCH_APPLE
	help
	  Support for Apple DART (Device Address Resolution Table) IOMMUs
	  found in Apple ARM SoCs like the M1.
	  This IOMMU is required for most peripherals using DMA to access
	  the main memory.

	  Say Y here if you are using an Apple SoC.

307
# ARM IOMMU support
308
config ARM_SMMU
309
	tristate "ARM Ltd. System MMU (SMMU) Support"
310
	depends on ARM64 || ARM || (COMPILE_TEST && !GENERIC_ATOMIC64)
311
	select IOMMU_API
312
	select IOMMU_IO_PGTABLE_LPAE
313 314 315
	select ARM_DMA_USE_IOMMU if ARM
	help
	  Support for implementations of the ARM System MMU architecture
316
	  versions 1 and 2.
317 318 319 320

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

321 322 323 324 325 326 327 328 329 330 331 332
config ARM_SMMU_LEGACY_DT_BINDINGS
	bool "Support the legacy \"mmu-masters\" devicetree bindings"
	depends on ARM_SMMU=y && OF
	help
	  Support for the badly designed and deprecated "mmu-masters"
	  devicetree bindings. This allows some DMA masters to attach
	  to the SMMU but does not provide any support via the DMA API.
	  If you're lucky, you might be able to get VFIO up and running.

	  If you say Y here then you'll make me very sad. Instead, say N
	  and move your firmware to the utopian future that was 2016.

333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
config ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT
	bool "Default to disabling bypass on ARM SMMU v1 and v2"
	depends on ARM_SMMU
	default y
	help
	  Say Y here to (by default) disable bypass streams such that
	  incoming transactions from devices that are not attached to
	  an iommu domain will report an abort back to the device and
	  will not be allowed to pass through the SMMU.

	  Any old kernels that existed before this KConfig was
	  introduced would default to _allowing_ bypass (AKA the
	  equivalent of NO for this config).  However the default for
	  this option is YES because the old behavior is insecure.

	  There are few reasons to allow unmatched stream bypass, and
	  even fewer good ones.  If saying YES here breaks your board
	  you should work on fixing your board.  This KConfig option
	  is expected to be removed in the future and we'll simply
	  hardcode the bypass disable in the code.

	  NOTE: the kernel command line parameter
	  'arm-smmu.disable_bypass' will continue to override this
	  config.

358 359 360 361 362 363 364 365
config ARM_SMMU_QCOM
	def_tristate y
	depends on ARM_SMMU && ARCH_QCOM
	select QCOM_SCM
	help
	  When running on a Qualcomm platform that has the custom variant
	  of the ARM SMMU, this needs to be built into the SMMU driver.

366
config ARM_SMMU_V3
367
	tristate "ARM Ltd. System MMU Version 3 (SMMUv3) Support"
368
	depends on ARM64
369 370
	select IOMMU_API
	select IOMMU_IO_PGTABLE_LPAE
371
	select GENERIC_MSI_IRQ_DOMAIN
372 373 374 375 376 377 378
	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.

379 380 381
config ARM_SMMU_V3_SVA
	bool "Shared Virtual Addressing support for the ARM SMMUv3"
	depends on ARM_SMMU_V3
382 383
	select IOMMU_SVA_LIB
	select MMU_NOTIFIER
384 385 386 387 388 389 390
	help
	  Support for sharing process address spaces with devices using the
	  SMMUv3.

	  Say Y here if your system supports SVA extensions such as PCIe PASID
	  and PRI.

391 392 393 394 395 396 397
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.

398 399
config S390_CCW_IOMMU
	bool "S390 CCW IOMMU Support"
400
	depends on S390 && CCW || COMPILE_TEST
401 402 403 404 405
	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.

406 407
config S390_AP_IOMMU
	bool "S390 AP IOMMU Support"
408
	depends on S390 && ZCRYPT || COMPILE_TEST
409 410 411 412 413
	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.

414
config MTK_IOMMU
415
	tristate "MediaTek IOMMU Support"
416
	depends on ARCH_MEDIATEK || COMPILE_TEST
417
	select ARM_DMA_USE_IOMMU
418 419 420 421 422 423 424 425 426 427 428
	select IOMMU_API
	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.

429
config MTK_IOMMU_V1
430
	tristate "MediaTek IOMMU Version 1 (M4U gen1) Support"
431 432 433 434 435 436 437 438 439 440 441 442 443
	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 已提交
444 445 446
config QCOM_IOMMU
	# Note: iommu drivers cannot (yet?) be built as modules
	bool "Qualcomm IOMMU Support"
G
Guenter Roeck 已提交
447
	depends on ARCH_QCOM || (COMPILE_TEST && !GENERIC_ATOMIC64)
A
Arnd Bergmann 已提交
448
	select QCOM_SCM
R
Rob Clark 已提交
449 450 451 452 453 454
	select IOMMU_API
	select IOMMU_IO_PGTABLE_LPAE
	select ARM_DMA_USE_IOMMU
	help
	  Support for IOMMU on certain Qualcomm SoCs.

455 456
config HYPERV_IOMMU
	bool "Hyper-V x2APIC IRQ Handling"
457
	depends on HYPERV && X86
458 459 460 461 462 463
	select IOMMU_API
	default HYPERV
	help
	  Stub IOMMU driver to handle IRQs as to allow Hyper-V Linux
	  guests to run with x2APIC mode enabled.

464
config VIRTIO_IOMMU
465 466
	tristate "Virtio IOMMU driver"
	depends on VIRTIO
467
	depends on (ARM64 || X86)
468
	select IOMMU_API
469
	select IOMMU_DMA
470
	select INTERVAL_TREE
471
	select ACPI_VIOT if ACPI
472 473 474 475 476
	help
	  Para-virtualised IOMMU driver with virtio.

	  Say Y here if you intend to run this kernel as a guest.

477 478 479 480 481 482 483 484 485 486 487 488
config SPRD_IOMMU
	tristate "Unisoc IOMMU Support"
	depends on ARCH_SPRD || COMPILE_TEST
	select IOMMU_API
	help
	  Support for IOMMU on Unisoc's SoCs, this IOMMU can be used by
	  Unisoc's multimedia devices, such as display, Image codec(jpeg)
	  and a few signal processors, including VSP(video), GSP(graphic),
	  ISP(image), and CPP(camera pixel processor), etc.

	  Say Y here if you want to use the multimedia devices listed above.

489
endif # IOMMU_SUPPORT