]> rtime.felk.cvut.cz Git - zynq/linux.git/commitdiff
uio: Add two platform uio drivers to one
authorMichal Simek <michal.simek@xilinx.com>
Mon, 4 Mar 2013 15:59:36 +0000 (16:59 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Mon, 11 Mar 2013 13:28:10 +0000 (14:28 +0100)
- Remove Userspace I/O platform driver without IRQ support
- Add support for uio drivers without IRQ
- Remove code duplication from OF binding

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
drivers/uio/Kconfig
drivers/uio/Makefile
drivers/uio/uio_pdrv.c [deleted file]
drivers/uio/uio_pdrv_genirq.c

index 6f3ea9bbc818b3fc235ace278187341417dad32a..bea41aa1bc1908cb14421e15489aaf4454c947e5 100644 (file)
@@ -24,13 +24,6 @@ config UIO_CIF
          To compile this driver as a module, choose M here: the module
          will be called uio_cif.
 
-config UIO_PDRV
-       tristate "Userspace I/O platform driver"
-       help
-         Generic platform driver for Userspace I/O devices.
-
-         If you don't know what to do here, say N.
-
 config UIO_PDRV_GENIRQ
        tristate "Userspace I/O platform driver with generic IRQ handling"
        help
index d4dd9a5552f8ceb7c4c02acaeaff8e4299c05398..e6025e471a419151690bf1ef754d36208a3e1b52 100644 (file)
@@ -1,6 +1,5 @@
 obj-$(CONFIG_UIO)      += uio.o
 obj-$(CONFIG_UIO_CIF)  += uio_cif.o
-obj-$(CONFIG_UIO_PDRV) += uio_pdrv.o
 obj-$(CONFIG_UIO_PDRV_GENIRQ)  += uio_pdrv_genirq.o
 obj-$(CONFIG_UIO_AEC)  += uio_aec.o
 obj-$(CONFIG_UIO_SERCOS3)      += uio_sercos3.o
diff --git a/drivers/uio/uio_pdrv.c b/drivers/uio/uio_pdrv.c
deleted file mode 100644 (file)
index 72d3646..0000000
+++ /dev/null
@@ -1,112 +0,0 @@
-/*
- * drivers/uio/uio_pdrv.c
- *
- * Copyright (C) 2008 by Digi International Inc.
- * All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published by
- * the Free Software Foundation.
- */
-#include <linux/platform_device.h>
-#include <linux/uio_driver.h>
-#include <linux/stringify.h>
-#include <linux/module.h>
-#include <linux/slab.h>
-
-#define DRIVER_NAME "uio_pdrv"
-
-struct uio_platdata {
-       struct uio_info *uioinfo;
-};
-
-static int uio_pdrv_probe(struct platform_device *pdev)
-{
-       struct uio_info *uioinfo = pdev->dev.platform_data;
-       struct uio_platdata *pdata;
-       struct uio_mem *uiomem;
-       int ret = -ENODEV;
-       int i;
-
-       if (!uioinfo || !uioinfo->name || !uioinfo->version) {
-               dev_dbg(&pdev->dev, "%s: err_uioinfo\n", __func__);
-               goto err_uioinfo;
-       }
-
-       pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
-       if (!pdata) {
-               ret = -ENOMEM;
-               dev_dbg(&pdev->dev, "%s: err_alloc_pdata\n", __func__);
-               goto err_alloc_pdata;
-       }
-
-       pdata->uioinfo = uioinfo;
-
-       uiomem = &uioinfo->mem[0];
-
-       for (i = 0; i < pdev->num_resources; ++i) {
-               struct resource *r = &pdev->resource[i];
-
-               if (r->flags != IORESOURCE_MEM)
-                       continue;
-
-               if (uiomem >= &uioinfo->mem[MAX_UIO_MAPS]) {
-                       dev_warn(&pdev->dev, "device has more than "
-                                       __stringify(MAX_UIO_MAPS)
-                                       " I/O memory resources.\n");
-                       break;
-               }
-
-               uiomem->memtype = UIO_MEM_PHYS;
-               uiomem->addr = r->start;
-               uiomem->size = resource_size(r);
-               ++uiomem;
-       }
-
-       while (uiomem < &uioinfo->mem[MAX_UIO_MAPS]) {
-               uiomem->size = 0;
-               ++uiomem;
-       }
-
-       pdata->uioinfo->priv = pdata;
-
-       ret = uio_register_device(&pdev->dev, pdata->uioinfo);
-
-       if (ret) {
-               kfree(pdata);
-err_alloc_pdata:
-err_uioinfo:
-               return ret;
-       }
-
-       platform_set_drvdata(pdev, pdata);
-
-       return 0;
-}
-
-static int uio_pdrv_remove(struct platform_device *pdev)
-{
-       struct uio_platdata *pdata = platform_get_drvdata(pdev);
-
-       uio_unregister_device(pdata->uioinfo);
-
-       kfree(pdata);
-
-       return 0;
-}
-
-static struct platform_driver uio_pdrv = {
-       .probe = uio_pdrv_probe,
-       .remove = uio_pdrv_remove,
-       .driver = {
-               .name = DRIVER_NAME,
-               .owner = THIS_MODULE,
-       },
-};
-
-module_platform_driver(uio_pdrv);
-
-MODULE_AUTHOR("Uwe Kleine-Koenig");
-MODULE_DESCRIPTION("Userspace I/O platform driver");
-MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:" DRIVER_NAME);
index 1f5ec286f67132e09c9893918f2ebca7b0239bf6..e53a5baf72de700760afecef0f128a5d6ba987c5 100644 (file)
@@ -103,8 +103,6 @@ static int uio_pdrv_genirq_probe(struct platform_device *pdev)
        int i;
 
        if (!uioinfo) {
-               int irq;
-
                /* alloc uioinfo for one device */
                uioinfo = kzalloc(sizeof(*uioinfo), GFP_KERNEL);
                if (!uioinfo) {
@@ -114,13 +112,6 @@ static int uio_pdrv_genirq_probe(struct platform_device *pdev)
                }
                uioinfo->name = pdev->dev.of_node->name;
                uioinfo->version = "devicetree";
-
-               /* Multiple IRQs are not supported */
-               irq = platform_get_irq(pdev, 0);
-               if (irq == -ENXIO)
-                       uioinfo->irq = UIO_IRQ_NONE;
-               else
-                       uioinfo->irq = irq;
        }
 
        if (!uioinfo || !uioinfo->name || !uioinfo->version) {
@@ -146,14 +137,6 @@ static int uio_pdrv_genirq_probe(struct platform_device *pdev)
        priv->flags = 0; /* interrupt is enabled to begin with */
        priv->pdev = pdev;
 
-       if (!uioinfo->irq) {
-               ret = platform_get_irq(pdev, 0);
-               if (ret < 0) {
-                       dev_err(&pdev->dev, "failed to get IRQ\n");
-                       goto bad0;
-               }
-               uioinfo->irq = ret;
-       }
        uiomem = &uioinfo->mem[0];
 
        for (i = 0; i < pdev->num_resources; ++i) {
@@ -189,10 +172,15 @@ static int uio_pdrv_genirq_probe(struct platform_device *pdev)
         * Interrupt sharing is not supported.
         */
 
-       uioinfo->handler = uio_pdrv_genirq_handler;
-       uioinfo->irqcontrol = uio_pdrv_genirq_irqcontrol;
-       uioinfo->open = uio_pdrv_genirq_open;
-       uioinfo->release = uio_pdrv_genirq_release;
+       ret = platform_get_irq(pdev, 0);
+       if (ret >= 0) {
+               uioinfo->irq = ret;
+               uioinfo->handler = uio_pdrv_genirq_handler;
+               uioinfo->irqcontrol = uio_pdrv_genirq_irqcontrol;
+               uioinfo->open = uio_pdrv_genirq_open;
+               uioinfo->release = uio_pdrv_genirq_release;
+       }
+
        uioinfo->priv = priv;
 
        /* Enable Runtime PM for this device: