diff options
Diffstat (limited to 'drivers/iommu/omap-iommu.c')
| -rw-r--r-- | drivers/iommu/omap-iommu.c | 185 | 
1 files changed, 112 insertions, 73 deletions
diff --git a/drivers/iommu/omap-iommu.c b/drivers/iommu/omap-iommu.c index bcd78a72063..895af06a667 100644 --- a/drivers/iommu/omap-iommu.c +++ b/drivers/iommu/omap-iommu.c @@ -23,6 +23,9 @@  #include <linux/spinlock.h>  #include <linux/io.h>  #include <linux/pm_runtime.h> +#include <linux/of.h> +#include <linux/of_iommu.h> +#include <linux/of_irq.h>  #include <asm/cacheflush.h> @@ -31,6 +34,9 @@  #include "omap-iopgtable.h"  #include "omap-iommu.h" +#define to_iommu(dev)							\ +	((struct omap_iommu *)platform_get_drvdata(to_platform_device(dev))) +  #define for_each_iotlb_cr(obj, n, __i, cr)				\  	for (__i = 0;							\  	     (__i < (n)) && (cr = __iotlb_read_cr((obj), __i), true);	\ @@ -146,13 +152,10 @@ static int iommu_enable(struct omap_iommu *obj)  	struct platform_device *pdev = to_platform_device(obj->dev);  	struct iommu_platform_data *pdata = pdev->dev.platform_data; -	if (!pdata) -		return -EINVAL; -  	if (!arch_iommu)  		return -ENODEV; -	if (pdata->deassert_reset) { +	if (pdata && pdata->deassert_reset) {  		err = pdata->deassert_reset(pdev, pdata->reset_name);  		if (err) {  			dev_err(obj->dev, "deassert_reset failed: %d\n", err); @@ -172,14 +175,11 @@ static void iommu_disable(struct omap_iommu *obj)  	struct platform_device *pdev = to_platform_device(obj->dev);  	struct iommu_platform_data *pdata = pdev->dev.platform_data; -	if (!pdata) -		return; -  	arch_iommu->disable(obj);  	pm_runtime_put_sync(obj->dev); -	if (pdata->assert_reset) +	if (pdata && pdata->assert_reset)  		pdata->assert_reset(pdev, pdata->reset_name);  } @@ -394,6 +394,7 @@ static void flush_iotlb_page(struct omap_iommu *obj, u32 da)  				__func__, start, da, bytes);  			iotlb_load_cr(obj, &cr);  			iommu_write_reg(obj, 1, MMU_FLUSH_ENTRY); +			break;  		}  	}  	pm_runtime_put_sync(obj->dev); @@ -523,7 +524,8 @@ static void flush_iopte_range(u32 *first, u32 *last)  static void iopte_free(u32 *iopte)  {  	/* Note: freed iopte's must be clean ready for re-use */ -	kmem_cache_free(iopte_cachep, iopte); +	if (iopte) +		kmem_cache_free(iopte_cachep, iopte);  }  static u32 *iopte_alloc(struct omap_iommu *obj, u32 *iopgd, u32 da) @@ -863,7 +865,7 @@ static int device_match_by_alias(struct device *dev, void *data)   **/  static struct omap_iommu *omap_iommu_attach(const char *name, u32 *iopgd)  { -	int err = -ENOMEM; +	int err;  	struct device *dev;  	struct omap_iommu *obj; @@ -871,7 +873,7 @@ static struct omap_iommu *omap_iommu_attach(const char *name, u32 *iopgd)  				(void *)name,  				device_match_by_alias);  	if (!dev) -		return NULL; +		return ERR_PTR(-ENODEV);  	obj = to_iommu(dev); @@ -890,8 +892,10 @@ static struct omap_iommu *omap_iommu_attach(const char *name, u32 *iopgd)  		goto err_enable;  	flush_iotlb_all(obj); -	if (!try_module_get(obj->owner)) +	if (!try_module_get(obj->owner)) { +		err = -ENODEV;  		goto err_module; +	}  	spin_unlock(&obj->iommu_lock); @@ -940,17 +944,41 @@ static int omap_iommu_probe(struct platform_device *pdev)  	struct omap_iommu *obj;  	struct resource *res;  	struct iommu_platform_data *pdata = pdev->dev.platform_data; +	struct device_node *of = pdev->dev.of_node; -	obj = kzalloc(sizeof(*obj) + MMU_REG_SIZE, GFP_KERNEL); +	obj = devm_kzalloc(&pdev->dev, sizeof(*obj) + MMU_REG_SIZE, GFP_KERNEL);  	if (!obj)  		return -ENOMEM; -	obj->nr_tlb_entries = pdata->nr_tlb_entries; -	obj->name = pdata->name; +	if (of) { +		obj->name = dev_name(&pdev->dev); +		obj->nr_tlb_entries = 32; +		err = of_property_read_u32(of, "ti,#tlb-entries", +					   &obj->nr_tlb_entries); +		if (err && err != -EINVAL) +			return err; +		if (obj->nr_tlb_entries != 32 && obj->nr_tlb_entries != 8) +			return -EINVAL; +		/* +		 * da_start and da_end are needed for omap-iovmm, so hardcode +		 * these values as used by OMAP3 ISP - the only user for +		 * omap-iovmm +		 */ +		obj->da_start = 0; +		obj->da_end = 0xfffff000; +		if (of_find_property(of, "ti,iommu-bus-err-back", NULL)) +			obj->has_bus_err_back = MMU_GP_REG_BUS_ERR_BACK_EN; +	} else { +		obj->nr_tlb_entries = pdata->nr_tlb_entries; +		obj->name = pdata->name; +		obj->da_start = pdata->da_start; +		obj->da_end = pdata->da_end; +	} +	if (obj->da_end <= obj->da_start) +		return -EINVAL; +  	obj->dev = &pdev->dev;  	obj->ctx = (void *)obj + sizeof(*obj); -	obj->da_start = pdata->da_start; -	obj->da_end = pdata->da_end;  	spin_lock_init(&obj->iommu_lock);  	mutex_init(&obj->mmap_lock); @@ -958,33 +986,18 @@ static int omap_iommu_probe(struct platform_device *pdev)  	INIT_LIST_HEAD(&obj->mmap);  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0); -	if (!res) { -		err = -ENODEV; -		goto err_mem; -	} - -	res = request_mem_region(res->start, resource_size(res), -				 dev_name(&pdev->dev)); -	if (!res) { -		err = -EIO; -		goto err_mem; -	} - -	obj->regbase = ioremap(res->start, resource_size(res)); -	if (!obj->regbase) { -		err = -ENOMEM; -		goto err_ioremap; -	} +	obj->regbase = devm_ioremap_resource(obj->dev, res); +	if (IS_ERR(obj->regbase)) +		return PTR_ERR(obj->regbase);  	irq = platform_get_irq(pdev, 0); -	if (irq < 0) { -		err = -ENODEV; -		goto err_irq; -	} -	err = request_irq(irq, iommu_fault_handler, IRQF_SHARED, -			  dev_name(&pdev->dev), obj); +	if (irq < 0) +		return -ENODEV; + +	err = devm_request_irq(obj->dev, irq, iommu_fault_handler, IRQF_SHARED, +			       dev_name(obj->dev), obj);  	if (err < 0) -		goto err_irq; +		return err;  	platform_set_drvdata(pdev, obj);  	pm_runtime_irq_safe(obj->dev); @@ -992,42 +1005,34 @@ static int omap_iommu_probe(struct platform_device *pdev)  	dev_info(&pdev->dev, "%s registered\n", obj->name);  	return 0; - -err_irq: -	iounmap(obj->regbase); -err_ioremap: -	release_mem_region(res->start, resource_size(res)); -err_mem: -	kfree(obj); -	return err;  }  static int omap_iommu_remove(struct platform_device *pdev)  { -	int irq; -	struct resource *res;  	struct omap_iommu *obj = platform_get_drvdata(pdev);  	iopgtable_clear_entry_all(obj); -	irq = platform_get_irq(pdev, 0); -	free_irq(irq, obj); -	res = platform_get_resource(pdev, IORESOURCE_MEM, 0); -	release_mem_region(res->start, resource_size(res)); -	iounmap(obj->regbase); -  	pm_runtime_disable(obj->dev);  	dev_info(&pdev->dev, "%s removed\n", obj->name); -	kfree(obj);  	return 0;  } +static struct of_device_id omap_iommu_of_match[] = { +	{ .compatible = "ti,omap2-iommu" }, +	{ .compatible = "ti,omap4-iommu" }, +	{ .compatible = "ti,dra7-iommu"	}, +	{}, +}; +MODULE_DEVICE_TABLE(of, omap_iommu_of_match); +  static struct platform_driver omap_iommu_driver = {  	.probe	= omap_iommu_probe,  	.remove	= omap_iommu_remove,  	.driver	= {  		.name	= "omap-iommu", +		.of_match_table = of_match_ptr(omap_iommu_of_match),  	},  }; @@ -1036,19 +1041,18 @@ static void iopte_cachep_ctor(void *iopte)  	clean_dcache_area(iopte, IOPTE_TABLE_SIZE);  } -static u32 iotlb_init_entry(struct iotlb_entry *e, u32 da, u32 pa, -				   u32 flags) +static u32 iotlb_init_entry(struct iotlb_entry *e, u32 da, u32 pa, int pgsz)  {  	memset(e, 0, sizeof(*e));  	e->da		= da;  	e->pa		= pa; -	e->valid	= 1; +	e->valid	= MMU_CAM_V;  	/* FIXME: add OMAP1 support */ -	e->pgsz		= flags & MMU_CAM_PGSZ_MASK; -	e->endian	= flags & MMU_RAM_ENDIAN_MASK; -	e->elsz		= flags & MMU_RAM_ELSZ_MASK; -	e->mixed	= flags & MMU_RAM_MIXED_MASK; +	e->pgsz		= pgsz; +	e->endian	= MMU_RAM_ENDIAN_LITTLE; +	e->elsz		= MMU_RAM_ELSZ_8; +	e->mixed	= 0;  	return iopgsz_to_bytes(e->pgsz);  } @@ -1061,9 +1065,8 @@ static int omap_iommu_map(struct iommu_domain *domain, unsigned long da,  	struct device *dev = oiommu->dev;  	struct iotlb_entry e;  	int omap_pgsz; -	u32 ret, flags; +	u32 ret; -	/* we only support mapping a single iommu page for now */  	omap_pgsz = bytes_to_iopgsz(bytes);  	if (omap_pgsz < 0) {  		dev_err(dev, "invalid size to map: %d\n", bytes); @@ -1072,9 +1075,7 @@ static int omap_iommu_map(struct iommu_domain *domain, unsigned long da,  	dev_dbg(dev, "mapping da 0x%lx to pa 0x%x size 0x%x\n", da, pa, bytes); -	flags = omap_pgsz | prot; - -	iotlb_init_entry(&e, da, pa, flags); +	iotlb_init_entry(&e, da, pa, omap_pgsz);  	ret = omap_iopgtable_store_entry(oiommu, &e);  	if (ret) @@ -1247,12 +1248,49 @@ static phys_addr_t omap_iommu_iova_to_phys(struct iommu_domain *domain,  	return ret;  } -static int omap_iommu_domain_has_cap(struct iommu_domain *domain, -				    unsigned long cap) +static int omap_iommu_add_device(struct device *dev)  { +	struct omap_iommu_arch_data *arch_data; +	struct device_node *np; + +	/* +	 * Allocate the archdata iommu structure for DT-based devices. +	 * +	 * TODO: Simplify this when removing non-DT support completely from the +	 * IOMMU users. +	 */ +	if (!dev->of_node) +		return 0; + +	np = of_parse_phandle(dev->of_node, "iommus", 0); +	if (!np) +		return 0; + +	arch_data = kzalloc(sizeof(*arch_data), GFP_KERNEL); +	if (!arch_data) { +		of_node_put(np); +		return -ENOMEM; +	} + +	arch_data->name = kstrdup(dev_name(dev), GFP_KERNEL); +	dev->archdata.iommu = arch_data; + +	of_node_put(np); +  	return 0;  } +static void omap_iommu_remove_device(struct device *dev) +{ +	struct omap_iommu_arch_data *arch_data = dev->archdata.iommu; + +	if (!dev->of_node || !arch_data) +		return; + +	kfree(arch_data->name); +	kfree(arch_data); +} +  static struct iommu_ops omap_iommu_ops = {  	.domain_init	= omap_iommu_domain_init,  	.domain_destroy	= omap_iommu_domain_destroy, @@ -1261,7 +1299,8 @@ static struct iommu_ops omap_iommu_ops = {  	.map		= omap_iommu_map,  	.unmap		= omap_iommu_unmap,  	.iova_to_phys	= omap_iommu_iova_to_phys, -	.domain_has_cap	= omap_iommu_domain_has_cap, +	.add_device	= omap_iommu_add_device, +	.remove_device	= omap_iommu_remove_device,  	.pgsize_bitmap	= OMAP_IOMMU_PGSIZES,  };  | 
