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