GNU Linux-libre 4.19.281-gnu1
[releases.git] / drivers / i2c / i2c-dev.c
1 /*
2     i2c-dev.c - i2c-bus driver, char device interface
3
4     Copyright (C) 1995-97 Simon G. Vogl
5     Copyright (C) 1998-99 Frodo Looijaard <frodol@dds.nl>
6     Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17 */
18
19 /* Note that this is a complete rewrite of Simon Vogl's i2c-dev module.
20    But I have used so much of his original code and ideas that it seems
21    only fair to recognize him as co-author -- Frodo */
22
23 /* The I2C_RDWR ioctl code is written by Kolja Waschk <waschk@telos.de> */
24
25 #include <linux/cdev.h>
26 #include <linux/device.h>
27 #include <linux/fs.h>
28 #include <linux/i2c-dev.h>
29 #include <linux/i2c.h>
30 #include <linux/init.h>
31 #include <linux/jiffies.h>
32 #include <linux/kernel.h>
33 #include <linux/list.h>
34 #include <linux/module.h>
35 #include <linux/notifier.h>
36 #include <linux/slab.h>
37 #include <linux/uaccess.h>
38 #include <linux/compat.h>
39
40 /*
41  * An i2c_dev represents an i2c_adapter ... an I2C or SMBus master, not a
42  * slave (i2c_client) with which messages will be exchanged.  It's coupled
43  * with a character special file which is accessed by user mode drivers.
44  *
45  * The list of i2c_dev structures is parallel to the i2c_adapter lists
46  * maintained by the driver model, and is updated using bus notifications.
47  */
48 struct i2c_dev {
49         struct list_head list;
50         struct i2c_adapter *adap;
51         struct device dev;
52         struct cdev cdev;
53 };
54
55 #define I2C_MINORS      MINORMASK
56 static LIST_HEAD(i2c_dev_list);
57 static DEFINE_SPINLOCK(i2c_dev_list_lock);
58
59 static struct i2c_dev *i2c_dev_get_by_minor(unsigned index)
60 {
61         struct i2c_dev *i2c_dev;
62
63         spin_lock(&i2c_dev_list_lock);
64         list_for_each_entry(i2c_dev, &i2c_dev_list, list) {
65                 if (i2c_dev->adap->nr == index)
66                         goto found;
67         }
68         i2c_dev = NULL;
69 found:
70         spin_unlock(&i2c_dev_list_lock);
71         return i2c_dev;
72 }
73
74 static struct i2c_dev *get_free_i2c_dev(struct i2c_adapter *adap)
75 {
76         struct i2c_dev *i2c_dev;
77
78         if (adap->nr >= I2C_MINORS) {
79                 printk(KERN_ERR "i2c-dev: Out of device minors (%d)\n",
80                        adap->nr);
81                 return ERR_PTR(-ENODEV);
82         }
83
84         i2c_dev = kzalloc(sizeof(*i2c_dev), GFP_KERNEL);
85         if (!i2c_dev)
86                 return ERR_PTR(-ENOMEM);
87         i2c_dev->adap = adap;
88
89         spin_lock(&i2c_dev_list_lock);
90         list_add_tail(&i2c_dev->list, &i2c_dev_list);
91         spin_unlock(&i2c_dev_list_lock);
92         return i2c_dev;
93 }
94
95 static void put_i2c_dev(struct i2c_dev *i2c_dev, bool del_cdev)
96 {
97         spin_lock(&i2c_dev_list_lock);
98         list_del(&i2c_dev->list);
99         spin_unlock(&i2c_dev_list_lock);
100         if (del_cdev)
101                 cdev_device_del(&i2c_dev->cdev, &i2c_dev->dev);
102         put_device(&i2c_dev->dev);
103 }
104
105 static ssize_t name_show(struct device *dev,
106                          struct device_attribute *attr, char *buf)
107 {
108         struct i2c_dev *i2c_dev = i2c_dev_get_by_minor(MINOR(dev->devt));
109
110         if (!i2c_dev)
111                 return -ENODEV;
112         return sprintf(buf, "%s\n", i2c_dev->adap->name);
113 }
114 static DEVICE_ATTR_RO(name);
115
116 static struct attribute *i2c_attrs[] = {
117         &dev_attr_name.attr,
118         NULL,
119 };
120 ATTRIBUTE_GROUPS(i2c);
121
122 /* ------------------------------------------------------------------------- */
123
124 /*
125  * After opening an instance of this character special file, a file
126  * descriptor starts out associated only with an i2c_adapter (and bus).
127  *
128  * Using the I2C_RDWR ioctl(), you can then *immediately* issue i2c_msg
129  * traffic to any devices on the bus used by that adapter.  That's because
130  * the i2c_msg vectors embed all the addressing information they need, and
131  * are submitted directly to an i2c_adapter.  However, SMBus-only adapters
132  * don't support that interface.
133  *
134  * To use read()/write() system calls on that file descriptor, or to use
135  * SMBus interfaces (and work with SMBus-only hosts!), you must first issue
136  * an I2C_SLAVE (or I2C_SLAVE_FORCE) ioctl.  That configures an anonymous
137  * (never registered) i2c_client so it holds the addressing information
138  * needed by those system calls and by this SMBus interface.
139  */
140
141 static ssize_t i2cdev_read(struct file *file, char __user *buf, size_t count,
142                 loff_t *offset)
143 {
144         char *tmp;
145         int ret;
146
147         struct i2c_client *client = file->private_data;
148
149         if (count > 8192)
150                 count = 8192;
151
152         tmp = kzalloc(count, GFP_KERNEL);
153         if (tmp == NULL)
154                 return -ENOMEM;
155
156         pr_debug("i2c-dev: i2c-%d reading %zu bytes.\n",
157                 iminor(file_inode(file)), count);
158
159         ret = i2c_master_recv(client, tmp, count);
160         if (ret >= 0)
161                 if (copy_to_user(buf, tmp, ret))
162                         ret = -EFAULT;
163         kfree(tmp);
164         return ret;
165 }
166
167 static ssize_t i2cdev_write(struct file *file, const char __user *buf,
168                 size_t count, loff_t *offset)
169 {
170         int ret;
171         char *tmp;
172         struct i2c_client *client = file->private_data;
173
174         if (count > 8192)
175                 count = 8192;
176
177         tmp = memdup_user(buf, count);
178         if (IS_ERR(tmp))
179                 return PTR_ERR(tmp);
180
181         pr_debug("i2c-dev: i2c-%d writing %zu bytes.\n",
182                 iminor(file_inode(file)), count);
183
184         ret = i2c_master_send(client, tmp, count);
185         kfree(tmp);
186         return ret;
187 }
188
189 static int i2cdev_check(struct device *dev, void *addrp)
190 {
191         struct i2c_client *client = i2c_verify_client(dev);
192
193         if (!client || client->addr != *(unsigned int *)addrp)
194                 return 0;
195
196         return dev->driver ? -EBUSY : 0;
197 }
198
199 /* walk up mux tree */
200 static int i2cdev_check_mux_parents(struct i2c_adapter *adapter, int addr)
201 {
202         struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
203         int result;
204
205         result = device_for_each_child(&adapter->dev, &addr, i2cdev_check);
206         if (!result && parent)
207                 result = i2cdev_check_mux_parents(parent, addr);
208
209         return result;
210 }
211
212 /* recurse down mux tree */
213 static int i2cdev_check_mux_children(struct device *dev, void *addrp)
214 {
215         int result;
216
217         if (dev->type == &i2c_adapter_type)
218                 result = device_for_each_child(dev, addrp,
219                                                 i2cdev_check_mux_children);
220         else
221                 result = i2cdev_check(dev, addrp);
222
223         return result;
224 }
225
226 /* This address checking function differs from the one in i2c-core
227    in that it considers an address with a registered device, but no
228    driver bound to it, as NOT busy. */
229 static int i2cdev_check_addr(struct i2c_adapter *adapter, unsigned int addr)
230 {
231         struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
232         int result = 0;
233
234         if (parent)
235                 result = i2cdev_check_mux_parents(parent, addr);
236
237         if (!result)
238                 result = device_for_each_child(&adapter->dev, &addr,
239                                                 i2cdev_check_mux_children);
240
241         return result;
242 }
243
244 static noinline int i2cdev_ioctl_rdwr(struct i2c_client *client,
245                 unsigned nmsgs, struct i2c_msg *msgs)
246 {
247         u8 __user **data_ptrs;
248         int i, res;
249
250         data_ptrs = kmalloc_array(nmsgs, sizeof(u8 __user *), GFP_KERNEL);
251         if (data_ptrs == NULL) {
252                 kfree(msgs);
253                 return -ENOMEM;
254         }
255
256         res = 0;
257         for (i = 0; i < nmsgs; i++) {
258                 /* Limit the size of the message to a sane amount */
259                 if (msgs[i].len > 8192) {
260                         res = -EINVAL;
261                         break;
262                 }
263
264                 data_ptrs[i] = (u8 __user *)msgs[i].buf;
265                 msgs[i].buf = memdup_user(data_ptrs[i], msgs[i].len);
266                 if (IS_ERR(msgs[i].buf)) {
267                         res = PTR_ERR(msgs[i].buf);
268                         break;
269                 }
270                 /* memdup_user allocates with GFP_KERNEL, so DMA is ok */
271                 msgs[i].flags |= I2C_M_DMA_SAFE;
272
273                 /*
274                  * If the message length is received from the slave (similar
275                  * to SMBus block read), we must ensure that the buffer will
276                  * be large enough to cope with a message length of
277                  * I2C_SMBUS_BLOCK_MAX as this is the maximum underlying bus
278                  * drivers allow. The first byte in the buffer must be
279                  * pre-filled with the number of extra bytes, which must be
280                  * at least one to hold the message length, but can be
281                  * greater (for example to account for a checksum byte at
282                  * the end of the message.)
283                  */
284                 if (msgs[i].flags & I2C_M_RECV_LEN) {
285                         if (!(msgs[i].flags & I2C_M_RD) ||
286                             msgs[i].len < 1 || msgs[i].buf[0] < 1 ||
287                             msgs[i].len < msgs[i].buf[0] +
288                                              I2C_SMBUS_BLOCK_MAX) {
289                                 i++;
290                                 res = -EINVAL;
291                                 break;
292                         }
293
294                         msgs[i].len = msgs[i].buf[0];
295                 }
296         }
297         if (res < 0) {
298                 int j;
299                 for (j = 0; j < i; ++j)
300                         kfree(msgs[j].buf);
301                 kfree(data_ptrs);
302                 kfree(msgs);
303                 return res;
304         }
305
306         res = i2c_transfer(client->adapter, msgs, nmsgs);
307         while (i-- > 0) {
308                 if (res >= 0 && (msgs[i].flags & I2C_M_RD)) {
309                         if (copy_to_user(data_ptrs[i], msgs[i].buf,
310                                          msgs[i].len))
311                                 res = -EFAULT;
312                 }
313                 kfree(msgs[i].buf);
314         }
315         kfree(data_ptrs);
316         kfree(msgs);
317         return res;
318 }
319
320 static noinline int i2cdev_ioctl_smbus(struct i2c_client *client,
321                 u8 read_write, u8 command, u32 size,
322                 union i2c_smbus_data __user *data)
323 {
324         union i2c_smbus_data temp = {};
325         int datasize, res;
326
327         if ((size != I2C_SMBUS_BYTE) &&
328             (size != I2C_SMBUS_QUICK) &&
329             (size != I2C_SMBUS_BYTE_DATA) &&
330             (size != I2C_SMBUS_WORD_DATA) &&
331             (size != I2C_SMBUS_PROC_CALL) &&
332             (size != I2C_SMBUS_BLOCK_DATA) &&
333             (size != I2C_SMBUS_I2C_BLOCK_BROKEN) &&
334             (size != I2C_SMBUS_I2C_BLOCK_DATA) &&
335             (size != I2C_SMBUS_BLOCK_PROC_CALL)) {
336                 dev_dbg(&client->adapter->dev,
337                         "size out of range (%x) in ioctl I2C_SMBUS.\n",
338                         size);
339                 return -EINVAL;
340         }
341         /* Note that I2C_SMBUS_READ and I2C_SMBUS_WRITE are 0 and 1,
342            so the check is valid if size==I2C_SMBUS_QUICK too. */
343         if ((read_write != I2C_SMBUS_READ) &&
344             (read_write != I2C_SMBUS_WRITE)) {
345                 dev_dbg(&client->adapter->dev,
346                         "read_write out of range (%x) in ioctl I2C_SMBUS.\n",
347                         read_write);
348                 return -EINVAL;
349         }
350
351         /* Note that command values are always valid! */
352
353         if ((size == I2C_SMBUS_QUICK) ||
354             ((size == I2C_SMBUS_BYTE) &&
355             (read_write == I2C_SMBUS_WRITE)))
356                 /* These are special: we do not use data */
357                 return i2c_smbus_xfer(client->adapter, client->addr,
358                                       client->flags, read_write,
359                                       command, size, NULL);
360
361         if (data == NULL) {
362                 dev_dbg(&client->adapter->dev,
363                         "data is NULL pointer in ioctl I2C_SMBUS.\n");
364                 return -EINVAL;
365         }
366
367         if ((size == I2C_SMBUS_BYTE_DATA) ||
368             (size == I2C_SMBUS_BYTE))
369                 datasize = sizeof(data->byte);
370         else if ((size == I2C_SMBUS_WORD_DATA) ||
371                  (size == I2C_SMBUS_PROC_CALL))
372                 datasize = sizeof(data->word);
373         else /* size == smbus block, i2c block, or block proc. call */
374                 datasize = sizeof(data->block);
375
376         if ((size == I2C_SMBUS_PROC_CALL) ||
377             (size == I2C_SMBUS_BLOCK_PROC_CALL) ||
378             (size == I2C_SMBUS_I2C_BLOCK_DATA) ||
379             (read_write == I2C_SMBUS_WRITE)) {
380                 if (copy_from_user(&temp, data, datasize))
381                         return -EFAULT;
382         }
383         if (size == I2C_SMBUS_I2C_BLOCK_BROKEN) {
384                 /* Convert old I2C block commands to the new
385                    convention. This preserves binary compatibility. */
386                 size = I2C_SMBUS_I2C_BLOCK_DATA;
387                 if (read_write == I2C_SMBUS_READ)
388                         temp.block[0] = I2C_SMBUS_BLOCK_MAX;
389         }
390         res = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
391               read_write, command, size, &temp);
392         if (!res && ((size == I2C_SMBUS_PROC_CALL) ||
393                      (size == I2C_SMBUS_BLOCK_PROC_CALL) ||
394                      (read_write == I2C_SMBUS_READ))) {
395                 if (copy_to_user(data, &temp, datasize))
396                         return -EFAULT;
397         }
398         return res;
399 }
400
401 static long i2cdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
402 {
403         struct i2c_client *client = file->private_data;
404         unsigned long funcs;
405
406         dev_dbg(&client->adapter->dev, "ioctl, cmd=0x%02x, arg=0x%02lx\n",
407                 cmd, arg);
408
409         switch (cmd) {
410         case I2C_SLAVE:
411         case I2C_SLAVE_FORCE:
412                 if ((arg > 0x3ff) ||
413                     (((client->flags & I2C_M_TEN) == 0) && arg > 0x7f))
414                         return -EINVAL;
415                 if (cmd == I2C_SLAVE && i2cdev_check_addr(client->adapter, arg))
416                         return -EBUSY;
417                 /* REVISIT: address could become busy later */
418                 client->addr = arg;
419                 return 0;
420         case I2C_TENBIT:
421                 if (arg)
422                         client->flags |= I2C_M_TEN;
423                 else
424                         client->flags &= ~I2C_M_TEN;
425                 return 0;
426         case I2C_PEC:
427                 /*
428                  * Setting the PEC flag here won't affect kernel drivers,
429                  * which will be using the i2c_client node registered with
430                  * the driver model core.  Likewise, when that client has
431                  * the PEC flag already set, the i2c-dev driver won't see
432                  * (or use) this setting.
433                  */
434                 if (arg)
435                         client->flags |= I2C_CLIENT_PEC;
436                 else
437                         client->flags &= ~I2C_CLIENT_PEC;
438                 return 0;
439         case I2C_FUNCS:
440                 funcs = i2c_get_functionality(client->adapter);
441                 return put_user(funcs, (unsigned long __user *)arg);
442
443         case I2C_RDWR: {
444                 struct i2c_rdwr_ioctl_data rdwr_arg;
445                 struct i2c_msg *rdwr_pa;
446
447                 if (copy_from_user(&rdwr_arg,
448                                    (struct i2c_rdwr_ioctl_data __user *)arg,
449                                    sizeof(rdwr_arg)))
450                         return -EFAULT;
451
452                 if (!rdwr_arg.msgs || rdwr_arg.nmsgs == 0)
453                         return -EINVAL;
454
455                 /*
456                  * Put an arbitrary limit on the number of messages that can
457                  * be sent at once
458                  */
459                 if (rdwr_arg.nmsgs > I2C_RDWR_IOCTL_MAX_MSGS)
460                         return -EINVAL;
461
462                 rdwr_pa = memdup_user(rdwr_arg.msgs,
463                                       rdwr_arg.nmsgs * sizeof(struct i2c_msg));
464                 if (IS_ERR(rdwr_pa))
465                         return PTR_ERR(rdwr_pa);
466
467                 return i2cdev_ioctl_rdwr(client, rdwr_arg.nmsgs, rdwr_pa);
468         }
469
470         case I2C_SMBUS: {
471                 struct i2c_smbus_ioctl_data data_arg;
472                 if (copy_from_user(&data_arg,
473                                    (struct i2c_smbus_ioctl_data __user *) arg,
474                                    sizeof(struct i2c_smbus_ioctl_data)))
475                         return -EFAULT;
476                 return i2cdev_ioctl_smbus(client, data_arg.read_write,
477                                           data_arg.command,
478                                           data_arg.size,
479                                           data_arg.data);
480         }
481         case I2C_RETRIES:
482                 if (arg > INT_MAX)
483                         return -EINVAL;
484
485                 client->adapter->retries = arg;
486                 break;
487         case I2C_TIMEOUT:
488                 if (arg > INT_MAX)
489                         return -EINVAL;
490
491                 /* For historical reasons, user-space sets the timeout
492                  * value in units of 10 ms.
493                  */
494                 client->adapter->timeout = msecs_to_jiffies(arg * 10);
495                 break;
496         default:
497                 /* NOTE:  returning a fault code here could cause trouble
498                  * in buggy userspace code.  Some old kernel bugs returned
499                  * zero in this case, and userspace code might accidentally
500                  * have depended on that bug.
501                  */
502                 return -ENOTTY;
503         }
504         return 0;
505 }
506
507 #ifdef CONFIG_COMPAT
508
509 struct i2c_smbus_ioctl_data32 {
510         u8 read_write;
511         u8 command;
512         u32 size;
513         compat_caddr_t data; /* union i2c_smbus_data *data */
514 };
515
516 struct i2c_msg32 {
517         u16 addr;
518         u16 flags;
519         u16 len;
520         compat_caddr_t buf;
521 };
522
523 struct i2c_rdwr_ioctl_data32 {
524         compat_caddr_t msgs; /* struct i2c_msg __user *msgs */
525         u32 nmsgs;
526 };
527
528 static long compat_i2cdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
529 {
530         struct i2c_client *client = file->private_data;
531         unsigned long funcs;
532         switch (cmd) {
533         case I2C_FUNCS:
534                 funcs = i2c_get_functionality(client->adapter);
535                 return put_user(funcs, (compat_ulong_t __user *)arg);
536         case I2C_RDWR: {
537                 struct i2c_rdwr_ioctl_data32 rdwr_arg;
538                 struct i2c_msg32 *p;
539                 struct i2c_msg *rdwr_pa;
540                 int i;
541
542                 if (copy_from_user(&rdwr_arg,
543                                    (struct i2c_rdwr_ioctl_data32 __user *)arg,
544                                    sizeof(rdwr_arg)))
545                         return -EFAULT;
546
547                 if (!rdwr_arg.msgs || rdwr_arg.nmsgs == 0)
548                         return -EINVAL;
549
550                 if (rdwr_arg.nmsgs > I2C_RDWR_IOCTL_MAX_MSGS)
551                         return -EINVAL;
552
553                 rdwr_pa = kmalloc_array(rdwr_arg.nmsgs, sizeof(struct i2c_msg),
554                                       GFP_KERNEL);
555                 if (!rdwr_pa)
556                         return -ENOMEM;
557
558                 p = compat_ptr(rdwr_arg.msgs);
559                 for (i = 0; i < rdwr_arg.nmsgs; i++) {
560                         struct i2c_msg32 umsg;
561                         if (copy_from_user(&umsg, p + i, sizeof(umsg))) {
562                                 kfree(rdwr_pa);
563                                 return -EFAULT;
564                         }
565                         rdwr_pa[i] = (struct i2c_msg) {
566                                 .addr = umsg.addr,
567                                 .flags = umsg.flags,
568                                 .len = umsg.len,
569                                 .buf = compat_ptr(umsg.buf)
570                         };
571                 }
572
573                 return i2cdev_ioctl_rdwr(client, rdwr_arg.nmsgs, rdwr_pa);
574         }
575         case I2C_SMBUS: {
576                 struct i2c_smbus_ioctl_data32   data32;
577                 if (copy_from_user(&data32,
578                                    (void __user *) arg,
579                                    sizeof(data32)))
580                         return -EFAULT;
581                 return i2cdev_ioctl_smbus(client, data32.read_write,
582                                           data32.command,
583                                           data32.size,
584                                           compat_ptr(data32.data));
585         }
586         default:
587                 return i2cdev_ioctl(file, cmd, arg);
588         }
589 }
590 #else
591 #define compat_i2cdev_ioctl NULL
592 #endif
593
594 static int i2cdev_open(struct inode *inode, struct file *file)
595 {
596         unsigned int minor = iminor(inode);
597         struct i2c_client *client;
598         struct i2c_adapter *adap;
599
600         adap = i2c_get_adapter(minor);
601         if (!adap)
602                 return -ENODEV;
603
604         /* This creates an anonymous i2c_client, which may later be
605          * pointed to some address using I2C_SLAVE or I2C_SLAVE_FORCE.
606          *
607          * This client is ** NEVER REGISTERED ** with the driver model
608          * or I2C core code!!  It just holds private copies of addressing
609          * information and maybe a PEC flag.
610          */
611         client = kzalloc(sizeof(*client), GFP_KERNEL);
612         if (!client) {
613                 i2c_put_adapter(adap);
614                 return -ENOMEM;
615         }
616         snprintf(client->name, I2C_NAME_SIZE, "i2c-dev %d", adap->nr);
617
618         client->adapter = adap;
619         file->private_data = client;
620
621         return 0;
622 }
623
624 static int i2cdev_release(struct inode *inode, struct file *file)
625 {
626         struct i2c_client *client = file->private_data;
627
628         i2c_put_adapter(client->adapter);
629         kfree(client);
630         file->private_data = NULL;
631
632         return 0;
633 }
634
635 static const struct file_operations i2cdev_fops = {
636         .owner          = THIS_MODULE,
637         .llseek         = no_llseek,
638         .read           = i2cdev_read,
639         .write          = i2cdev_write,
640         .unlocked_ioctl = i2cdev_ioctl,
641         .compat_ioctl   = compat_i2cdev_ioctl,
642         .open           = i2cdev_open,
643         .release        = i2cdev_release,
644 };
645
646 /* ------------------------------------------------------------------------- */
647
648 static struct class *i2c_dev_class;
649
650 static void i2cdev_dev_release(struct device *dev)
651 {
652         struct i2c_dev *i2c_dev;
653
654         i2c_dev = container_of(dev, struct i2c_dev, dev);
655         kfree(i2c_dev);
656 }
657
658 static int i2cdev_attach_adapter(struct device *dev, void *dummy)
659 {
660         struct i2c_adapter *adap;
661         struct i2c_dev *i2c_dev;
662         int res;
663
664         if (dev->type != &i2c_adapter_type)
665                 return 0;
666         adap = to_i2c_adapter(dev);
667
668         i2c_dev = get_free_i2c_dev(adap);
669         if (IS_ERR(i2c_dev))
670                 return PTR_ERR(i2c_dev);
671
672         cdev_init(&i2c_dev->cdev, &i2cdev_fops);
673         i2c_dev->cdev.owner = THIS_MODULE;
674
675         device_initialize(&i2c_dev->dev);
676         i2c_dev->dev.devt = MKDEV(I2C_MAJOR, adap->nr);
677         i2c_dev->dev.class = i2c_dev_class;
678         i2c_dev->dev.parent = &adap->dev;
679         i2c_dev->dev.release = i2cdev_dev_release;
680         dev_set_name(&i2c_dev->dev, "i2c-%d", adap->nr);
681
682         res = cdev_device_add(&i2c_dev->cdev, &i2c_dev->dev);
683         if (res) {
684                 put_i2c_dev(i2c_dev, false);
685                 return res;
686         }
687
688         pr_debug("i2c-dev: adapter [%s] registered as minor %d\n",
689                  adap->name, adap->nr);
690         return 0;
691 }
692
693 static int i2cdev_detach_adapter(struct device *dev, void *dummy)
694 {
695         struct i2c_adapter *adap;
696         struct i2c_dev *i2c_dev;
697
698         if (dev->type != &i2c_adapter_type)
699                 return 0;
700         adap = to_i2c_adapter(dev);
701
702         i2c_dev = i2c_dev_get_by_minor(adap->nr);
703         if (!i2c_dev) /* attach_adapter must have failed */
704                 return 0;
705
706         put_i2c_dev(i2c_dev, true);
707
708         pr_debug("i2c-dev: adapter [%s] unregistered\n", adap->name);
709         return 0;
710 }
711
712 static int i2cdev_notifier_call(struct notifier_block *nb, unsigned long action,
713                          void *data)
714 {
715         struct device *dev = data;
716
717         switch (action) {
718         case BUS_NOTIFY_ADD_DEVICE:
719                 return i2cdev_attach_adapter(dev, NULL);
720         case BUS_NOTIFY_DEL_DEVICE:
721                 return i2cdev_detach_adapter(dev, NULL);
722         }
723
724         return 0;
725 }
726
727 static struct notifier_block i2cdev_notifier = {
728         .notifier_call = i2cdev_notifier_call,
729 };
730
731 /* ------------------------------------------------------------------------- */
732
733 /*
734  * module load/unload record keeping
735  */
736
737 static int __init i2c_dev_init(void)
738 {
739         int res;
740
741         printk(KERN_INFO "i2c /dev entries driver\n");
742
743         res = register_chrdev_region(MKDEV(I2C_MAJOR, 0), I2C_MINORS, "i2c");
744         if (res)
745                 goto out;
746
747         i2c_dev_class = class_create(THIS_MODULE, "i2c-dev");
748         if (IS_ERR(i2c_dev_class)) {
749                 res = PTR_ERR(i2c_dev_class);
750                 goto out_unreg_chrdev;
751         }
752         i2c_dev_class->dev_groups = i2c_groups;
753
754         /* Keep track of adapters which will be added or removed later */
755         res = bus_register_notifier(&i2c_bus_type, &i2cdev_notifier);
756         if (res)
757                 goto out_unreg_class;
758
759         /* Bind to already existing adapters right away */
760         i2c_for_each_dev(NULL, i2cdev_attach_adapter);
761
762         return 0;
763
764 out_unreg_class:
765         class_destroy(i2c_dev_class);
766 out_unreg_chrdev:
767         unregister_chrdev_region(MKDEV(I2C_MAJOR, 0), I2C_MINORS);
768 out:
769         printk(KERN_ERR "%s: Driver Initialisation failed\n", __FILE__);
770         return res;
771 }
772
773 static void __exit i2c_dev_exit(void)
774 {
775         bus_unregister_notifier(&i2c_bus_type, &i2cdev_notifier);
776         i2c_for_each_dev(NULL, i2cdev_detach_adapter);
777         class_destroy(i2c_dev_class);
778         unregister_chrdev_region(MKDEV(I2C_MAJOR, 0), I2C_MINORS);
779 }
780
781 MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
782                 "Simon G. Vogl <simon@tk.uni-linz.ac.at>");
783 MODULE_DESCRIPTION("I2C /dev entries driver");
784 MODULE_LICENSE("GPL");
785
786 module_init(i2c_dev_init);
787 module_exit(i2c_dev_exit);