diff options
| author | Alessandro Rubini <rubini@gnudd.com> | 2013-06-18 17:48:07 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-18 18:42:15 -0400 |
| commit | 4debfe409b6e550032bfef9733e9f6f7c5613617 (patch) | |
| tree | c647e07600d964c6399e20f04c68ea8467c7b328 /drivers/fmc | |
| parent | 6007b1bd0f752a5c022f7944c65fb96c39d6db3d (diff) | |
FMC: add a char-device mezzanine driver
This driver exports the memory area associated with the mezzanine card
as a misc device, so users can access registers.
Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
Acked-by: Juan David Gonzalez Cobas <dcobas@cern.ch>
Acked-by: Emilio G. Cota <cota@braap.org>
Acked-by: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/fmc')
| -rw-r--r-- | drivers/fmc/Kconfig | 8 | ||||
| -rw-r--r-- | drivers/fmc/Makefile | 1 | ||||
| -rw-r--r-- | drivers/fmc/fmc-chardev.c | 197 |
3 files changed, 206 insertions, 0 deletions
diff --git a/drivers/fmc/Kconfig b/drivers/fmc/Kconfig index 2bb1953c9681..c01cf45bc3d8 100644 --- a/drivers/fmc/Kconfig +++ b/drivers/fmc/Kconfig | |||
| @@ -40,4 +40,12 @@ config FMC_WRITE_EEPROM | |||
| 40 | its binary and the function carrier->reprogram to actually do it. | 40 | its binary and the function carrier->reprogram to actually do it. |
| 41 | It is useful when the mezzanines are produced. | 41 | It is useful when the mezzanines are produced. |
| 42 | 42 | ||
| 43 | config FMC_CHARDEV | ||
| 44 | tristate "FMC mezzanine driver that registers a char device" | ||
| 45 | help | ||
| 46 | This driver matches every mezzanine device and allows user | ||
| 47 | space to read and write registers using a char device. It | ||
| 48 | can be used to write user-space drivers, or just get | ||
| 49 | aquainted with a mezzanine before writing its specific driver. | ||
| 50 | |||
| 43 | endif # FMC | 51 | endif # FMC |
diff --git a/drivers/fmc/Makefile b/drivers/fmc/Makefile index 13701fa6db79..b9452919739f 100644 --- a/drivers/fmc/Makefile +++ b/drivers/fmc/Makefile | |||
| @@ -10,3 +10,4 @@ fmc-y += fmc-dump.o | |||
| 10 | obj-$(CONFIG_FMC_FAKEDEV) += fmc-fakedev.o | 10 | obj-$(CONFIG_FMC_FAKEDEV) += fmc-fakedev.o |
| 11 | obj-$(CONFIG_FMC_TRIVIAL) += fmc-trivial.o | 11 | obj-$(CONFIG_FMC_TRIVIAL) += fmc-trivial.o |
| 12 | obj-$(CONFIG_FMC_WRITE_EEPROM) += fmc-write-eeprom.o | 12 | obj-$(CONFIG_FMC_WRITE_EEPROM) += fmc-write-eeprom.o |
| 13 | obj-$(CONFIG_FMC_CHARDEV) += fmc-chardev.o | ||
diff --git a/drivers/fmc/fmc-chardev.c b/drivers/fmc/fmc-chardev.c new file mode 100644 index 000000000000..b0710393ede6 --- /dev/null +++ b/drivers/fmc/fmc-chardev.c | |||
| @@ -0,0 +1,197 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2012 CERN (www.cern.ch) | ||
| 3 | * Author: Alessandro Rubini <rubini@gnudd.com> | ||
| 4 | * | ||
| 5 | * Released according to the GNU GPL, version 2 or any later version. | ||
| 6 | * | ||
| 7 | * This work is part of the White Rabbit project, a research effort led | ||
| 8 | * by CERN, the European Institute for Nuclear Research. | ||
| 9 | */ | ||
| 10 | #include <linux/module.h> | ||
| 11 | #include <linux/init.h> | ||
| 12 | #include <linux/list.h> | ||
| 13 | #include <linux/slab.h> | ||
| 14 | #include <linux/fs.h> | ||
| 15 | #include <linux/miscdevice.h> | ||
| 16 | #include <linux/spinlock.h> | ||
| 17 | #include <linux/fmc.h> | ||
| 18 | #include <linux/uaccess.h> | ||
| 19 | |||
| 20 | static LIST_HEAD(fc_devices); | ||
| 21 | static DEFINE_SPINLOCK(fc_lock); | ||
| 22 | |||
| 23 | struct fc_instance { | ||
| 24 | struct list_head list; | ||
| 25 | struct fmc_device *fmc; | ||
| 26 | struct miscdevice misc; | ||
| 27 | }; | ||
| 28 | |||
| 29 | /* at open time, we must identify our device */ | ||
| 30 | static int fc_open(struct inode *ino, struct file *f) | ||
| 31 | { | ||
| 32 | struct fmc_device *fmc; | ||
| 33 | struct fc_instance *fc; | ||
| 34 | int minor = iminor(ino); | ||
| 35 | |||
| 36 | list_for_each_entry(fc, &fc_devices, list) | ||
| 37 | if (fc->misc.minor == minor) | ||
| 38 | break; | ||
| 39 | if (fc->misc.minor != minor) | ||
| 40 | return -ENODEV; | ||
| 41 | fmc = fc->fmc; | ||
| 42 | if (try_module_get(fmc->owner) == 0) | ||
| 43 | return -ENODEV; | ||
| 44 | |||
| 45 | f->private_data = fmc; | ||
| 46 | return 0; | ||
| 47 | } | ||
| 48 | |||
| 49 | static int fc_release(struct inode *ino, struct file *f) | ||
| 50 | { | ||
| 51 | struct fmc_device *fmc = f->private_data; | ||
| 52 | module_put(fmc->owner); | ||
| 53 | return 0; | ||
| 54 | } | ||
| 55 | |||
| 56 | /* read and write are simple after the default llseek has been used */ | ||
| 57 | static ssize_t fc_read(struct file *f, char __user *buf, size_t count, | ||
| 58 | loff_t *offp) | ||
| 59 | { | ||
| 60 | struct fmc_device *fmc = f->private_data; | ||
| 61 | unsigned long addr; | ||
| 62 | uint32_t val; | ||
| 63 | |||
| 64 | if (count < sizeof(val)) | ||
| 65 | return -EINVAL; | ||
| 66 | count = sizeof(val); | ||
| 67 | |||
| 68 | addr = *offp; | ||
| 69 | if (addr > fmc->memlen) | ||
| 70 | return -ESPIPE; /* Illegal seek */ | ||
| 71 | val = fmc_readl(fmc, addr); | ||
| 72 | if (copy_to_user(buf, &val, count)) | ||
| 73 | return -EFAULT; | ||
| 74 | *offp += count; | ||
| 75 | return count; | ||
| 76 | } | ||
| 77 | |||
| 78 | static ssize_t fc_write(struct file *f, const char __user *buf, size_t count, | ||
| 79 | loff_t *offp) | ||
| 80 | { | ||
| 81 | struct fmc_device *fmc = f->private_data; | ||
| 82 | unsigned long addr; | ||
| 83 | uint32_t val; | ||
| 84 | |||
| 85 | if (count < sizeof(val)) | ||
| 86 | return -EINVAL; | ||
| 87 | count = sizeof(val); | ||
| 88 | |||
| 89 | addr = *offp; | ||
| 90 | if (addr > fmc->memlen) | ||
| 91 | return -ESPIPE; /* Illegal seek */ | ||
| 92 | if (copy_from_user(&val, buf, count)) | ||
| 93 | return -EFAULT; | ||
| 94 | fmc_writel(fmc, val, addr); | ||
| 95 | *offp += count; | ||
| 96 | return count; | ||
| 97 | } | ||
| 98 | |||
| 99 | static const struct file_operations fc_fops = { | ||
| 100 | .owner = THIS_MODULE, | ||
| 101 | .open = fc_open, | ||
| 102 | .release = fc_release, | ||
| 103 | .llseek = generic_file_llseek, | ||
| 104 | .read = fc_read, | ||
| 105 | .write = fc_write, | ||
| 106 | }; | ||
| 107 | |||
| 108 | |||
| 109 | /* Device part .. */ | ||
| 110 | static int fc_probe(struct fmc_device *fmc); | ||
| 111 | static int fc_remove(struct fmc_device *fmc); | ||
| 112 | |||
| 113 | static struct fmc_driver fc_drv = { | ||
| 114 | .version = FMC_VERSION, | ||
| 115 | .driver.name = KBUILD_MODNAME, | ||
| 116 | .probe = fc_probe, | ||
| 117 | .remove = fc_remove, | ||
| 118 | /* no table: we want to match everything */ | ||
| 119 | }; | ||
| 120 | |||
| 121 | /* We accept the generic busid parameter */ | ||
| 122 | FMC_PARAM_BUSID(fc_drv); | ||
| 123 | |||
| 124 | /* probe and remove must allocate and release a misc device */ | ||
| 125 | static int fc_probe(struct fmc_device *fmc) | ||
| 126 | { | ||
| 127 | int ret; | ||
| 128 | int index = 0; | ||
| 129 | |||
| 130 | struct fc_instance *fc; | ||
| 131 | |||
| 132 | if (fmc->op->validate) | ||
| 133 | index = fmc->op->validate(fmc, &fc_drv); | ||
| 134 | if (index < 0) | ||
| 135 | return -EINVAL; /* not our device: invalid */ | ||
| 136 | |||
| 137 | /* Create a char device: we want to create it anew */ | ||
| 138 | fc = kzalloc(sizeof(*fc), GFP_KERNEL); | ||
| 139 | fc->fmc = fmc; | ||
| 140 | fc->misc.minor = MISC_DYNAMIC_MINOR; | ||
| 141 | fc->misc.fops = &fc_fops; | ||
| 142 | fc->misc.name = kstrdup(dev_name(&fmc->dev), GFP_KERNEL); | ||
| 143 | |||
| 144 | spin_lock(&fc_lock); | ||
| 145 | ret = misc_register(&fc->misc); | ||
| 146 | if (ret < 0) { | ||
| 147 | kfree(fc->misc.name); | ||
| 148 | kfree(fc); | ||
| 149 | } else { | ||
| 150 | list_add(&fc->list, &fc_devices); | ||
| 151 | } | ||
| 152 | spin_unlock(&fc_lock); | ||
| 153 | dev_info(&fc->fmc->dev, "Created misc device \"%s\"\n", | ||
| 154 | fc->misc.name); | ||
| 155 | return ret; | ||
| 156 | } | ||
| 157 | |||
| 158 | static int fc_remove(struct fmc_device *fmc) | ||
| 159 | { | ||
| 160 | struct fc_instance *fc; | ||
| 161 | |||
| 162 | list_for_each_entry(fc, &fc_devices, list) | ||
| 163 | if (fc->fmc == fmc) | ||
| 164 | break; | ||
| 165 | if (fc->fmc != fmc) { | ||
| 166 | dev_err(&fmc->dev, "remove called but not found\n"); | ||
| 167 | return -ENODEV; | ||
| 168 | } | ||
| 169 | |||
| 170 | spin_lock(&fc_lock); | ||
| 171 | list_del(&fc->list); | ||
