Hi Magnus, On Mon, Jan 23, 2017 at 1:12 PM, Magnus Damm <magnus.damm@xxxxxxxxx> wrote: > From: Magnus Damm <damm+renesas@xxxxxxxxxxxxx> > > Match on r8a7795 ES2 and enable a certain DMA controller. > In other cases the IPMMU driver remains disabled. > > Signed-off-by: Magnus Damm <damm+renesas@xxxxxxxxxxxxx> > --- > > drivers/iommu/ipmmu-vmsa.c | 24 ++++++++++++++++++++++++ > 1 file changed, 24 insertions(+) > > --- 0001/drivers/iommu/ipmmu-vmsa.c > +++ work/drivers/iommu/ipmmu-vmsa.c 2017-01-23 20:57:02.620607110 +0900 > @@ -23,6 +23,7 @@ > #include <linux/platform_device.h> > #include <linux/sizes.h> > #include <linux/slab.h> > +#include <linux/sys_soc.h> > > #if defined(CONFIG_ARM) && !defined(CONFIG_IOMMU_DMA) > #include <asm/dma-iommu.h> > @@ -1002,16 +1003,39 @@ static void ipmmu_domain_free_dma(struct > } > } > > +static const struct soc_device_attribute r8a7795es2[] = { > + { .soc_id = "r8a7795", .revision = "ES2.*" }, > + { /* sentinel */ } > +}; > + > +static int ipmmu_slave_whitelist(struct device *dev) > +{ > + /* Opt-in slave devices based on SoC and ES version */ > + if (soc_device_match(r8a7795es2)) { > + if (!strcmp(dev_name(dev), "e7310000.dma-controller")) > + return 0; > + } I have two comments about the construct above: 1. IPMMU will be disabled on all non-r8a7795 SoCs. Is that what you want? 2. Usually we match on the old broken versions instead (e.g. against "ES1.*"), as (1) it marks more clearly support for old SoCs, and (2) it makes it easier to remove the check later when these old SoCs are deemed extinct later. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds