Re: [PATCH 1/2] iommu: Add config option to set passthrough as default

From: Olof Johansson
Date: Fri Jul 20 2018 - 13:37:38 EST


On Fri, Jul 20, 2018 at 5:16 AM, Joerg Roedel <joro@xxxxxxxxxx> wrote:
> Hi Olof,
>
> On Wed, Jul 11, 2018 at 01:59:35PM -0700, Olof Johansson wrote:
>> +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 through command line). If this is enabled,
>> + you can still disable with iommu.passthrough=off
>> +
>> + If unsure, say N here.
>> +
>
> The patch is a good start, but the description above indicates that it
> affects all IOMMU driver, which it does not. Please make the Intel and
> AMD IOMMU drivers also take this option into account.

It looks like it should make the AMD driver should honor it, since it
uses the generic infrastructure for domain types? But it also shares
iommu_pass_through variable usage with Intel, so if I change it over
there it'll be covered for sure.

One unfortunate thing here is the divergence in command line options
between arm64 and x86. I'll add a 'iommu=nopt' on x86 so it can be
turned off at runtime if enabled in config, but it'd be nice to also
have it adhere to the .passthrough options. That's a larger topic than
just this specific patch though.

Posting new patch shortly.


-Olof