-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Uwe Kleine-König
authored and
Greg Kroah-Hartman
committed
Jul 22, 2008
1 parent
b197efe
commit 177eae0
Showing
4 changed files
with
127 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 328a14e70e7f46997cb50d4258dd93d5377f98c6 | ||
refs/heads/master: 4d80d59437247075029534adec8d69fce2cfb87a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
obj-$(CONFIG_UIO) += uio.o | ||
obj-$(CONFIG_UIO_CIF) += uio_cif.o | ||
obj-$(CONFIG_UIO_PDRV) += uio_pdrv.o | ||
obj-$(CONFIG_UIO_SMX) += uio_smx.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/* | ||
* 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> | ||
|
||
#define DRIVER_NAME "uio" | ||
|
||
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 = r->end - r->start + 1; | ||
++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); | ||
|
||
return 0; | ||
} | ||
|
||
static struct platform_driver uio_pdrv = { | ||
.probe = uio_pdrv_probe, | ||
.remove = uio_pdrv_remove, | ||
.driver = { | ||
.name = DRIVER_NAME, | ||
.owner = THIS_MODULE, | ||
}, | ||
}; | ||
|
||
static int __init uio_pdrv_init(void) | ||
{ | ||
return platform_driver_register(&uio_pdrv); | ||
} | ||
|
||
static void __exit uio_pdrv_exit(void) | ||
{ | ||
platform_driver_unregister(&uio_pdrv); | ||
} | ||
module_init(uio_pdrv_init); | ||
module_exit(uio_pdrv_exit); | ||
|
||
MODULE_AUTHOR("Uwe Kleine-Koenig"); | ||
MODULE_DESCRIPTION("Userspace I/O platform driver"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_ALIAS("platform:" DRIVER_NAME); |