* Suman Anna <s-anna@xxxxxx> [150721 16:58]: > --- a/drivers/iommu/omap-iommu.c > +++ b/drivers/iommu/omap-iommu.c > @@ -26,6 +26,8 @@ > #include <linux/of_iommu.h> > #include <linux/of_irq.h> > #include <linux/of_platform.h> > +#include <linux/regmap.h> > +#include <linux/mfd/syscon.h> > > #include <asm/cacheflush.h> > > @@ -112,6 +114,18 @@ void omap_iommu_restore_ctx(struct device *dev) > } > EXPORT_SYMBOL_GPL(omap_iommu_restore_ctx); > > +static void dra7_cfg_dspsys_mmu(struct omap_iommu *obj, bool enable) > +{ > + u32 val, mask; > + > + if (!obj->syscfg) > + return; > + > + mask = (1 << (obj->id * DSP_SYS_MMU_CONFIG_EN_SHIFT)); > + val = enable ? mask : 0; > + regmap_update_bits(obj->syscfg, DSP_SYS_MMU_CONFIG, mask, val); > +} > + > static void __iommu_set_twl(struct omap_iommu *obj, bool on) I don't like using syscon for tinkering directly with SoC registers. We should use some Linux generic framework for configuring these bits to avoid nasty dependencies between various hardware modules on the SoC. What does DSP_SYS_MMU_CONFIG register do? It seems it's probably a regulator or a gate clock? If so, it should be set up as a regulator or a clock and then the omap-iommu driver can just use regulator or clcok framework to request the resource. Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html