Release 4.12 drivers/char/scx200_gpio.c
  
  
  
/* linux/drivers/char/scx200_gpio.c
   National Semiconductor SCx200 GPIO driver.  Allows a user space
   process to play with the GPIO pins.
   Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com> */
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/uaccess.h>
#include <asm/io.h>
#include <linux/types.h>
#include <linux/cdev.h>
#include <linux/scx200_gpio.h>
#include <linux/nsc_gpio.h>
#define DRVNAME "scx200_gpio"
static struct platform_device *pdev;
MODULE_AUTHOR("Christer Weinigel <wingel@nano-system.com>");
MODULE_DESCRIPTION("NatSemi/AMD SCx200 GPIO Pin Driver");
MODULE_LICENSE("GPL");
static int major = 0;		
/* default to dynamic major */
module_param(major, int, 0);
MODULE_PARM_DESC(major, "Major device number");
#define MAX_PINS 32		
/* 64 later, when known ok */
struct nsc_gpio_ops scx200_gpio_ops = {
	.owner		= THIS_MODULE,
	.gpio_config	= scx200_gpio_configure,
	.gpio_dump	= nsc_gpio_dump,
	.gpio_get	= scx200_gpio_get,
	.gpio_set	= scx200_gpio_set,
	.gpio_change	= scx200_gpio_change,
	.gpio_current	= scx200_gpio_current
};
EXPORT_SYMBOL_GPL(scx200_gpio_ops);
static int scx200_gpio_open(struct inode *inode, struct file *file)
{
	unsigned m = iminor(inode);
	file->private_data = &scx200_gpio_ops;
	if (m >= MAX_PINS)
		return -EINVAL;
	return nonseekable_open(inode, file);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Christer Weinigel | 33 | 67.35% | 1 | 16.67% | 
| Jim Cromie | 9 | 18.37% | 3 | 50.00% | 
| Linus Torvalds | 6 | 12.24% | 1 | 16.67% | 
| Al Viro | 1 | 2.04% | 1 | 16.67% | 
| Total | 49 | 100.00% | 6 | 100.00% | 
static int scx200_gpio_release(struct inode *inode, struct file *file)
{
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Christer Weinigel | 19 | 100.00% | 1 | 100.00% | 
| Total | 19 | 100.00% | 1 | 100.00% | 
static const struct file_operations scx200_gpio_fileops = {
	.owner   = THIS_MODULE,
	.write   = nsc_gpio_write,
	.read    = nsc_gpio_read,
	.open    = scx200_gpio_open,
	.release = scx200_gpio_release,
	.llseek  = no_llseek,
};
static struct cdev scx200_gpio_cdev;  
/* use 1 cdev for all pins */
static int __init scx200_gpio_init(void)
{
	int rc;
	dev_t devid;
	if (!scx200_gpio_present()) {
		printk(KERN_ERR DRVNAME ": no SCx200 gpio present\n");
		return -ENODEV;
	}
	/* support dev_dbg() with pdev->dev */
	pdev = platform_device_alloc(DRVNAME, 0);
	if (!pdev)
		return -ENOMEM;
	rc = platform_device_add(pdev);
	if (rc)
		goto undo_malloc;
	/* nsc_gpio uses dev_dbg(), so needs this */
	scx200_gpio_ops.dev = &pdev->dev;
	if (major) {
		devid = MKDEV(major, 0);
		rc = register_chrdev_region(devid, MAX_PINS, "scx200_gpio");
	} else {
		rc = alloc_chrdev_region(&devid, 0, MAX_PINS, "scx200_gpio");
		major = MAJOR(devid);
	}
	if (rc < 0) {
		dev_err(&pdev->dev, "SCx200 chrdev_region err: %d\n", rc);
		goto undo_platform_device_add;
	}
	cdev_init(&scx200_gpio_cdev, &scx200_gpio_fileops);
	cdev_add(&scx200_gpio_cdev, devid, MAX_PINS);
	return 0; /* succeed */
undo_platform_device_add:
	platform_device_del(pdev);
undo_malloc:
	platform_device_put(pdev);
	return rc;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Jim Cromie | 140 | 74.07% | 6 | 75.00% | 
| Christer Weinigel | 47 | 24.87% | 1 | 12.50% | 
| Ingo Molnar | 2 | 1.06% | 1 | 12.50% | 
| Total | 189 | 100.00% | 8 | 100.00% | 
static void __exit scx200_gpio_cleanup(void)
{
	cdev_del(&scx200_gpio_cdev);
	/* cdev_put(&scx200_gpio_cdev); */
	unregister_chrdev_region(MKDEV(major, 0), MAX_PINS);
	platform_device_unregister(pdev);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Jim Cromie | 19 | 57.58% | 4 | 80.00% | 
| Christer Weinigel | 14 | 42.42% | 1 | 20.00% | 
| Total | 33 | 100.00% | 5 | 100.00% | 
module_init(scx200_gpio_init);
module_exit(scx200_gpio_cleanup);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Jim Cromie | 251 | 51.97% | 12 | 54.55% | 
| Christer Weinigel | 208 | 43.06% | 1 | 4.55% | 
| Linus Torvalds | 7 | 1.45% | 2 | 9.09% | 
| Arnd Bergmann | 5 | 1.04% | 1 | 4.55% | 
| Andrew Morton | 4 | 0.83% | 1 | 4.55% | 
| Arnaldo Carvalho de Melo | 3 | 0.62% | 1 | 4.55% | 
| Ingo Molnar | 2 | 0.41% | 1 | 4.55% | 
| Arjan van de Ven | 1 | 0.21% | 1 | 4.55% | 
| Al Viro | 1 | 0.21% | 1 | 4.55% | 
| Chris Boot | 1 | 0.21% | 1 | 4.55% | 
| Total | 483 | 100.00% | 22 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.