2 * Copyright (C) 2012 CERN (www.cern.ch)
3 * Author: Alessandro Rubini <rubini@gnudd.com>
5 * Released according to the GNU GPL, version 2 or any later version.
7 * This work is part of the White Rabbit project, a research effort led
8 * by CERN, the European Institute for Nuclear Research.
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/slab.h>
13 #include <linux/init.h>
14 #include <linux/device.h>
15 #include <linux/fmc.h>
17 static int fmc_check_version(unsigned long version, const char *name)
19 if (__FMC_MAJOR(version) != FMC_MAJOR) {
20 pr_err("%s: \"%s\" has wrong major (has %li, expected %i)\n",
21 __func__, name, __FMC_MAJOR(version), FMC_MAJOR);
25 if (__FMC_MINOR(version) != FMC_MINOR)
26 pr_info("%s: \"%s\" has wrong minor (has %li, expected %i)\n",
27 __func__, name, __FMC_MINOR(version), FMC_MINOR);
31 static int fmc_uevent(struct device *dev, struct kobj_uevent_env *env)
33 /* struct fmc_device *fdev = to_fmc_device(dev); */
35 /* FIXME: The MODALIAS */
36 add_uevent_var(env, "MODALIAS=%s", "fmc");
40 static int fmc_probe(struct device *dev)
42 struct fmc_driver *fdrv = to_fmc_driver(dev->driver);
43 struct fmc_device *fdev = to_fmc_device(dev);
45 return fdrv->probe(fdev);
48 static int fmc_remove(struct device *dev)
50 struct fmc_driver *fdrv = to_fmc_driver(dev->driver);
51 struct fmc_device *fdev = to_fmc_device(dev);
53 return fdrv->remove(fdev);
56 static void fmc_shutdown(struct device *dev)
58 /* not implemented but mandatory */
61 static struct bus_type fmc_bus_type = {
67 .shutdown = fmc_shutdown,
70 static void fmc_release(struct device *dev)
72 struct fmc_device *fmc = container_of(dev, struct fmc_device, dev);
78 * The eeprom is exported in sysfs, through a binary attribute
81 static ssize_t fmc_read_eeprom(struct file *file, struct kobject *kobj,
82 struct bin_attribute *bin_attr,
83 char *buf, loff_t off, size_t count)
86 struct fmc_device *fmc;
89 dev = container_of(kobj, struct device, kobj);
90 fmc = container_of(dev, struct fmc_device, dev);
91 eelen = fmc->eeprom_len;
96 if (off + count > eelen)
98 memcpy(buf, fmc->eeprom + off, count);
102 static struct bin_attribute fmc_eeprom_attr = {
103 .attr = { .name = "eeprom", .mode = S_IRUGO, },
104 .size = 8192, /* more or less standard */
105 .read = fmc_read_eeprom,
109 * Functions for client modules follow
112 int fmc_driver_register(struct fmc_driver *drv)
114 if (fmc_check_version(drv->version, drv->driver.name))
116 drv->driver.bus = &fmc_bus_type;
117 return driver_register(&drv->driver);
119 EXPORT_SYMBOL(fmc_driver_register);
121 void fmc_driver_unregister(struct fmc_driver *drv)
123 driver_unregister(&drv->driver);
125 EXPORT_SYMBOL(fmc_driver_unregister);
128 * When a device set is registered, all eeproms must be read
129 * and all FRUs must be parsed
131 int fmc_device_register_n(struct fmc_device **devs, int n)
133 struct fmc_device *fmc, **devarray;
140 /* Check the version of the first data structure (function prints) */
141 if (fmc_check_version(devs[0]->version, devs[0]->carrier_name))
144 devarray = kmemdup(devs, n * sizeof(*devs), GFP_KERNEL);
148 /* Make all other checks before continuing, for all devices */
149 for (i = 0; i < n; i++) {
152 pr_err("%s: device nr. %i has no hwdev pointer\n",
157 if (fmc->flags == FMC_DEVICE_NO_MEZZANINE) {
158 dev_info(fmc->hwdev, "absent mezzanine in slot %d\n",
163 dev_err(fmc->hwdev, "no eeprom provided for slot %i\n",
167 if (!fmc->eeprom_addr) {
168 dev_err(fmc->hwdev, "no eeprom_addr for slot %i\n",
172 if (!fmc->carrier_name || !fmc->carrier_data ||
175 "deivce nr %i: carrier name, "
176 "data or dev_id not set\n", i);
188 /* Validation is ok. Now init and register the devices */
189 for (i = 0; i < n; i++) {
192 if (fmc->flags == FMC_DEVICE_NO_MEZZANINE)
193 continue; /* dev_info already done above */
195 fmc->nr_slots = n; /* each slot must know how many are there */
196 fmc->devarray = devarray;
198 device_initialize(&fmc->dev);
199 fmc->dev.release = fmc_release;
200 fmc->dev.parent = fmc->hwdev;
202 /* Fill the identification stuff (may fail) */
203 fmc_fill_id_info(fmc);
205 fmc->dev.bus = &fmc_bus_type;
207 /* Name from mezzanine info or carrier info. Or 0,1,2.. */
208 device_id = fmc->device_id;
209 if (!fmc->mezzanine_name)
210 dev_set_name(&fmc->dev, "fmc-%04x", device_id);
212 dev_set_name(&fmc->dev, "%s-%04x", fmc->mezzanine_name,
214 ret = device_add(&fmc->dev);
216 dev_err(fmc->hwdev, "Slot %i: Failed in registering "
217 "\"%s\"\n", fmc->slot_id, fmc->dev.kobj.name);
220 ret = sysfs_create_bin_file(&fmc->dev.kobj, &fmc_eeprom_attr);
222 dev_err(&fmc->dev, "Failed in registering eeprom\n");
225 /* This device went well, give information to the user */
226 fmc_dump_eeprom(fmc);
232 device_del(&fmc->dev);
234 fmc_free_id_info(fmc);
235 put_device(&fmc->dev);
238 for (i--; i >= 0; i--) {
239 sysfs_remove_bin_file(&devs[i]->dev.kobj, &fmc_eeprom_attr);
240 device_del(&devs[i]->dev);
241 fmc_free_id_info(devs[i]);
242 put_device(&devs[i]->dev);
247 EXPORT_SYMBOL(fmc_device_register_n);
249 int fmc_device_register(struct fmc_device *fmc)
251 return fmc_device_register_n(&fmc, 1);
253 EXPORT_SYMBOL(fmc_device_register);
255 void fmc_device_unregister_n(struct fmc_device **devs, int n)
262 /* Free devarray first, not used by the later loop */
263 kfree(devs[0]->devarray);
265 for (i = 0; i < n; i++) {
266 if (devs[i]->flags == FMC_DEVICE_NO_MEZZANINE)
268 sysfs_remove_bin_file(&devs[i]->dev.kobj, &fmc_eeprom_attr);
269 device_del(&devs[i]->dev);
270 fmc_free_id_info(devs[i]);
271 put_device(&devs[i]->dev);
274 EXPORT_SYMBOL(fmc_device_unregister_n);
276 void fmc_device_unregister(struct fmc_device *fmc)
278 fmc_device_unregister_n(&fmc, 1);
280 EXPORT_SYMBOL(fmc_device_unregister);
282 /* Init and exit are trivial */
283 static int fmc_init(void)
285 return bus_register(&fmc_bus_type);
288 static void fmc_exit(void)
290 bus_unregister(&fmc_bus_type);
293 module_init(fmc_init);
294 module_exit(fmc_exit);
296 MODULE_LICENSE("GPL");