From mboxrd@z Thu Jan 1 00:00:00 1970 From: arnd@arndb.de (Arnd Bergmann) Date: Mon, 29 Feb 2016 12:29:13 +0100 Subject: [PATCH 1/2] iommu/mediatek: select ARM_DMA_USE_IOMMU In-Reply-To: <56D429F0.7010409@arm.com> References: <1456737553-496245-1-git-send-email-arnd@arndb.de> <2734684.OJWJHS6snX@wuerfel> <56D429F0.7010409@arm.com> Message-ID: <5357325.sBkT8ESvOS@wuerfel> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Monday 29 February 2016 11:22:24 Robin Murphy wrote: > >>> diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig > >>> index b325954cf8f8..ea0998921702 100644 > >>> --- a/drivers/iommu/Kconfig > >>> +++ b/drivers/iommu/Kconfig > >>> @@ -341,6 +341,7 @@ config MTK_IOMMU > >>> bool "MTK IOMMU Support" > >>> depends on ARM || ARM64 > >>> depends on ARCH_MEDIATEK || COMPILE_TEST > >>> + select ARM_DMA_USE_IOMMU > >> > >> If going down this route, I'd be inclined to add an "if ARM" there, just > >> for clarity. > > > > That would run into the NEED_SG_DMA_LENGTH problem on other architectures > > that don't already set it, right? > > Sorry, I'm lost - wouldn't "depends on ARM || ARM64" make other > architectures moot? arm64 already has NEED_SG_DMA_LENGTH=y by default. > Nevermind, I didn't notice the dependency on the architecture. What is keeping us from having 'depends on ARM || ARM64 || COMPILE_TEST'? I assume it doesn't work yet, but it would be nice to get that done at some point so we can take advantage of automated build testing like coverity. Arnd