]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/iommu/Kconfig
Merge branches 'x86/vt-d', 'arm/omap', 'arm/smmu', 's390', 'core' and 'x86/amd' into...
[karo-tx-linux.git] / drivers / iommu / Kconfig
1 # IOMMU_API always gets selected by whoever wants it.
2 config IOMMU_API
3         bool
4
5 menuconfig IOMMU_SUPPORT
6         bool "IOMMU Hardware Support"
7         depends on MMU
8         default y
9         ---help---
10           Say Y here if you want to compile device drivers for IO Memory
11           Management Units into the kernel. These devices usually allow to
12           remap DMA requests and/or remap interrupts from other devices on the
13           system.
14
15 if IOMMU_SUPPORT
16
17 menu "Generic IOMMU Pagetable Support"
18
19 # Selected by the actual pagetable implementations
20 config IOMMU_IO_PGTABLE
21         bool
22
23 config IOMMU_IO_PGTABLE_LPAE
24         bool "ARMv7/v8 Long Descriptor Format"
25         select IOMMU_IO_PGTABLE
26         depends on HAS_DMA && (ARM || ARM64 || COMPILE_TEST)
27         help
28           Enable support for the ARM long descriptor pagetable format.
29           This allocator supports 4K/2M/1G, 16K/32M and 64K/512M page
30           sizes at both stage-1 and stage-2, as well as address spaces
31           up to 48-bits in size.
32
33 config IOMMU_IO_PGTABLE_LPAE_SELFTEST
34         bool "LPAE selftests"
35         depends on IOMMU_IO_PGTABLE_LPAE
36         help
37           Enable self-tests for LPAE page table allocator. This performs
38           a series of page-table consistency checks during boot.
39
40           If unsure, say N here.
41
42 endmenu
43
44 config IOMMU_IOVA
45         tristate
46
47 config OF_IOMMU
48        def_bool y
49        depends on OF && IOMMU_API
50
51 # IOMMU-agnostic DMA-mapping layer
52 config IOMMU_DMA
53         bool
54         depends on NEED_SG_DMA_LENGTH
55         select IOMMU_API
56         select IOMMU_IOVA
57
58 config FSL_PAMU
59         bool "Freescale IOMMU support"
60         depends on PPC32
61         depends on PPC_E500MC || COMPILE_TEST
62         select IOMMU_API
63         select GENERIC_ALLOCATOR
64         help
65           Freescale PAMU support. PAMU is the IOMMU present on Freescale QorIQ platforms.
66           PAMU can authorize memory access, remap the memory address, and remap I/O
67           transaction types.
68
69 # MSM IOMMU support
70 config MSM_IOMMU
71         bool "MSM IOMMU Support"
72         depends on ARM
73         depends on ARCH_MSM8X60 || ARCH_MSM8960 || COMPILE_TEST
74         depends on BROKEN
75         select IOMMU_API
76         help
77           Support for the IOMMUs found on certain Qualcomm SOCs.
78           These IOMMUs allow virtualization of the address space used by most
79           cores within the multimedia subsystem.
80
81           If unsure, say N here.
82
83 config IOMMU_PGTABLES_L2
84         def_bool y
85         depends on MSM_IOMMU && MMU && SMP && CPU_DCACHE_DISABLE=n
86
87 # AMD IOMMU support
88 config AMD_IOMMU
89         bool "AMD IOMMU support"
90         select SWIOTLB
91         select PCI_MSI
92         select PCI_ATS
93         select PCI_PRI
94         select PCI_PASID
95         select IOMMU_API
96         depends on X86_64 && PCI && ACPI
97         ---help---
98           With this option you can enable support for AMD IOMMU hardware in
99           your system. An IOMMU is a hardware component which provides
100           remapping of DMA memory accesses from devices. With an AMD IOMMU you
101           can isolate the DMA memory of different devices and protect the
102           system from misbehaving device drivers or hardware.
103
104           You can find out if your system has an AMD IOMMU if you look into
105           your BIOS for an option to enable it or if you have an IVRS ACPI
106           table.
107
108 config AMD_IOMMU_STATS
109         bool "Export AMD IOMMU statistics to debugfs"
110         depends on AMD_IOMMU
111         select DEBUG_FS
112         ---help---
113           This option enables code in the AMD IOMMU driver to collect various
114           statistics about whats happening in the driver and exports that
115           information to userspace via debugfs.
116           If unsure, say N.
117
118 config AMD_IOMMU_V2
119         tristate "AMD IOMMU Version 2 driver"
120         depends on AMD_IOMMU
121         select MMU_NOTIFIER
122         ---help---
123           This option enables support for the AMD IOMMUv2 features of the IOMMU
124           hardware. Select this option if you want to use devices that support
125           the PCI PRI and PASID interface.
126
127 # Intel IOMMU support
128 config DMAR_TABLE
129         bool
130
131 config INTEL_IOMMU
132         bool "Support for Intel IOMMU using DMA Remapping Devices"
133         depends on PCI_MSI && ACPI && (X86 || IA64_GENERIC)
134         select IOMMU_API
135         select IOMMU_IOVA
136         select DMAR_TABLE
137         help
138           DMA remapping (DMAR) devices support enables independent address
139           translations for Direct Memory Access (DMA) from devices.
140           These DMA remapping devices are reported via ACPI tables
141           and include PCI device scope covered by these DMA
142           remapping devices.
143
144 config INTEL_IOMMU_DEFAULT_ON
145         def_bool y
146         prompt "Enable Intel DMA Remapping Devices by default"
147         depends on INTEL_IOMMU
148         help
149           Selecting this option will enable a DMAR device at boot time if
150           one is found. If this option is not selected, DMAR support can
151           be enabled by passing intel_iommu=on to the kernel.
152
153 config INTEL_IOMMU_BROKEN_GFX_WA
154         bool "Workaround broken graphics drivers (going away soon)"
155         depends on INTEL_IOMMU && BROKEN && X86
156         ---help---
157           Current Graphics drivers tend to use physical address
158           for DMA and avoid using DMA APIs. Setting this config
159           option permits the IOMMU driver to set a unity map for
160           all the OS-visible memory. Hence the driver can continue
161           to use physical addresses for DMA, at least until this
162           option is removed in the 2.6.32 kernel.
163
164 config INTEL_IOMMU_FLOPPY_WA
165         def_bool y
166         depends on INTEL_IOMMU && X86
167         ---help---
168           Floppy disk drivers are known to bypass DMA API calls
169           thereby failing to work when IOMMU is enabled. This
170           workaround will setup a 1:1 mapping for the first
171           16MiB to make floppy (an ISA device) work.
172
173 config IRQ_REMAP
174         bool "Support for Interrupt Remapping"
175         depends on X86_64 && X86_IO_APIC && PCI_MSI && ACPI
176         select DMAR_TABLE
177         ---help---
178           Supports Interrupt remapping for IO-APIC and MSI devices.
179           To use x2apic mode in the CPU's which support x2APIC enhancements or
180           to support platforms with CPU's having > 8 bit APIC ID, say Y.
181
182 # OMAP IOMMU support
183 config OMAP_IOMMU
184         bool "OMAP IOMMU Support"
185         depends on ARM && MMU
186         depends on ARCH_OMAP2PLUS || COMPILE_TEST
187         select IOMMU_API
188         ---help---
189           The OMAP3 media platform drivers depend on iommu support,
190           if you need them say Y here.
191
192 config OMAP_IOMMU_DEBUG
193         bool "Export OMAP IOMMU internals in DebugFS"
194         depends on OMAP_IOMMU && DEBUG_FS
195         ---help---
196           Select this to see extensive information about
197           the internal state of OMAP IOMMU in debugfs.
198
199           Say N unless you know you need this.
200
201 config ROCKCHIP_IOMMU
202         bool "Rockchip IOMMU Support"
203         depends on ARM
204         depends on ARCH_ROCKCHIP || COMPILE_TEST
205         select IOMMU_API
206         select ARM_DMA_USE_IOMMU
207         help
208           Support for IOMMUs found on Rockchip rk32xx SOCs.
209           These IOMMUs allow virtualization of the address space used by most
210           cores within the multimedia subsystem.
211           Say Y here if you are using a Rockchip SoC that includes an IOMMU
212           device.
213
214 config TEGRA_IOMMU_GART
215         bool "Tegra GART IOMMU Support"
216         depends on ARCH_TEGRA_2x_SOC
217         select IOMMU_API
218         help
219           Enables support for remapping discontiguous physical memory
220           shared with the operating system into contiguous I/O virtual
221           space through the GART (Graphics Address Relocation Table)
222           hardware included on Tegra SoCs.
223
224 config TEGRA_IOMMU_SMMU
225         bool "NVIDIA Tegra SMMU Support"
226         depends on ARCH_TEGRA
227         depends on TEGRA_AHB
228         depends on TEGRA_MC
229         select IOMMU_API
230         help
231           This driver supports the IOMMU hardware (SMMU) found on NVIDIA Tegra
232           SoCs (Tegra30 up to Tegra210).
233
234 config EXYNOS_IOMMU
235         bool "Exynos IOMMU Support"
236         depends on ARCH_EXYNOS && ARM && MMU
237         select IOMMU_API
238         select ARM_DMA_USE_IOMMU
239         help
240           Support for the IOMMU (System MMU) of Samsung Exynos application
241           processor family. This enables H/W multimedia accelerators to see
242           non-linear physical memory chunks as linear memory in their
243           address space.
244
245           If unsure, say N here.
246
247 config EXYNOS_IOMMU_DEBUG
248         bool "Debugging log for Exynos IOMMU"
249         depends on EXYNOS_IOMMU
250         help
251           Select this to see the detailed log message that shows what
252           happens in the IOMMU driver.
253
254           Say N unless you need kernel log message for IOMMU debugging.
255
256 config SHMOBILE_IPMMU
257         bool
258
259 config SHMOBILE_IPMMU_TLB
260         bool
261
262 config SHMOBILE_IOMMU
263         bool "IOMMU for Renesas IPMMU/IPMMUI"
264         default n
265         depends on ARM && MMU
266         depends on ARCH_SHMOBILE || COMPILE_TEST
267         select IOMMU_API
268         select ARM_DMA_USE_IOMMU
269         select SHMOBILE_IPMMU
270         select SHMOBILE_IPMMU_TLB
271         help
272           Support for Renesas IPMMU/IPMMUI. This option enables
273           remapping of DMA memory accesses from all of the IP blocks
274           on the ICB.
275
276           Warning: Drivers (including userspace drivers of UIO
277           devices) of the IP blocks on the ICB *must* use addresses
278           allocated from the IPMMU (iova) for DMA with this option
279           enabled.
280
281           If unsure, say N.
282
283 choice
284         prompt "IPMMU/IPMMUI address space size"
285         default SHMOBILE_IOMMU_ADDRSIZE_2048MB
286         depends on SHMOBILE_IOMMU
287         help
288           This option sets IPMMU/IPMMUI address space size by
289           adjusting the 1st level page table size. The page table size
290           is calculated as follows:
291
292               page table size = number of page table entries * 4 bytes
293               number of page table entries = address space size / 1 MiB
294
295           For example, when the address space size is 2048 MiB, the
296           1st level page table size is 8192 bytes.
297
298         config SHMOBILE_IOMMU_ADDRSIZE_2048MB
299                 bool "2 GiB"
300
301         config SHMOBILE_IOMMU_ADDRSIZE_1024MB
302                 bool "1 GiB"
303
304         config SHMOBILE_IOMMU_ADDRSIZE_512MB
305                 bool "512 MiB"
306
307         config SHMOBILE_IOMMU_ADDRSIZE_256MB
308                 bool "256 MiB"
309
310         config SHMOBILE_IOMMU_ADDRSIZE_128MB
311                 bool "128 MiB"
312
313         config SHMOBILE_IOMMU_ADDRSIZE_64MB
314                 bool "64 MiB"
315
316         config SHMOBILE_IOMMU_ADDRSIZE_32MB
317                 bool "32 MiB"
318
319 endchoice
320
321 config SHMOBILE_IOMMU_L1SIZE
322         int
323         default 8192 if SHMOBILE_IOMMU_ADDRSIZE_2048MB
324         default 4096 if SHMOBILE_IOMMU_ADDRSIZE_1024MB
325         default 2048 if SHMOBILE_IOMMU_ADDRSIZE_512MB
326         default 1024 if SHMOBILE_IOMMU_ADDRSIZE_256MB
327         default 512 if SHMOBILE_IOMMU_ADDRSIZE_128MB
328         default 256 if SHMOBILE_IOMMU_ADDRSIZE_64MB
329         default 128 if SHMOBILE_IOMMU_ADDRSIZE_32MB
330
331 config IPMMU_VMSA
332         bool "Renesas VMSA-compatible IPMMU"
333         depends on ARM_LPAE
334         depends on ARCH_SHMOBILE || COMPILE_TEST
335         select IOMMU_API
336         select IOMMU_IO_PGTABLE_LPAE
337         select ARM_DMA_USE_IOMMU
338         help
339           Support for the Renesas VMSA-compatible IPMMU Renesas found in the
340           R-Mobile APE6 and R-Car H2/M2 SoCs.
341
342           If unsure, say N.
343
344 config SPAPR_TCE_IOMMU
345         bool "sPAPR TCE IOMMU Support"
346         depends on PPC_POWERNV || PPC_PSERIES
347         select IOMMU_API
348         help
349           Enables bits of IOMMU API required by VFIO. The iommu_ops
350           is not implemented as it is not necessary for VFIO.
351
352 # ARM IOMMU support
353 config ARM_SMMU
354         bool "ARM Ltd. System MMU (SMMU) Support"
355         depends on (ARM64 || ARM) && MMU
356         select IOMMU_API
357         select IOMMU_IO_PGTABLE_LPAE
358         select ARM_DMA_USE_IOMMU if ARM
359         help
360           Support for implementations of the ARM System MMU architecture
361           versions 1 and 2.
362
363           Say Y here if your SoC includes an IOMMU device implementing
364           the ARM SMMU architecture.
365
366 config ARM_SMMU_V3
367         bool "ARM Ltd. System MMU Version 3 (SMMUv3) Support"
368         depends on ARM64 && PCI
369         select IOMMU_API
370         select IOMMU_IO_PGTABLE_LPAE
371         select GENERIC_MSI_IRQ_DOMAIN
372         help
373           Support for implementations of the ARM System MMU architecture
374           version 3 providing translation support to a PCIe root complex.
375
376           Say Y here if your system includes an IOMMU device implementing
377           the ARM SMMUv3 architecture.
378
379 config S390_IOMMU
380         def_bool y if S390 && PCI
381         depends on S390 && PCI
382         select IOMMU_API
383         help
384           Support for the IOMMU API for s390 PCI devices.
385
386 endif # IOMMU_SUPPORT