Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* i2c-core.c - a device driver for the iic-bus interface */ |
| 2 | /* ------------------------------------------------------------------------- */ |
| 3 | /* Copyright (C) 1995-99 Simon G. Vogl |
| 4 | |
| 5 | This program is free software; you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by |
| 7 | the Free Software Foundation; either version 2 of the License, or |
| 8 | (at your option) any later version. |
| 9 | |
| 10 | This program is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | GNU General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License |
| 16 | along with this program; if not, write to the Free Software |
| 17 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ |
| 18 | /* ------------------------------------------------------------------------- */ |
| 19 | |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 20 | /* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | All SMBus-related things are written by Frodo Looijaard <frodol@dds.nl> |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 22 | SMBus 2.0 support by Mark Studebaker <mdsxyz123@yahoo.com> and |
| 23 | Jean Delvare <khali@linux-fr.org> */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/errno.h> |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/i2c.h> |
| 30 | #include <linux/init.h> |
| 31 | #include <linux/idr.h> |
Arjan van de Ven | b3585e4 | 2006-01-11 10:50:26 +0100 | [diff] [blame] | 32 | #include <linux/mutex.h> |
Jean Delvare | b8d6f45 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 33 | #include <linux/completion.h> |
Mike Rapoport | cea443a8 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 34 | #include <linux/hardirq.h> |
| 35 | #include <linux/irqflags.h> |
Rodolfo Giometti | f18c41d | 2009-06-19 16:58:20 +0200 | [diff] [blame] | 36 | #include <linux/rwsem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/uaccess.h> |
| 38 | |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 39 | #include "i2c-core.h" |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Jean Delvare | 99cd8e2 | 2009-06-19 16:58:20 +0200 | [diff] [blame] | 42 | /* core_lock protects i2c_adapter_idr, userspace_devices, and guarantees |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 43 | that device detection, deletion of detected devices, and attach_adapter |
| 44 | and detach_adapter calls are serialized */ |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 45 | static DEFINE_MUTEX(core_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | static DEFINE_IDR(i2c_adapter_idr); |
Jean Delvare | 99cd8e2 | 2009-06-19 16:58:20 +0200 | [diff] [blame] | 47 | static LIST_HEAD(userspace_devices); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Jean Delvare | 4f8cf82 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 49 | static struct device_type i2c_client_type; |
Jean Delvare | f8a227e | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 50 | static int i2c_check_addr(struct i2c_adapter *adapter, int addr); |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 51 | static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver); |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 52 | |
| 53 | /* ------------------------------------------------------------------------- */ |
| 54 | |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 55 | static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id, |
| 56 | const struct i2c_client *client) |
| 57 | { |
| 58 | while (id->name[0]) { |
| 59 | if (strcmp(client->name, id->name) == 0) |
| 60 | return id; |
| 61 | id++; |
| 62 | } |
| 63 | return NULL; |
| 64 | } |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | static int i2c_device_match(struct device *dev, struct device_driver *drv) |
| 67 | { |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 68 | struct i2c_client *client = i2c_verify_client(dev); |
| 69 | struct i2c_driver *driver; |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 70 | |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 71 | if (!client) |
| 72 | return 0; |
| 73 | |
| 74 | driver = to_i2c_driver(drv); |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 75 | /* match on an id table if there is one */ |
| 76 | if (driver->id_table) |
| 77 | return i2c_match_id(driver->id_table, client) != NULL; |
| 78 | |
Jean Delvare | eb8a790 | 2008-05-18 20:49:41 +0200 | [diff] [blame] | 79 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 82 | #ifdef CONFIG_HOTPLUG |
| 83 | |
| 84 | /* uevent helps with hotplug: modprobe -q $(MODALIAS) */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 85 | static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env) |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 86 | { |
| 87 | struct i2c_client *client = to_i2c_client(dev); |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 88 | |
Jean Delvare | eb8a790 | 2008-05-18 20:49:41 +0200 | [diff] [blame] | 89 | if (add_uevent_var(env, "MODALIAS=%s%s", |
| 90 | I2C_MODULE_PREFIX, client->name)) |
| 91 | return -ENOMEM; |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 92 | dev_dbg(dev, "uevent\n"); |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | #else |
| 97 | #define i2c_device_uevent NULL |
| 98 | #endif /* CONFIG_HOTPLUG */ |
| 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | static int i2c_device_probe(struct device *dev) |
| 101 | { |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 102 | struct i2c_client *client = i2c_verify_client(dev); |
| 103 | struct i2c_driver *driver; |
Hans Verkuil | 50c3304 | 2008-03-12 14:15:00 +0100 | [diff] [blame] | 104 | int status; |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 105 | |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 106 | if (!client) |
| 107 | return 0; |
| 108 | |
| 109 | driver = to_i2c_driver(dev->driver); |
Jean Delvare | e045744 | 2008-07-14 22:38:30 +0200 | [diff] [blame] | 110 | if (!driver->probe || !driver->id_table) |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 111 | return -ENODEV; |
| 112 | client->driver = driver; |
Marc Pignat | ee35425 | 2008-08-28 08:33:22 +0200 | [diff] [blame] | 113 | if (!device_can_wakeup(&client->dev)) |
| 114 | device_init_wakeup(&client->dev, |
| 115 | client->flags & I2C_CLIENT_WAKE); |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 116 | dev_dbg(dev, "probe\n"); |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 117 | |
Jean Delvare | e045744 | 2008-07-14 22:38:30 +0200 | [diff] [blame] | 118 | status = driver->probe(client, i2c_match_id(driver->id_table, client)); |
Hans Verkuil | 50c3304 | 2008-03-12 14:15:00 +0100 | [diff] [blame] | 119 | if (status) |
| 120 | client->driver = NULL; |
| 121 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static int i2c_device_remove(struct device *dev) |
| 125 | { |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 126 | struct i2c_client *client = i2c_verify_client(dev); |
David Brownell | a1d9e6e | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 127 | struct i2c_driver *driver; |
| 128 | int status; |
| 129 | |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 130 | if (!client || !dev->driver) |
David Brownell | a1d9e6e | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 131 | return 0; |
| 132 | |
| 133 | driver = to_i2c_driver(dev->driver); |
| 134 | if (driver->remove) { |
| 135 | dev_dbg(dev, "remove\n"); |
| 136 | status = driver->remove(client); |
| 137 | } else { |
| 138 | dev->driver = NULL; |
| 139 | status = 0; |
| 140 | } |
| 141 | if (status == 0) |
| 142 | client->driver = NULL; |
| 143 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 146 | static void i2c_device_shutdown(struct device *dev) |
| 147 | { |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 148 | struct i2c_client *client = i2c_verify_client(dev); |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 149 | struct i2c_driver *driver; |
| 150 | |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 151 | if (!client || !dev->driver) |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 152 | return; |
| 153 | driver = to_i2c_driver(dev->driver); |
| 154 | if (driver->shutdown) |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 155 | driver->shutdown(client); |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 156 | } |
| 157 | |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 158 | static int i2c_device_suspend(struct device *dev, pm_message_t mesg) |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 159 | { |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 160 | struct i2c_client *client = i2c_verify_client(dev); |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 161 | struct i2c_driver *driver; |
| 162 | |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 163 | if (!client || !dev->driver) |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 164 | return 0; |
| 165 | driver = to_i2c_driver(dev->driver); |
| 166 | if (!driver->suspend) |
| 167 | return 0; |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 168 | return driver->suspend(client, mesg); |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 169 | } |
| 170 | |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 171 | static int i2c_device_resume(struct device *dev) |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 172 | { |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 173 | struct i2c_client *client = i2c_verify_client(dev); |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 174 | struct i2c_driver *driver; |
| 175 | |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 176 | if (!client || !dev->driver) |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 177 | return 0; |
| 178 | driver = to_i2c_driver(dev->driver); |
| 179 | if (!driver->resume) |
| 180 | return 0; |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 181 | return driver->resume(client); |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 182 | } |
| 183 | |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 184 | static void i2c_client_dev_release(struct device *dev) |
| 185 | { |
| 186 | kfree(to_i2c_client(dev)); |
| 187 | } |
| 188 | |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 189 | static ssize_t |
Jean Delvare | 4f8cf82 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 190 | show_name(struct device *dev, struct device_attribute *attr, char *buf) |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 191 | { |
Jean Delvare | 4f8cf82 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 192 | return sprintf(buf, "%s\n", dev->type == &i2c_client_type ? |
| 193 | to_i2c_client(dev)->name : to_i2c_adapter(dev)->name); |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 194 | } |
| 195 | |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 196 | static ssize_t |
| 197 | show_modalias(struct device *dev, struct device_attribute *attr, char *buf) |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 198 | { |
| 199 | struct i2c_client *client = to_i2c_client(dev); |
Jean Delvare | eb8a790 | 2008-05-18 20:49:41 +0200 | [diff] [blame] | 200 | return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name); |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 201 | } |
| 202 | |
Jean Delvare | 4f8cf82 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 203 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 204 | static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL); |
| 205 | |
| 206 | static struct attribute *i2c_dev_attrs[] = { |
| 207 | &dev_attr_name.attr, |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 208 | /* modalias helps coldplug: modprobe $(cat .../modalias) */ |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 209 | &dev_attr_modalias.attr, |
| 210 | NULL |
| 211 | }; |
| 212 | |
| 213 | static struct attribute_group i2c_dev_attr_group = { |
| 214 | .attrs = i2c_dev_attrs, |
| 215 | }; |
| 216 | |
| 217 | static const struct attribute_group *i2c_dev_attr_groups[] = { |
| 218 | &i2c_dev_attr_group, |
| 219 | NULL |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 220 | }; |
| 221 | |
Jon Smirl | e9ca9eb | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 222 | struct bus_type i2c_bus_type = { |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 223 | .name = "i2c", |
| 224 | .match = i2c_device_match, |
| 225 | .probe = i2c_device_probe, |
| 226 | .remove = i2c_device_remove, |
| 227 | .shutdown = i2c_device_shutdown, |
| 228 | .suspend = i2c_device_suspend, |
| 229 | .resume = i2c_device_resume, |
Russell King | b864c7d | 2006-01-05 14:37:50 +0000 | [diff] [blame] | 230 | }; |
Jon Smirl | e9ca9eb | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 231 | EXPORT_SYMBOL_GPL(i2c_bus_type); |
Russell King | b864c7d | 2006-01-05 14:37:50 +0000 | [diff] [blame] | 232 | |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 233 | static struct device_type i2c_client_type = { |
| 234 | .groups = i2c_dev_attr_groups, |
| 235 | .uevent = i2c_device_uevent, |
| 236 | .release = i2c_client_dev_release, |
| 237 | }; |
| 238 | |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 239 | |
| 240 | /** |
| 241 | * i2c_verify_client - return parameter as i2c_client, or NULL |
| 242 | * @dev: device, probably from some driver model iterator |
| 243 | * |
| 244 | * When traversing the driver model tree, perhaps using driver model |
| 245 | * iterators like @device_for_each_child(), you can't assume very much |
| 246 | * about the nodes you find. Use this function to avoid oopses caused |
| 247 | * by wrongly treating some non-I2C device as an i2c_client. |
| 248 | */ |
| 249 | struct i2c_client *i2c_verify_client(struct device *dev) |
| 250 | { |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 251 | return (dev->type == &i2c_client_type) |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 252 | ? to_i2c_client(dev) |
| 253 | : NULL; |
| 254 | } |
| 255 | EXPORT_SYMBOL(i2c_verify_client); |
| 256 | |
| 257 | |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 258 | /** |
Jean Delvare | f8a227e | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 259 | * i2c_new_device - instantiate an i2c device |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 260 | * @adap: the adapter managing the device |
| 261 | * @info: describes one I2C device; bus_num is ignored |
David Brownell | d64f73b | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 262 | * Context: can sleep |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 263 | * |
Jean Delvare | f8a227e | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 264 | * Create an i2c device. Binding is handled through driver model |
| 265 | * probe()/remove() methods. A driver may be bound to this device when we |
| 266 | * return from this function, or any later moment (e.g. maybe hotplugging will |
| 267 | * load the driver module). This call is not appropriate for use by mainboard |
| 268 | * initialization logic, which usually runs during an arch_initcall() long |
| 269 | * before any i2c_adapter could exist. |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 270 | * |
| 271 | * This returns the new i2c client, which may be saved for later use with |
| 272 | * i2c_unregister_device(); or NULL to indicate an error. |
| 273 | */ |
| 274 | struct i2c_client * |
| 275 | i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info) |
| 276 | { |
| 277 | struct i2c_client *client; |
| 278 | int status; |
| 279 | |
| 280 | client = kzalloc(sizeof *client, GFP_KERNEL); |
| 281 | if (!client) |
| 282 | return NULL; |
| 283 | |
| 284 | client->adapter = adap; |
| 285 | |
| 286 | client->dev.platform_data = info->platform_data; |
David Brownell | 3bbb835 | 2007-10-13 23:56:29 +0200 | [diff] [blame] | 287 | |
Anton Vorontsov | 11f1f2a | 2008-10-22 20:21:33 +0200 | [diff] [blame] | 288 | if (info->archdata) |
| 289 | client->dev.archdata = *info->archdata; |
| 290 | |
Marc Pignat | ee35425 | 2008-08-28 08:33:22 +0200 | [diff] [blame] | 291 | client->flags = info->flags; |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 292 | client->addr = info->addr; |
| 293 | client->irq = info->irq; |
| 294 | |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 295 | strlcpy(client->name, info->type, sizeof(client->name)); |
| 296 | |
Jean Delvare | f8a227e | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 297 | /* Check for address business */ |
| 298 | status = i2c_check_addr(adap, client->addr); |
| 299 | if (status) |
| 300 | goto out_err; |
| 301 | |
| 302 | client->dev.parent = &client->adapter->dev; |
| 303 | client->dev.bus = &i2c_bus_type; |
Jean Delvare | 51298d1 | 2009-09-18 22:45:45 +0200 | [diff] [blame] | 304 | client->dev.type = &i2c_client_type; |
Jean Delvare | f8a227e | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 305 | |
| 306 | dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap), |
| 307 | client->addr); |
| 308 | status = device_register(&client->dev); |
| 309 | if (status) |
| 310 | goto out_err; |
| 311 | |
Jean Delvare | f8a227e | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 312 | dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n", |
| 313 | client->name, dev_name(&client->dev)); |
| 314 | |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 315 | return client; |
Jean Delvare | f8a227e | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 316 | |
| 317 | out_err: |
| 318 | dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x " |
| 319 | "(%d)\n", client->name, client->addr, status); |
| 320 | kfree(client); |
| 321 | return NULL; |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 322 | } |
| 323 | EXPORT_SYMBOL_GPL(i2c_new_device); |
| 324 | |
| 325 | |
| 326 | /** |
| 327 | * i2c_unregister_device - reverse effect of i2c_new_device() |
| 328 | * @client: value returned from i2c_new_device() |
David Brownell | d64f73b | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 329 | * Context: can sleep |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 330 | */ |
| 331 | void i2c_unregister_device(struct i2c_client *client) |
David Brownell | a1d9e6e | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 332 | { |
David Brownell | a1d9e6e | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 333 | device_unregister(&client->dev); |
| 334 | } |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 335 | EXPORT_SYMBOL_GPL(i2c_unregister_device); |
David Brownell | a1d9e6e | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 336 | |
| 337 | |
Jean Delvare | 60b129d | 2008-05-11 20:37:06 +0200 | [diff] [blame] | 338 | static const struct i2c_device_id dummy_id[] = { |
| 339 | { "dummy", 0 }, |
| 340 | { }, |
| 341 | }; |
| 342 | |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 343 | static int dummy_probe(struct i2c_client *client, |
| 344 | const struct i2c_device_id *id) |
| 345 | { |
| 346 | return 0; |
| 347 | } |
| 348 | |
| 349 | static int dummy_remove(struct i2c_client *client) |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 350 | { |
| 351 | return 0; |
| 352 | } |
| 353 | |
| 354 | static struct i2c_driver dummy_driver = { |
| 355 | .driver.name = "dummy", |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 356 | .probe = dummy_probe, |
| 357 | .remove = dummy_remove, |
Jean Delvare | 60b129d | 2008-05-11 20:37:06 +0200 | [diff] [blame] | 358 | .id_table = dummy_id, |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 359 | }; |
| 360 | |
| 361 | /** |
| 362 | * i2c_new_dummy - return a new i2c device bound to a dummy driver |
| 363 | * @adapter: the adapter managing the device |
| 364 | * @address: seven bit address to be used |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 365 | * Context: can sleep |
| 366 | * |
| 367 | * This returns an I2C client bound to the "dummy" driver, intended for use |
| 368 | * with devices that consume multiple addresses. Examples of such chips |
| 369 | * include various EEPROMS (like 24c04 and 24c08 models). |
| 370 | * |
| 371 | * These dummy devices have two main uses. First, most I2C and SMBus calls |
| 372 | * except i2c_transfer() need a client handle; the dummy will be that handle. |
| 373 | * And second, this prevents the specified address from being bound to a |
| 374 | * different driver. |
| 375 | * |
| 376 | * This returns the new i2c client, which should be saved for later use with |
| 377 | * i2c_unregister_device(); or NULL to indicate an error. |
| 378 | */ |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 379 | struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address) |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 380 | { |
| 381 | struct i2c_board_info info = { |
Jean Delvare | 60b129d | 2008-05-11 20:37:06 +0200 | [diff] [blame] | 382 | I2C_BOARD_INFO("dummy", address), |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 383 | }; |
| 384 | |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 385 | return i2c_new_device(adapter, &info); |
| 386 | } |
| 387 | EXPORT_SYMBOL_GPL(i2c_new_dummy); |
| 388 | |
David Brownell | f37dd80 | 2007-02-13 22:09:00 +0100 | [diff] [blame] | 389 | /* ------------------------------------------------------------------------- */ |
| 390 | |
David Brownell | 16ffadf | 2007-05-01 23:26:28 +0200 | [diff] [blame] | 391 | /* I2C bus adapters -- one roots each I2C or SMBUS segment */ |
| 392 | |
Adrian Bunk | 83eaaed | 2007-10-13 23:56:30 +0200 | [diff] [blame] | 393 | static void i2c_adapter_dev_release(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | { |
David Brownell | ef2c8321 | 2007-05-01 23:26:28 +0200 | [diff] [blame] | 395 | struct i2c_adapter *adap = to_i2c_adapter(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | complete(&adap->dev_released); |
| 397 | } |
| 398 | |
Jean Delvare | 99cd8e2 | 2009-06-19 16:58:20 +0200 | [diff] [blame] | 399 | /* |
| 400 | * Let users instantiate I2C devices through sysfs. This can be used when |
| 401 | * platform initialization code doesn't contain the proper data for |
| 402 | * whatever reason. Also useful for drivers that do device detection and |
| 403 | * detection fails, either because the device uses an unexpected address, |
| 404 | * or this is a compatible device with different ID register values. |
| 405 | * |
| 406 | * Parameter checking may look overzealous, but we really don't want |
| 407 | * the user to provide incorrect parameters. |
| 408 | */ |
| 409 | static ssize_t |
| 410 | i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr, |
| 411 | const char *buf, size_t count) |
| 412 | { |
| 413 | struct i2c_adapter *adap = to_i2c_adapter(dev); |
| 414 | struct i2c_board_info info; |
| 415 | struct i2c_client *client; |
| 416 | char *blank, end; |
| 417 | int res; |
| 418 | |
| 419 | dev_warn(dev, "The new_device interface is still experimental " |
| 420 | "and may change in a near future\n"); |
| 421 | memset(&info, 0, sizeof(struct i2c_board_info)); |
| 422 | |
| 423 | blank = strchr(buf, ' '); |
| 424 | if (!blank) { |
| 425 | dev_err(dev, "%s: Missing parameters\n", "new_device"); |
| 426 | return -EINVAL; |
| 427 | } |
| 428 | if (blank - buf > I2C_NAME_SIZE - 1) { |
| 429 | dev_err(dev, "%s: Invalid device name\n", "new_device"); |
| 430 | return -EINVAL; |
| 431 | } |
| 432 | memcpy(info.type, buf, blank - buf); |
| 433 | |
| 434 | /* Parse remaining parameters, reject extra parameters */ |
| 435 | res = sscanf(++blank, "%hi%c", &info.addr, &end); |
| 436 | if (res < 1) { |
| 437 | dev_err(dev, "%s: Can't parse I2C address\n", "new_device"); |
| 438 | return -EINVAL; |
| 439 | } |
| 440 | if (res > 1 && end != '\n') { |
| 441 | dev_err(dev, "%s: Extra parameters\n", "new_device"); |
| 442 | return -EINVAL; |
| 443 | } |
| 444 | |
| 445 | if (info.addr < 0x03 || info.addr > 0x77) { |
| 446 | dev_err(dev, "%s: Invalid I2C address 0x%hx\n", "new_device", |
| 447 | info.addr); |
| 448 | return -EINVAL; |
| 449 | } |
| 450 | |
| 451 | client = i2c_new_device(adap, &info); |
| 452 | if (!client) |
| 453 | return -EEXIST; |
| 454 | |
| 455 | /* Keep track of the added device */ |
| 456 | mutex_lock(&core_lock); |
| 457 | list_add_tail(&client->detected, &userspace_devices); |
| 458 | mutex_unlock(&core_lock); |
| 459 | dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device", |
| 460 | info.type, info.addr); |
| 461 | |
| 462 | return count; |
| 463 | } |
| 464 | |
| 465 | /* |
| 466 | * And of course let the users delete the devices they instantiated, if |
| 467 | * they got it wrong. This interface can only be used to delete devices |
| 468 | * instantiated by i2c_sysfs_new_device above. This guarantees that we |
| 469 | * don't delete devices to which some kernel code still has references. |
| 470 | * |
| 471 | * Parameter checking may look overzealous, but we really don't want |
| 472 | * the user to delete the wrong device. |
| 473 | */ |
| 474 | static ssize_t |
| 475 | i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr, |
| 476 | const char *buf, size_t count) |
| 477 | { |
| 478 | struct i2c_adapter *adap = to_i2c_adapter(dev); |
| 479 | struct i2c_client *client, *next; |
| 480 | unsigned short addr; |
| 481 | char end; |
| 482 | int res; |
| 483 | |
| 484 | /* Parse parameters, reject extra parameters */ |
| 485 | res = sscanf(buf, "%hi%c", &addr, &end); |
| 486 | if (res < 1) { |
| 487 | dev_err(dev, "%s: Can't parse I2C address\n", "delete_device"); |
| 488 | return -EINVAL; |
| 489 | } |
| 490 | if (res > 1 && end != '\n') { |
| 491 | dev_err(dev, "%s: Extra parameters\n", "delete_device"); |
| 492 | return -EINVAL; |
| 493 | } |
| 494 | |
| 495 | /* Make sure the device was added through sysfs */ |
| 496 | res = -ENOENT; |
| 497 | mutex_lock(&core_lock); |
| 498 | list_for_each_entry_safe(client, next, &userspace_devices, detected) { |
| 499 | if (client->addr == addr && client->adapter == adap) { |
| 500 | dev_info(dev, "%s: Deleting device %s at 0x%02hx\n", |
| 501 | "delete_device", client->name, client->addr); |
| 502 | |
| 503 | list_del(&client->detected); |
| 504 | i2c_unregister_device(client); |
| 505 | res = count; |
| 506 | break; |
| 507 | } |
| 508 | } |
| 509 | mutex_unlock(&core_lock); |
| 510 | |
| 511 | if (res < 0) |
| 512 | dev_err(dev, "%s: Can't find device in list\n", |
| 513 | "delete_device"); |
| 514 | return res; |
| 515 | } |
| 516 | |
Jean Delvare | 4f8cf82 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 517 | static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device); |
| 518 | static DEVICE_ATTR(delete_device, S_IWUSR, NULL, i2c_sysfs_delete_device); |
| 519 | |
| 520 | static struct attribute *i2c_adapter_attrs[] = { |
| 521 | &dev_attr_name.attr, |
| 522 | &dev_attr_new_device.attr, |
| 523 | &dev_attr_delete_device.attr, |
| 524 | NULL |
David Brownell | 16ffadf | 2007-05-01 23:26:28 +0200 | [diff] [blame] | 525 | }; |
| 526 | |
Jean Delvare | 4f8cf82 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 527 | static struct attribute_group i2c_adapter_attr_group = { |
| 528 | .attrs = i2c_adapter_attrs, |
| 529 | }; |
| 530 | |
| 531 | static const struct attribute_group *i2c_adapter_attr_groups[] = { |
| 532 | &i2c_adapter_attr_group, |
| 533 | NULL |
| 534 | }; |
| 535 | |
| 536 | static struct device_type i2c_adapter_type = { |
| 537 | .groups = i2c_adapter_attr_groups, |
| 538 | .release = i2c_adapter_dev_release, |
David Brownell | 16ffadf | 2007-05-01 23:26:28 +0200 | [diff] [blame] | 539 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Jean Delvare | 2bb5095 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 541 | #ifdef CONFIG_I2C_COMPAT |
| 542 | static struct class_compat *i2c_adapter_compat_class; |
| 543 | #endif |
| 544 | |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 545 | static void i2c_scan_static_board_info(struct i2c_adapter *adapter) |
| 546 | { |
| 547 | struct i2c_devinfo *devinfo; |
| 548 | |
Rodolfo Giometti | f18c41d | 2009-06-19 16:58:20 +0200 | [diff] [blame] | 549 | down_read(&__i2c_board_lock); |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 550 | list_for_each_entry(devinfo, &__i2c_board_list, list) { |
| 551 | if (devinfo->busnum == adapter->nr |
| 552 | && !i2c_new_device(adapter, |
| 553 | &devinfo->board_info)) |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 554 | dev_err(&adapter->dev, |
| 555 | "Can't create device at 0x%02x\n", |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 556 | devinfo->board_info.addr); |
| 557 | } |
Rodolfo Giometti | f18c41d | 2009-06-19 16:58:20 +0200 | [diff] [blame] | 558 | up_read(&__i2c_board_lock); |
David Brownell | 9c1600e | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 559 | } |
| 560 | |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 561 | static int i2c_do_add_adapter(struct i2c_driver *driver, |
| 562 | struct i2c_adapter *adap) |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 563 | { |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 564 | /* Detect supported devices on that bus, and instantiate them */ |
| 565 | i2c_detect(adap, driver); |
| 566 | |
| 567 | /* Let legacy drivers scan this bus for matching devices */ |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 568 | if (driver->attach_adapter) { |
| 569 | /* We ignore the return code; if it fails, too bad */ |
| 570 | driver->attach_adapter(adap); |
| 571 | } |
| 572 | return 0; |
| 573 | } |
| 574 | |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 575 | static int __process_new_adapter(struct device_driver *d, void *data) |
| 576 | { |
| 577 | return i2c_do_add_adapter(to_i2c_driver(d), data); |
| 578 | } |
| 579 | |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 580 | static int i2c_register_adapter(struct i2c_adapter *adap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | { |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 582 | int res = 0, dummy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
David Brownell | 1d0b19c | 2008-10-14 17:30:05 +0200 | [diff] [blame] | 584 | /* Can't register until after driver model init */ |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 585 | if (unlikely(WARN_ON(!i2c_bus_type.p))) { |
| 586 | res = -EAGAIN; |
| 587 | goto out_list; |
| 588 | } |
David Brownell | 1d0b19c | 2008-10-14 17:30:05 +0200 | [diff] [blame] | 589 | |
Mika Kuoppala | 194684e | 2009-12-06 17:06:22 +0100 | [diff] [blame] | 590 | rt_mutex_init(&adap->bus_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
Jean Delvare | 8fcfef6 | 2009-03-28 21:34:43 +0100 | [diff] [blame] | 592 | /* Set default timeout to 1 second if not already set */ |
| 593 | if (adap->timeout == 0) |
| 594 | adap->timeout = HZ; |
| 595 | |
Kay Sievers | 27d9c18 | 2009-01-07 14:29:16 +0100 | [diff] [blame] | 596 | dev_set_name(&adap->dev, "i2c-%d", adap->nr); |
Jean Delvare | 4f8cf82 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 597 | adap->dev.bus = &i2c_bus_type; |
| 598 | adap->dev.type = &i2c_adapter_type; |
Jean Delvare | b119c6c | 2006-08-15 18:26:30 +0200 | [diff] [blame] | 599 | res = device_register(&adap->dev); |
| 600 | if (res) |
| 601 | goto out_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
Jean Delvare | b6d7b3d | 2005-07-31 19:02:53 +0200 | [diff] [blame] | 603 | dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name); |
| 604 | |
Jean Delvare | 2bb5095 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 605 | #ifdef CONFIG_I2C_COMPAT |
| 606 | res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev, |
| 607 | adap->dev.parent); |
| 608 | if (res) |
| 609 | dev_warn(&adap->dev, |
| 610 | "Failed to create compatibility class link\n"); |
| 611 | #endif |
| 612 | |
Jean Delvare | 729d6dd | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 613 | /* create pre-declared device nodes */ |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 614 | if (adap->nr < __i2c_first_dynamic_bus_num) |
| 615 | i2c_scan_static_board_info(adap); |
| 616 | |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 617 | /* Notify drivers */ |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 618 | mutex_lock(&core_lock); |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 619 | dummy = bus_for_each_drv(&i2c_bus_type, NULL, adap, |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 620 | __process_new_adapter); |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 621 | mutex_unlock(&core_lock); |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 622 | |
| 623 | return 0; |
Jean Delvare | b119c6c | 2006-08-15 18:26:30 +0200 | [diff] [blame] | 624 | |
Jean Delvare | b119c6c | 2006-08-15 18:26:30 +0200 | [diff] [blame] | 625 | out_list: |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 626 | mutex_lock(&core_lock); |
Jean Delvare | b119c6c | 2006-08-15 18:26:30 +0200 | [diff] [blame] | 627 | idr_remove(&i2c_adapter_idr, adap->nr); |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 628 | mutex_unlock(&core_lock); |
| 629 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } |
| 631 | |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 632 | /** |
| 633 | * i2c_add_adapter - declare i2c adapter, use dynamic bus number |
| 634 | * @adapter: the adapter to add |
David Brownell | d64f73b | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 635 | * Context: can sleep |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 636 | * |
| 637 | * This routine is used to declare an I2C adapter when its bus number |
| 638 | * doesn't matter. Examples: for I2C adapters dynamically added by |
| 639 | * USB links or PCI plugin cards. |
| 640 | * |
| 641 | * When this returns zero, a new bus number was allocated and stored |
| 642 | * in adap->nr, and the specified adapter became available for clients. |
| 643 | * Otherwise, a negative errno value is returned. |
| 644 | */ |
| 645 | int i2c_add_adapter(struct i2c_adapter *adapter) |
| 646 | { |
| 647 | int id, res = 0; |
| 648 | |
| 649 | retry: |
| 650 | if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0) |
| 651 | return -ENOMEM; |
| 652 | |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 653 | mutex_lock(&core_lock); |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 654 | /* "above" here means "above or equal to", sigh */ |
| 655 | res = idr_get_new_above(&i2c_adapter_idr, adapter, |
| 656 | __i2c_first_dynamic_bus_num, &id); |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 657 | mutex_unlock(&core_lock); |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 658 | |
| 659 | if (res < 0) { |
| 660 | if (res == -EAGAIN) |
| 661 | goto retry; |
| 662 | return res; |
| 663 | } |
| 664 | |
| 665 | adapter->nr = id; |
| 666 | return i2c_register_adapter(adapter); |
| 667 | } |
| 668 | EXPORT_SYMBOL(i2c_add_adapter); |
| 669 | |
| 670 | /** |
| 671 | * i2c_add_numbered_adapter - declare i2c adapter, use static bus number |
| 672 | * @adap: the adapter to register (with adap->nr initialized) |
David Brownell | d64f73b | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 673 | * Context: can sleep |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 674 | * |
| 675 | * This routine is used to declare an I2C adapter when its bus number |
Randy Dunlap | 8c07e46 | 2008-03-23 20:28:20 +0100 | [diff] [blame] | 676 | * matters. For example, use it for I2C adapters from system-on-chip CPUs, |
| 677 | * or otherwise built in to the system's mainboard, and where i2c_board_info |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 678 | * is used to properly configure I2C devices. |
| 679 | * |
| 680 | * If no devices have pre-been declared for this bus, then be sure to |
| 681 | * register the adapter before any dynamically allocated ones. Otherwise |
| 682 | * the required bus ID may not be available. |
| 683 | * |
| 684 | * When this returns zero, the specified adapter became available for |
| 685 | * clients using the bus number provided in adap->nr. Also, the table |
| 686 | * of I2C devices pre-declared using i2c_register_board_info() is scanned, |
| 687 | * and the appropriate driver model device nodes are created. Otherwise, a |
| 688 | * negative errno value is returned. |
| 689 | */ |
| 690 | int i2c_add_numbered_adapter(struct i2c_adapter *adap) |
| 691 | { |
| 692 | int id; |
| 693 | int status; |
| 694 | |
| 695 | if (adap->nr & ~MAX_ID_MASK) |
| 696 | return -EINVAL; |
| 697 | |
| 698 | retry: |
| 699 | if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0) |
| 700 | return -ENOMEM; |
| 701 | |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 702 | mutex_lock(&core_lock); |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 703 | /* "above" here means "above or equal to", sigh; |
| 704 | * we need the "equal to" result to force the result |
| 705 | */ |
| 706 | status = idr_get_new_above(&i2c_adapter_idr, adap, adap->nr, &id); |
| 707 | if (status == 0 && id != adap->nr) { |
| 708 | status = -EBUSY; |
| 709 | idr_remove(&i2c_adapter_idr, id); |
| 710 | } |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 711 | mutex_unlock(&core_lock); |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 712 | if (status == -EAGAIN) |
| 713 | goto retry; |
| 714 | |
| 715 | if (status == 0) |
| 716 | status = i2c_register_adapter(adap); |
| 717 | return status; |
| 718 | } |
| 719 | EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter); |
| 720 | |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 721 | static int i2c_do_del_adapter(struct i2c_driver *driver, |
| 722 | struct i2c_adapter *adapter) |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 723 | { |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 724 | struct i2c_client *client, *_n; |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 725 | int res; |
| 726 | |
Jean Delvare | acec211 | 2009-03-28 21:34:40 +0100 | [diff] [blame] | 727 | /* Remove the devices we created ourselves as the result of hardware |
| 728 | * probing (using a driver's detect method) */ |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 729 | list_for_each_entry_safe(client, _n, &driver->clients, detected) { |
| 730 | if (client->adapter == adapter) { |
| 731 | dev_dbg(&adapter->dev, "Removing %s at 0x%x\n", |
| 732 | client->name, client->addr); |
| 733 | list_del(&client->detected); |
| 734 | i2c_unregister_device(client); |
| 735 | } |
| 736 | } |
| 737 | |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 738 | if (!driver->detach_adapter) |
| 739 | return 0; |
| 740 | res = driver->detach_adapter(adapter); |
| 741 | if (res) |
| 742 | dev_err(&adapter->dev, "detach_adapter failed (%d) " |
| 743 | "for driver [%s]\n", res, driver->driver.name); |
| 744 | return res; |
| 745 | } |
| 746 | |
Jean Delvare | e549c2b | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 747 | static int __unregister_client(struct device *dev, void *dummy) |
| 748 | { |
| 749 | struct i2c_client *client = i2c_verify_client(dev); |
| 750 | if (client) |
| 751 | i2c_unregister_device(client); |
| 752 | return 0; |
| 753 | } |
| 754 | |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 755 | static int __process_removed_adapter(struct device_driver *d, void *data) |
| 756 | { |
| 757 | return i2c_do_del_adapter(to_i2c_driver(d), data); |
| 758 | } |
| 759 | |
David Brownell | d64f73b | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 760 | /** |
| 761 | * i2c_del_adapter - unregister I2C adapter |
| 762 | * @adap: the adapter being unregistered |
| 763 | * Context: can sleep |
| 764 | * |
| 765 | * This unregisters an I2C adapter which was previously registered |
| 766 | * by @i2c_add_adapter or @i2c_add_numbered_adapter. |
| 767 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | int i2c_del_adapter(struct i2c_adapter *adap) |
| 769 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | int res = 0; |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 771 | struct i2c_adapter *found; |
Jean Delvare | bbd2d9c | 2009-11-26 09:22:33 +0100 | [diff] [blame] | 772 | struct i2c_client *client, *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
| 774 | /* First make sure that this adapter was ever added */ |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 775 | mutex_lock(&core_lock); |
| 776 | found = idr_find(&i2c_adapter_idr, adap->nr); |
| 777 | mutex_unlock(&core_lock); |
| 778 | if (found != adap) { |
Jean Delvare | b6d7b3d | 2005-07-31 19:02:53 +0200 | [diff] [blame] | 779 | pr_debug("i2c-core: attempting to delete unregistered " |
| 780 | "adapter [%s]\n", adap->name); |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 781 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | } |
| 783 | |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 784 | /* Tell drivers about this removal */ |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 785 | mutex_lock(&core_lock); |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 786 | res = bus_for_each_drv(&i2c_bus_type, NULL, adap, |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 787 | __process_removed_adapter); |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 788 | mutex_unlock(&core_lock); |
Jean Delvare | 026526f | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 789 | if (res) |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 790 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
Jean Delvare | bbd2d9c | 2009-11-26 09:22:33 +0100 | [diff] [blame] | 792 | /* Remove devices instantiated from sysfs */ |
| 793 | list_for_each_entry_safe(client, next, &userspace_devices, detected) { |
| 794 | if (client->adapter == adap) { |
| 795 | dev_dbg(&adap->dev, "Removing %s at 0x%x\n", |
| 796 | client->name, client->addr); |
| 797 | list_del(&client->detected); |
| 798 | i2c_unregister_device(client); |
| 799 | } |
| 800 | } |
| 801 | |
Jean Delvare | e549c2b | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 802 | /* Detach any active clients. This can't fail, thus we do not |
| 803 | checking the returned value. */ |
| 804 | res = device_for_each_child(&adap->dev, NULL, __unregister_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | |
Jean Delvare | 2bb5095 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 806 | #ifdef CONFIG_I2C_COMPAT |
| 807 | class_compat_remove_link(i2c_adapter_compat_class, &adap->dev, |
| 808 | adap->dev.parent); |
| 809 | #endif |
| 810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | /* clean up the sysfs representation */ |
| 812 | init_completion(&adap->dev_released); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | device_unregister(&adap->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | |
| 815 | /* wait for sysfs to drop all references */ |
| 816 | wait_for_completion(&adap->dev_released); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 818 | /* free bus id */ |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 819 | mutex_lock(&core_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | idr_remove(&i2c_adapter_idr, adap->nr); |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 821 | mutex_unlock(&core_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | |
Jean Delvare | b6d7b3d | 2005-07-31 19:02:53 +0200 | [diff] [blame] | 823 | dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
Jean Delvare | bd4bc3db | 2008-07-16 19:30:05 +0200 | [diff] [blame] | 825 | /* Clear the device structure in case this adapter is ever going to be |
| 826 | added again */ |
| 827 | memset(&adap->dev, 0, sizeof(adap->dev)); |
| 828 | |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 829 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 831 | EXPORT_SYMBOL(i2c_del_adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | |
| 833 | |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 834 | /* ------------------------------------------------------------------------- */ |
| 835 | |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 836 | static int __process_new_driver(struct device *dev, void *data) |
Dave Young | 7f101a9 | 2008-07-14 22:38:19 +0200 | [diff] [blame] | 837 | { |
Jean Delvare | 4f8cf82 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 838 | if (dev->type != &i2c_adapter_type) |
| 839 | return 0; |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 840 | return i2c_do_add_adapter(data, to_i2c_adapter(dev)); |
Dave Young | 7f101a9 | 2008-07-14 22:38:19 +0200 | [diff] [blame] | 841 | } |
| 842 | |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 843 | /* |
| 844 | * An i2c_driver is used with one or more i2c_client (device) nodes to access |
Jean Delvare | 729d6dd | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 845 | * i2c slave chips, on a bus instance associated with some i2c_adapter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | */ |
| 847 | |
Greg Kroah-Hartman | de59cf9 | 2005-12-06 15:33:15 -0800 | [diff] [blame] | 848 | int i2c_register_driver(struct module *owner, struct i2c_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | { |
Jean Delvare | 7eebcb7 | 2006-02-05 23:28:21 +0100 | [diff] [blame] | 850 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
David Brownell | 1d0b19c | 2008-10-14 17:30:05 +0200 | [diff] [blame] | 852 | /* Can't register until after driver model init */ |
| 853 | if (unlikely(WARN_ON(!i2c_bus_type.p))) |
| 854 | return -EAGAIN; |
| 855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | /* add the driver to the list of i2c drivers in the driver core */ |
Greg Kroah-Hartman | de59cf9 | 2005-12-06 15:33:15 -0800 | [diff] [blame] | 857 | driver->driver.owner = owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | driver->driver.bus = &i2c_bus_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
Jean Delvare | 729d6dd | 2009-06-19 16:58:18 +0200 | [diff] [blame] | 860 | /* When registration returns, the driver core |
David Brownell | 6e13e64 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 861 | * will have called probe() for all matching-but-unbound devices. |
| 862 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | res = driver_register(&driver->driver); |
| 864 | if (res) |
Jean Delvare | 7eebcb7 | 2006-02-05 23:28:21 +0100 | [diff] [blame] | 865 | return res; |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 866 | |
Laurent Riffard | 35d8b2e | 2005-11-26 20:34:05 +0100 | [diff] [blame] | 867 | pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 869 | INIT_LIST_HEAD(&driver->clients); |
| 870 | /* Walk the adapters that are already present */ |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 871 | mutex_lock(&core_lock); |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 872 | bus_for_each_dev(&i2c_bus_type, NULL, driver, __process_new_driver); |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 873 | mutex_unlock(&core_lock); |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 874 | |
Jean Delvare | 7eebcb7 | 2006-02-05 23:28:21 +0100 | [diff] [blame] | 875 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | } |
Greg Kroah-Hartman | de59cf9 | 2005-12-06 15:33:15 -0800 | [diff] [blame] | 877 | EXPORT_SYMBOL(i2c_register_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 879 | static int __process_removed_driver(struct device *dev, void *data) |
Dave Young | 7f101a9 | 2008-07-14 22:38:19 +0200 | [diff] [blame] | 880 | { |
Jean Delvare | 4f8cf82 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 881 | if (dev->type != &i2c_adapter_type) |
| 882 | return 0; |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 883 | return i2c_do_del_adapter(data, to_i2c_adapter(dev)); |
Dave Young | 7f101a9 | 2008-07-14 22:38:19 +0200 | [diff] [blame] | 884 | } |
| 885 | |
David Brownell | a1d9e6e | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 886 | /** |
| 887 | * i2c_del_driver - unregister I2C driver |
| 888 | * @driver: the driver being unregistered |
David Brownell | d64f73b | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 889 | * Context: can sleep |
David Brownell | a1d9e6e | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 890 | */ |
Jean Delvare | b3e8209 | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 891 | void i2c_del_driver(struct i2c_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | { |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 893 | mutex_lock(&core_lock); |
Jean Delvare | 69b0089 | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 894 | bus_for_each_dev(&i2c_bus_type, NULL, driver, __process_removed_driver); |
Jean Delvare | 35fc37f | 2009-06-19 16:58:19 +0200 | [diff] [blame] | 895 | mutex_unlock(&core_lock); |
David Brownell | a1d9e6e | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 896 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | driver_unregister(&driver->driver); |
Laurent Riffard | 35d8b2e | 2005-11-26 20:34:05 +0100 | [diff] [blame] | 898 | pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 900 | EXPORT_SYMBOL(i2c_del_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | |
David Brownell | 7b4fbc5 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 902 | /* ------------------------------------------------------------------------- */ |
| 903 | |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 904 | static int __i2c_check_addr(struct device *dev, void *addrp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | { |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 906 | struct i2c_client *client = i2c_verify_client(dev); |
| 907 | int addr = *(int *)addrp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 909 | if (client && client->addr == addr) |
| 910 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | return 0; |
| 912 | } |
| 913 | |
Jean Delvare | 5e31c2b | 2007-11-15 19:24:02 +0100 | [diff] [blame] | 914 | static int i2c_check_addr(struct i2c_adapter *adapter, int addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | { |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 916 | return device_for_each_child(&adapter->dev, &addr, __i2c_check_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } |
| 918 | |
Jean Delvare | e48d331 | 2008-01-27 18:14:48 +0100 | [diff] [blame] | 919 | /** |
| 920 | * i2c_use_client - increments the reference count of the i2c client structure |
| 921 | * @client: the client being referenced |
| 922 | * |
| 923 | * Each live reference to a client should be refcounted. The driver model does |
| 924 | * that automatically as part of driver binding, so that most drivers don't |
| 925 | * need to do this explicitly: they hold a reference until they're unbound |
| 926 | * from the device. |
| 927 | * |
| 928 | * A pointer to the client with the incremented reference counter is returned. |
| 929 | */ |
| 930 | struct i2c_client *i2c_use_client(struct i2c_client *client) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | { |
David Brownell | 6ea438e | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 932 | if (client && get_device(&client->dev)) |
| 933 | return client; |
| 934 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 936 | EXPORT_SYMBOL(i2c_use_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | |
Jean Delvare | e48d331 | 2008-01-27 18:14:48 +0100 | [diff] [blame] | 938 | /** |
| 939 | * i2c_release_client - release a use of the i2c client structure |
| 940 | * @client: the client being no longer referenced |
| 941 | * |
| 942 | * Must be called when a user of a client is finished with it. |
| 943 | */ |
| 944 | void i2c_release_client(struct i2c_client *client) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | { |
David Brownell | 6ea438e | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 946 | if (client) |
| 947 | put_device(&client->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 949 | EXPORT_SYMBOL(i2c_release_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 951 | struct i2c_cmd_arg { |
| 952 | unsigned cmd; |
| 953 | void *arg; |
| 954 | }; |
| 955 | |
| 956 | static int i2c_cmd(struct device *dev, void *_arg) |
| 957 | { |
| 958 | struct i2c_client *client = i2c_verify_client(dev); |
| 959 | struct i2c_cmd_arg *arg = _arg; |
| 960 | |
| 961 | if (client && client->driver && client->driver->command) |
| 962 | client->driver->command(client, arg->cmd, arg->arg); |
| 963 | return 0; |
| 964 | } |
| 965 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg) |
| 967 | { |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 968 | struct i2c_cmd_arg cmd_arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 970 | cmd_arg.cmd = cmd; |
| 971 | cmd_arg.arg = arg; |
| 972 | device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 974 | EXPORT_SYMBOL(i2c_clients_command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
| 976 | static int __init i2c_init(void) |
| 977 | { |
| 978 | int retval; |
| 979 | |
| 980 | retval = bus_register(&i2c_bus_type); |
| 981 | if (retval) |
| 982 | return retval; |
Jean Delvare | 2bb5095 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 983 | #ifdef CONFIG_I2C_COMPAT |
| 984 | i2c_adapter_compat_class = class_compat_register("i2c-adapter"); |
| 985 | if (!i2c_adapter_compat_class) { |
| 986 | retval = -ENOMEM; |
| 987 | goto bus_err; |
| 988 | } |
| 989 | #endif |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 990 | retval = i2c_add_driver(&dummy_driver); |
| 991 | if (retval) |
Jean Delvare | 2bb5095 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 992 | goto class_err; |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 993 | return 0; |
| 994 | |
Jean Delvare | 2bb5095 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 995 | class_err: |
| 996 | #ifdef CONFIG_I2C_COMPAT |
| 997 | class_compat_unregister(i2c_adapter_compat_class); |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 998 | bus_err: |
Jean Delvare | 2bb5095 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 999 | #endif |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 1000 | bus_unregister(&i2c_bus_type); |
| 1001 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | } |
| 1003 | |
| 1004 | static void __exit i2c_exit(void) |
| 1005 | { |
David Brownell | e9f1373 | 2008-01-27 18:14:52 +0100 | [diff] [blame] | 1006 | i2c_del_driver(&dummy_driver); |
Jean Delvare | 2bb5095 | 2009-09-18 22:45:46 +0200 | [diff] [blame] | 1007 | #ifdef CONFIG_I2C_COMPAT |
| 1008 | class_compat_unregister(i2c_adapter_compat_class); |
| 1009 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | bus_unregister(&i2c_bus_type); |
| 1011 | } |
| 1012 | |
David Brownell | a10f9e7 | 2008-10-14 17:30:06 +0200 | [diff] [blame] | 1013 | /* We must initialize early, because some subsystems register i2c drivers |
| 1014 | * in subsys_initcall() code, but are linked (and initialized) before i2c. |
| 1015 | */ |
| 1016 | postcore_initcall(i2c_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | module_exit(i2c_exit); |
| 1018 | |
| 1019 | /* ---------------------------------------------------- |
| 1020 | * the functional interface to the i2c busses. |
| 1021 | * ---------------------------------------------------- |
| 1022 | */ |
| 1023 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1024 | /** |
| 1025 | * i2c_transfer - execute a single or combined I2C message |
| 1026 | * @adap: Handle to I2C bus |
| 1027 | * @msgs: One or more messages to execute before STOP is issued to |
| 1028 | * terminate the operation; each message begins with a START. |
| 1029 | * @num: Number of messages to be executed. |
| 1030 | * |
| 1031 | * Returns negative errno, else the number of messages executed. |
| 1032 | * |
| 1033 | * Note that there is no requirement that each message be sent to |
| 1034 | * the same slave address, although that is the most common model. |
| 1035 | */ |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 1036 | int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | { |
Clifford Wolf | 66b650f | 2009-06-15 18:01:46 +0200 | [diff] [blame] | 1038 | unsigned long orig_jiffies; |
| 1039 | int ret, try; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1041 | /* REVISIT the fault reporting model here is weak: |
| 1042 | * |
| 1043 | * - When we get an error after receiving N bytes from a slave, |
| 1044 | * there is no way to report "N". |
| 1045 | * |
| 1046 | * - When we get a NAK after transmitting N bytes to a slave, |
| 1047 | * there is no way to report "N" ... or to let the master |
| 1048 | * continue executing the rest of this combined message, if |
| 1049 | * that's the appropriate response. |
| 1050 | * |
| 1051 | * - When for example "num" is two and we successfully complete |
| 1052 | * the first message but get an error part way through the |
| 1053 | * second, it's unclear whether that should be reported as |
| 1054 | * one (discarding status on the second message) or errno |
| 1055 | * (discarding status on the first one). |
| 1056 | */ |
| 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | if (adap->algo->master_xfer) { |
| 1059 | #ifdef DEBUG |
| 1060 | for (ret = 0; ret < num; ret++) { |
| 1061 | dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, " |
Jean Delvare | 209d27c | 2007-05-01 23:26:29 +0200 | [diff] [blame] | 1062 | "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD) |
| 1063 | ? 'R' : 'W', msgs[ret].addr, msgs[ret].len, |
| 1064 | (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | } |
| 1066 | #endif |
| 1067 | |
Mike Rapoport | cea443a8 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1068 | if (in_atomic() || irqs_disabled()) { |
Mika Kuoppala | 194684e | 2009-12-06 17:06:22 +0100 | [diff] [blame] | 1069 | ret = rt_mutex_trylock(&adap->bus_lock); |
Mike Rapoport | cea443a8 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1070 | if (!ret) |
| 1071 | /* I2C activity is ongoing. */ |
| 1072 | return -EAGAIN; |
| 1073 | } else { |
Mika Kuoppala | 194684e | 2009-12-06 17:06:22 +0100 | [diff] [blame] | 1074 | rt_mutex_lock(&adap->bus_lock); |
Mike Rapoport | cea443a8 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1075 | } |
| 1076 | |
Clifford Wolf | 66b650f | 2009-06-15 18:01:46 +0200 | [diff] [blame] | 1077 | /* Retry automatically on arbitration loss */ |
| 1078 | orig_jiffies = jiffies; |
| 1079 | for (ret = 0, try = 0; try <= adap->retries; try++) { |
| 1080 | ret = adap->algo->master_xfer(adap, msgs, num); |
| 1081 | if (ret != -EAGAIN) |
| 1082 | break; |
| 1083 | if (time_after(jiffies, orig_jiffies + adap->timeout)) |
| 1084 | break; |
| 1085 | } |
Mika Kuoppala | 194684e | 2009-12-06 17:06:22 +0100 | [diff] [blame] | 1086 | rt_mutex_unlock(&adap->bus_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | |
| 1088 | return ret; |
| 1089 | } else { |
| 1090 | dev_dbg(&adap->dev, "I2C level transfers not supported\n"); |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1091 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | } |
| 1093 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1094 | EXPORT_SYMBOL(i2c_transfer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1096 | /** |
| 1097 | * i2c_master_send - issue a single I2C message in master transmit mode |
| 1098 | * @client: Handle to slave device |
| 1099 | * @buf: Data that will be written to the slave |
| 1100 | * @count: How many bytes to write |
| 1101 | * |
| 1102 | * Returns negative errno, or else the number of bytes written. |
| 1103 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | int i2c_master_send(struct i2c_client *client,const char *buf ,int count) |
| 1105 | { |
| 1106 | int ret; |
| 1107 | struct i2c_adapter *adap=client->adapter; |
| 1108 | struct i2c_msg msg; |
| 1109 | |
Jean Delvare | 815f55f | 2005-05-07 22:58:46 +0200 | [diff] [blame] | 1110 | msg.addr = client->addr; |
| 1111 | msg.flags = client->flags & I2C_M_TEN; |
| 1112 | msg.len = count; |
| 1113 | msg.buf = (char *)buf; |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1114 | |
Jean Delvare | 815f55f | 2005-05-07 22:58:46 +0200 | [diff] [blame] | 1115 | ret = i2c_transfer(adap, &msg, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | |
Jean Delvare | 815f55f | 2005-05-07 22:58:46 +0200 | [diff] [blame] | 1117 | /* If everything went ok (i.e. 1 msg transmitted), return #bytes |
| 1118 | transmitted, else error code. */ |
| 1119 | return (ret == 1) ? count : ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1121 | EXPORT_SYMBOL(i2c_master_send); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1123 | /** |
| 1124 | * i2c_master_recv - issue a single I2C message in master receive mode |
| 1125 | * @client: Handle to slave device |
| 1126 | * @buf: Where to store data read from slave |
| 1127 | * @count: How many bytes to read |
| 1128 | * |
| 1129 | * Returns negative errno, or else the number of bytes read. |
| 1130 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | int i2c_master_recv(struct i2c_client *client, char *buf ,int count) |
| 1132 | { |
| 1133 | struct i2c_adapter *adap=client->adapter; |
| 1134 | struct i2c_msg msg; |
| 1135 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | |
Jean Delvare | 815f55f | 2005-05-07 22:58:46 +0200 | [diff] [blame] | 1137 | msg.addr = client->addr; |
| 1138 | msg.flags = client->flags & I2C_M_TEN; |
| 1139 | msg.flags |= I2C_M_RD; |
| 1140 | msg.len = count; |
| 1141 | msg.buf = buf; |
| 1142 | |
| 1143 | ret = i2c_transfer(adap, &msg, 1); |
| 1144 | |
| 1145 | /* If everything went ok (i.e. 1 msg transmitted), return #bytes |
| 1146 | transmitted, else error code. */ |
| 1147 | return (ret == 1) ? count : ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1149 | EXPORT_SYMBOL(i2c_master_recv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | /* ---------------------------------------------------- |
| 1152 | * the i2c address scanning function |
| 1153 | * Will not work for 10-bit addresses! |
| 1154 | * ---------------------------------------------------- |
| 1155 | */ |
Jean Delvare | 9fc6adf | 2005-07-31 21:20:43 +0200 | [diff] [blame] | 1156 | |
Jean Delvare | ccfbbd0 | 2009-12-06 17:06:25 +0100 | [diff] [blame] | 1157 | static int i2c_detect_address(struct i2c_client *temp_client, |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 1158 | struct i2c_driver *driver) |
| 1159 | { |
| 1160 | struct i2c_board_info info; |
| 1161 | struct i2c_adapter *adapter = temp_client->adapter; |
| 1162 | int addr = temp_client->addr; |
| 1163 | int err; |
| 1164 | |
| 1165 | /* Make sure the address is valid */ |
| 1166 | if (addr < 0x03 || addr > 0x77) { |
| 1167 | dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n", |
| 1168 | addr); |
| 1169 | return -EINVAL; |
| 1170 | } |
| 1171 | |
| 1172 | /* Skip if already in use */ |
| 1173 | if (i2c_check_addr(adapter, addr)) |
| 1174 | return 0; |
| 1175 | |
Jean Delvare | ccfbbd0 | 2009-12-06 17:06:25 +0100 | [diff] [blame] | 1176 | /* Make sure there is something at this address */ |
| 1177 | if (i2c_smbus_xfer(adapter, addr, 0, 0, 0, I2C_SMBUS_QUICK, NULL) < 0) |
| 1178 | return 0; |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 1179 | |
Jean Delvare | ccfbbd0 | 2009-12-06 17:06:25 +0100 | [diff] [blame] | 1180 | /* Prevent 24RF08 corruption */ |
| 1181 | if ((addr & ~0x0f) == 0x50) |
| 1182 | i2c_smbus_xfer(adapter, addr, 0, 0, 0, I2C_SMBUS_QUICK, NULL); |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 1183 | |
| 1184 | /* Finally call the custom detection function */ |
| 1185 | memset(&info, 0, sizeof(struct i2c_board_info)); |
| 1186 | info.addr = addr; |
Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame^] | 1187 | err = driver->detect(temp_client, &info); |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 1188 | if (err) { |
| 1189 | /* -ENODEV is returned if the detection fails. We catch it |
| 1190 | here as this isn't an error. */ |
| 1191 | return err == -ENODEV ? 0 : err; |
| 1192 | } |
| 1193 | |
| 1194 | /* Consistency check */ |
| 1195 | if (info.type[0] == '\0') { |
| 1196 | dev_err(&adapter->dev, "%s detection function provided " |
| 1197 | "no name for 0x%x\n", driver->driver.name, |
| 1198 | addr); |
| 1199 | } else { |
| 1200 | struct i2c_client *client; |
| 1201 | |
| 1202 | /* Detection succeeded, instantiate the device */ |
| 1203 | dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n", |
| 1204 | info.type, info.addr); |
| 1205 | client = i2c_new_device(adapter, &info); |
| 1206 | if (client) |
| 1207 | list_add_tail(&client->detected, &driver->clients); |
| 1208 | else |
| 1209 | dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n", |
| 1210 | info.type, info.addr); |
| 1211 | } |
| 1212 | return 0; |
| 1213 | } |
| 1214 | |
| 1215 | static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver) |
| 1216 | { |
| 1217 | const struct i2c_client_address_data *address_data; |
| 1218 | struct i2c_client *temp_client; |
| 1219 | int i, err = 0; |
| 1220 | int adap_id = i2c_adapter_id(adapter); |
| 1221 | |
| 1222 | address_data = driver->address_data; |
| 1223 | if (!driver->detect || !address_data) |
| 1224 | return 0; |
| 1225 | |
| 1226 | /* Set up a temporary client to help detect callback */ |
| 1227 | temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL); |
| 1228 | if (!temp_client) |
| 1229 | return -ENOMEM; |
| 1230 | temp_client->adapter = adapter; |
| 1231 | |
Jean Delvare | 4329cf8 | 2008-08-28 08:33:23 +0200 | [diff] [blame] | 1232 | /* Stop here if the classes do not match */ |
| 1233 | if (!(adapter->class & driver->class)) |
| 1234 | goto exit_free; |
| 1235 | |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 1236 | /* Stop here if we can't use SMBUS_QUICK */ |
| 1237 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) { |
Jean Delvare | c7b25a9 | 2009-12-06 17:06:24 +0100 | [diff] [blame] | 1238 | if (address_data->normal_i2c[0] == I2C_CLIENT_END) |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 1239 | goto exit_free; |
| 1240 | |
| 1241 | dev_warn(&adapter->dev, "SMBus Quick command not supported, " |
| 1242 | "can't probe for chips\n"); |
| 1243 | err = -EOPNOTSUPP; |
| 1244 | goto exit_free; |
| 1245 | } |
| 1246 | |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 1247 | for (i = 0; address_data->normal_i2c[i] != I2C_CLIENT_END; i += 1) { |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 1248 | dev_dbg(&adapter->dev, "found normal entry for adapter %d, " |
| 1249 | "addr 0x%02x\n", adap_id, |
| 1250 | address_data->normal_i2c[i]); |
| 1251 | temp_client->addr = address_data->normal_i2c[i]; |
Jean Delvare | ccfbbd0 | 2009-12-06 17:06:25 +0100 | [diff] [blame] | 1252 | err = i2c_detect_address(temp_client, driver); |
Jean Delvare | 4735c98 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 1253 | if (err) |
| 1254 | goto exit_free; |
| 1255 | } |
| 1256 | |
| 1257 | exit_free: |
| 1258 | kfree(temp_client); |
| 1259 | return err; |
| 1260 | } |
| 1261 | |
Jean Delvare | 12b5053a | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1262 | struct i2c_client * |
| 1263 | i2c_new_probed_device(struct i2c_adapter *adap, |
| 1264 | struct i2c_board_info *info, |
| 1265 | unsigned short const *addr_list) |
| 1266 | { |
| 1267 | int i; |
| 1268 | |
| 1269 | /* Stop here if the bus doesn't support probing */ |
| 1270 | if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE)) { |
| 1271 | dev_err(&adap->dev, "Probing not supported\n"); |
| 1272 | return NULL; |
| 1273 | } |
| 1274 | |
Jean Delvare | 12b5053a | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1275 | for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) { |
| 1276 | /* Check address validity */ |
| 1277 | if (addr_list[i] < 0x03 || addr_list[i] > 0x77) { |
| 1278 | dev_warn(&adap->dev, "Invalid 7-bit address " |
| 1279 | "0x%02x\n", addr_list[i]); |
| 1280 | continue; |
| 1281 | } |
| 1282 | |
| 1283 | /* Check address availability */ |
David Brownell | 9b766b8 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 1284 | if (i2c_check_addr(adap, addr_list[i])) { |
Jean Delvare | 12b5053a | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1285 | dev_dbg(&adap->dev, "Address 0x%02x already in " |
| 1286 | "use, not probing\n", addr_list[i]); |
| 1287 | continue; |
| 1288 | } |
| 1289 | |
| 1290 | /* Test address responsiveness |
| 1291 | The default probe method is a quick write, but it is known |
| 1292 | to corrupt the 24RF08 EEPROMs due to a state machine bug, |
| 1293 | and could also irreversibly write-protect some EEPROMs, so |
| 1294 | for address ranges 0x30-0x37 and 0x50-0x5f, we use a byte |
| 1295 | read instead. Also, some bus drivers don't implement |
| 1296 | quick write, so we fallback to a byte read it that case |
| 1297 | too. */ |
| 1298 | if ((addr_list[i] & ~0x07) == 0x30 |
| 1299 | || (addr_list[i] & ~0x0f) == 0x50 |
| 1300 | || !i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK)) { |
Hans Verkuil | b25b791 | 2008-08-10 22:56:15 +0200 | [diff] [blame] | 1301 | union i2c_smbus_data data; |
| 1302 | |
Jean Delvare | 12b5053a | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1303 | if (i2c_smbus_xfer(adap, addr_list[i], 0, |
| 1304 | I2C_SMBUS_READ, 0, |
Hans Verkuil | b25b791 | 2008-08-10 22:56:15 +0200 | [diff] [blame] | 1305 | I2C_SMBUS_BYTE, &data) >= 0) |
Jean Delvare | 12b5053a | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1306 | break; |
| 1307 | } else { |
| 1308 | if (i2c_smbus_xfer(adap, addr_list[i], 0, |
| 1309 | I2C_SMBUS_WRITE, 0, |
| 1310 | I2C_SMBUS_QUICK, NULL) >= 0) |
| 1311 | break; |
| 1312 | } |
| 1313 | } |
Jean Delvare | 12b5053a | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1314 | |
| 1315 | if (addr_list[i] == I2C_CLIENT_END) { |
| 1316 | dev_dbg(&adap->dev, "Probing failed, no device found\n"); |
| 1317 | return NULL; |
| 1318 | } |
| 1319 | |
| 1320 | info->addr = addr_list[i]; |
| 1321 | return i2c_new_device(adap, info); |
| 1322 | } |
| 1323 | EXPORT_SYMBOL_GPL(i2c_new_probed_device); |
| 1324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | struct i2c_adapter* i2c_get_adapter(int id) |
| 1326 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | struct i2c_adapter *adapter; |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1328 | |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 1329 | mutex_lock(&core_lock); |
Jack Stone | 1cf92b4 | 2009-06-15 18:01:46 +0200 | [diff] [blame] | 1330 | adapter = idr_find(&i2c_adapter_idr, id); |
Mark M. Hoffman | a0920e1 | 2005-06-28 00:21:30 -0400 | [diff] [blame] | 1331 | if (adapter && !try_module_get(adapter->owner)) |
| 1332 | adapter = NULL; |
| 1333 | |
Jean Delvare | caada32 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 1334 | mutex_unlock(&core_lock); |
Mark M. Hoffman | a0920e1 | 2005-06-28 00:21:30 -0400 | [diff] [blame] | 1335 | return adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1337 | EXPORT_SYMBOL(i2c_get_adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | |
| 1339 | void i2c_put_adapter(struct i2c_adapter *adap) |
| 1340 | { |
| 1341 | module_put(adap->owner); |
| 1342 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1343 | EXPORT_SYMBOL(i2c_put_adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | |
| 1345 | /* The SMBus parts */ |
| 1346 | |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1347 | #define POLY (0x1070U << 3) |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 1348 | static u8 crc8(u16 data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | { |
| 1350 | int i; |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | for(i = 0; i < 8; i++) { |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1353 | if (data & 0x8000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | data = data ^ POLY; |
| 1355 | data = data << 1; |
| 1356 | } |
| 1357 | return (u8)(data >> 8); |
| 1358 | } |
| 1359 | |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1360 | /* Incremental CRC8 over count bytes in the array pointed to by p */ |
| 1361 | static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | { |
| 1363 | int i; |
| 1364 | |
| 1365 | for(i = 0; i < count; i++) |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1366 | crc = crc8((crc ^ p[i]) << 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | return crc; |
| 1368 | } |
| 1369 | |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1370 | /* Assume a 7-bit address, which is reasonable for SMBus */ |
| 1371 | static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | { |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1373 | /* The address will be sent first */ |
| 1374 | u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD); |
| 1375 | pec = i2c_smbus_pec(pec, &addr, 1); |
| 1376 | |
| 1377 | /* The data buffer follows */ |
| 1378 | return i2c_smbus_pec(pec, msg->buf, msg->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | } |
| 1380 | |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1381 | /* Used for write only transactions */ |
| 1382 | static inline void i2c_smbus_add_pec(struct i2c_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | { |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1384 | msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg); |
| 1385 | msg->len++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | } |
| 1387 | |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1388 | /* Return <0 on CRC error |
| 1389 | If there was a write before this read (most cases) we need to take the |
| 1390 | partial CRC from the write part into account. |
| 1391 | Note that this function does modify the message (we need to decrease the |
| 1392 | message length to hide the CRC byte from the caller). */ |
| 1393 | static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | { |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1395 | u8 rpec = msg->buf[--msg->len]; |
| 1396 | cpec = i2c_smbus_msg_pec(cpec, msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | if (rpec != cpec) { |
| 1399 | pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n", |
| 1400 | rpec, cpec); |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1401 | return -EBADMSG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | } |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1403 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | } |
| 1405 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1406 | /** |
| 1407 | * i2c_smbus_read_byte - SMBus "receive byte" protocol |
| 1408 | * @client: Handle to slave device |
| 1409 | * |
| 1410 | * This executes the SMBus "receive byte" protocol, returning negative errno |
| 1411 | * else the byte received from the device. |
| 1412 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | s32 i2c_smbus_read_byte(struct i2c_client *client) |
| 1414 | { |
| 1415 | union i2c_smbus_data data; |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1416 | int status; |
| 1417 | |
| 1418 | status = i2c_smbus_xfer(client->adapter, client->addr, client->flags, |
| 1419 | I2C_SMBUS_READ, 0, |
| 1420 | I2C_SMBUS_BYTE, &data); |
| 1421 | return (status < 0) ? status : data.byte; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1423 | EXPORT_SYMBOL(i2c_smbus_read_byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1425 | /** |
| 1426 | * i2c_smbus_write_byte - SMBus "send byte" protocol |
| 1427 | * @client: Handle to slave device |
| 1428 | * @value: Byte to be sent |
| 1429 | * |
| 1430 | * This executes the SMBus "send byte" protocol, returning negative errno |
| 1431 | * else zero on success. |
| 1432 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | s32 i2c_smbus_write_byte(struct i2c_client *client, u8 value) |
| 1434 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | return i2c_smbus_xfer(client->adapter,client->addr,client->flags, |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1436 | I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1438 | EXPORT_SYMBOL(i2c_smbus_write_byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1440 | /** |
| 1441 | * i2c_smbus_read_byte_data - SMBus "read byte" protocol |
| 1442 | * @client: Handle to slave device |
| 1443 | * @command: Byte interpreted by slave |
| 1444 | * |
| 1445 | * This executes the SMBus "read byte" protocol, returning negative errno |
| 1446 | * else a data byte received from the device. |
| 1447 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | s32 i2c_smbus_read_byte_data(struct i2c_client *client, u8 command) |
| 1449 | { |
| 1450 | union i2c_smbus_data data; |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1451 | int status; |
| 1452 | |
| 1453 | status = i2c_smbus_xfer(client->adapter, client->addr, client->flags, |
| 1454 | I2C_SMBUS_READ, command, |
| 1455 | I2C_SMBUS_BYTE_DATA, &data); |
| 1456 | return (status < 0) ? status : data.byte; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1458 | EXPORT_SYMBOL(i2c_smbus_read_byte_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1460 | /** |
| 1461 | * i2c_smbus_write_byte_data - SMBus "write byte" protocol |
| 1462 | * @client: Handle to slave device |
| 1463 | * @command: Byte interpreted by slave |
| 1464 | * @value: Byte being written |
| 1465 | * |
| 1466 | * This executes the SMBus "write byte" protocol, returning negative errno |
| 1467 | * else zero on success. |
| 1468 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | s32 i2c_smbus_write_byte_data(struct i2c_client *client, u8 command, u8 value) |
| 1470 | { |
| 1471 | union i2c_smbus_data data; |
| 1472 | data.byte = value; |
| 1473 | return i2c_smbus_xfer(client->adapter,client->addr,client->flags, |
| 1474 | I2C_SMBUS_WRITE,command, |
| 1475 | I2C_SMBUS_BYTE_DATA,&data); |
| 1476 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1477 | EXPORT_SYMBOL(i2c_smbus_write_byte_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1479 | /** |
| 1480 | * i2c_smbus_read_word_data - SMBus "read word" protocol |
| 1481 | * @client: Handle to slave device |
| 1482 | * @command: Byte interpreted by slave |
| 1483 | * |
| 1484 | * This executes the SMBus "read word" protocol, returning negative errno |
| 1485 | * else a 16-bit unsigned "word" received from the device. |
| 1486 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | s32 i2c_smbus_read_word_data(struct i2c_client *client, u8 command) |
| 1488 | { |
| 1489 | union i2c_smbus_data data; |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1490 | int status; |
| 1491 | |
| 1492 | status = i2c_smbus_xfer(client->adapter, client->addr, client->flags, |
| 1493 | I2C_SMBUS_READ, command, |
| 1494 | I2C_SMBUS_WORD_DATA, &data); |
| 1495 | return (status < 0) ? status : data.word; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1497 | EXPORT_SYMBOL(i2c_smbus_read_word_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1499 | /** |
| 1500 | * i2c_smbus_write_word_data - SMBus "write word" protocol |
| 1501 | * @client: Handle to slave device |
| 1502 | * @command: Byte interpreted by slave |
| 1503 | * @value: 16-bit "word" being written |
| 1504 | * |
| 1505 | * This executes the SMBus "write word" protocol, returning negative errno |
| 1506 | * else zero on success. |
| 1507 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | s32 i2c_smbus_write_word_data(struct i2c_client *client, u8 command, u16 value) |
| 1509 | { |
| 1510 | union i2c_smbus_data data; |
| 1511 | data.word = value; |
| 1512 | return i2c_smbus_xfer(client->adapter,client->addr,client->flags, |
| 1513 | I2C_SMBUS_WRITE,command, |
| 1514 | I2C_SMBUS_WORD_DATA,&data); |
| 1515 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1516 | EXPORT_SYMBOL(i2c_smbus_write_word_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | |
David Brownell | a64ec07 | 2007-10-13 23:56:31 +0200 | [diff] [blame] | 1518 | /** |
Prakash Mortha | 596c88f | 2008-10-14 17:30:06 +0200 | [diff] [blame] | 1519 | * i2c_smbus_process_call - SMBus "process call" protocol |
| 1520 | * @client: Handle to slave device |
| 1521 | * @command: Byte interpreted by slave |
| 1522 | * @value: 16-bit "word" being written |
| 1523 | * |
| 1524 | * This executes the SMBus "process call" protocol, returning negative errno |
| 1525 | * else a 16-bit unsigned "word" received from the device. |
| 1526 | */ |
| 1527 | s32 i2c_smbus_process_call(struct i2c_client *client, u8 command, u16 value) |
| 1528 | { |
| 1529 | union i2c_smbus_data data; |
| 1530 | int status; |
| 1531 | data.word = value; |
| 1532 | |
| 1533 | status = i2c_smbus_xfer(client->adapter, client->addr, client->flags, |
| 1534 | I2C_SMBUS_WRITE, command, |
| 1535 | I2C_SMBUS_PROC_CALL, &data); |
| 1536 | return (status < 0) ? status : data.word; |
| 1537 | } |
| 1538 | EXPORT_SYMBOL(i2c_smbus_process_call); |
| 1539 | |
| 1540 | /** |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1541 | * i2c_smbus_read_block_data - SMBus "block read" protocol |
David Brownell | a64ec07 | 2007-10-13 23:56:31 +0200 | [diff] [blame] | 1542 | * @client: Handle to slave device |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1543 | * @command: Byte interpreted by slave |
David Brownell | a64ec07 | 2007-10-13 23:56:31 +0200 | [diff] [blame] | 1544 | * @values: Byte array into which data will be read; big enough to hold |
| 1545 | * the data returned by the slave. SMBus allows at most 32 bytes. |
| 1546 | * |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1547 | * This executes the SMBus "block read" protocol, returning negative errno |
| 1548 | * else the number of data bytes in the slave's response. |
David Brownell | a64ec07 | 2007-10-13 23:56:31 +0200 | [diff] [blame] | 1549 | * |
| 1550 | * Note that using this function requires that the client's adapter support |
| 1551 | * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers |
| 1552 | * support this; its emulation through I2C messaging relies on a specific |
| 1553 | * mechanism (I2C_M_RECV_LEN) which may not be implemented. |
| 1554 | */ |
Jean Delvare | b86a1bc | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 1555 | s32 i2c_smbus_read_block_data(struct i2c_client *client, u8 command, |
| 1556 | u8 *values) |
| 1557 | { |
| 1558 | union i2c_smbus_data data; |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1559 | int status; |
Jean Delvare | b86a1bc | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 1560 | |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1561 | status = i2c_smbus_xfer(client->adapter, client->addr, client->flags, |
| 1562 | I2C_SMBUS_READ, command, |
| 1563 | I2C_SMBUS_BLOCK_DATA, &data); |
| 1564 | if (status) |
| 1565 | return status; |
Jean Delvare | b86a1bc | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 1566 | |
| 1567 | memcpy(values, &data.block[1], data.block[0]); |
| 1568 | return data.block[0]; |
| 1569 | } |
| 1570 | EXPORT_SYMBOL(i2c_smbus_read_block_data); |
| 1571 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1572 | /** |
| 1573 | * i2c_smbus_write_block_data - SMBus "block write" protocol |
| 1574 | * @client: Handle to slave device |
| 1575 | * @command: Byte interpreted by slave |
| 1576 | * @length: Size of data block; SMBus allows at most 32 bytes |
| 1577 | * @values: Byte array which will be written. |
| 1578 | * |
| 1579 | * This executes the SMBus "block write" protocol, returning negative errno |
| 1580 | * else zero on success. |
| 1581 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command, |
Krzysztof Halasa | 46f5ed7 | 2006-06-12 21:42:20 +0200 | [diff] [blame] | 1583 | u8 length, const u8 *values) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | { |
| 1585 | union i2c_smbus_data data; |
Jean Delvare | 7656032 | 2006-01-18 23:14:55 +0100 | [diff] [blame] | 1586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | if (length > I2C_SMBUS_BLOCK_MAX) |
| 1588 | length = I2C_SMBUS_BLOCK_MAX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | data.block[0] = length; |
Jean Delvare | 7656032 | 2006-01-18 23:14:55 +0100 | [diff] [blame] | 1590 | memcpy(&data.block[1], values, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | return i2c_smbus_xfer(client->adapter,client->addr,client->flags, |
| 1592 | I2C_SMBUS_WRITE,command, |
| 1593 | I2C_SMBUS_BLOCK_DATA,&data); |
| 1594 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1595 | EXPORT_SYMBOL(i2c_smbus_write_block_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | |
| 1597 | /* Returns the number of read bytes */ |
Jean Delvare | 4b2643d | 2007-07-12 14:12:29 +0200 | [diff] [blame] | 1598 | s32 i2c_smbus_read_i2c_block_data(struct i2c_client *client, u8 command, |
| 1599 | u8 length, u8 *values) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | { |
| 1601 | union i2c_smbus_data data; |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1602 | int status; |
Jean Delvare | 7656032 | 2006-01-18 23:14:55 +0100 | [diff] [blame] | 1603 | |
Jean Delvare | 4b2643d | 2007-07-12 14:12:29 +0200 | [diff] [blame] | 1604 | if (length > I2C_SMBUS_BLOCK_MAX) |
| 1605 | length = I2C_SMBUS_BLOCK_MAX; |
| 1606 | data.block[0] = length; |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1607 | status = i2c_smbus_xfer(client->adapter, client->addr, client->flags, |
| 1608 | I2C_SMBUS_READ, command, |
| 1609 | I2C_SMBUS_I2C_BLOCK_DATA, &data); |
| 1610 | if (status < 0) |
| 1611 | return status; |
Jean Delvare | 7656032 | 2006-01-18 23:14:55 +0100 | [diff] [blame] | 1612 | |
| 1613 | memcpy(values, &data.block[1], data.block[0]); |
| 1614 | return data.block[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1616 | EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | |
Jean Delvare | 21bbd69 | 2006-01-09 15:19:18 +1100 | [diff] [blame] | 1618 | s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client, u8 command, |
Krzysztof Halasa | 46f5ed7 | 2006-06-12 21:42:20 +0200 | [diff] [blame] | 1619 | u8 length, const u8 *values) |
Jean Delvare | 21bbd69 | 2006-01-09 15:19:18 +1100 | [diff] [blame] | 1620 | { |
| 1621 | union i2c_smbus_data data; |
| 1622 | |
| 1623 | if (length > I2C_SMBUS_BLOCK_MAX) |
| 1624 | length = I2C_SMBUS_BLOCK_MAX; |
| 1625 | data.block[0] = length; |
| 1626 | memcpy(data.block + 1, values, length); |
| 1627 | return i2c_smbus_xfer(client->adapter, client->addr, client->flags, |
| 1628 | I2C_SMBUS_WRITE, command, |
| 1629 | I2C_SMBUS_I2C_BLOCK_DATA, &data); |
| 1630 | } |
David Brownell | c056460 | 2007-05-01 23:26:31 +0200 | [diff] [blame] | 1631 | EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data); |
Jean Delvare | 21bbd69 | 2006-01-09 15:19:18 +1100 | [diff] [blame] | 1632 | |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1633 | /* Simulate a SMBus command using the i2c protocol |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | No checking of parameters is done! */ |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1635 | static s32 i2c_smbus_xfer_emulated(struct i2c_adapter * adapter, u16 addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | unsigned short flags, |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1637 | char read_write, u8 command, int size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | union i2c_smbus_data * data) |
| 1639 | { |
| 1640 | /* So we need to generate a series of msgs. In the case of writing, we |
| 1641 | need to use only one message; when reading, we need two. We initialize |
| 1642 | most things with sane defaults, to keep the code below somewhat |
| 1643 | simpler. */ |
Hideki Iwamoto | 5c50d18 | 2005-09-25 17:01:11 +0200 | [diff] [blame] | 1644 | unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3]; |
| 1645 | unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | int num = read_write == I2C_SMBUS_READ?2:1; |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1647 | struct i2c_msg msg[2] = { { addr, flags, 1, msgbuf0 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | { addr, flags | I2C_M_RD, 0, msgbuf1 } |
| 1649 | }; |
| 1650 | int i; |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1651 | u8 partial_pec = 0; |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1652 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | |
| 1654 | msgbuf0[0] = command; |
| 1655 | switch(size) { |
| 1656 | case I2C_SMBUS_QUICK: |
| 1657 | msg[0].len = 0; |
| 1658 | /* Special case: The read/write field is used as data */ |
Roel Kluin | f29d2e0 | 2009-02-24 19:19:48 +0100 | [diff] [blame] | 1659 | msg[0].flags = flags | (read_write == I2C_SMBUS_READ ? |
| 1660 | I2C_M_RD : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | num = 1; |
| 1662 | break; |
| 1663 | case I2C_SMBUS_BYTE: |
| 1664 | if (read_write == I2C_SMBUS_READ) { |
| 1665 | /* Special case: only a read! */ |
| 1666 | msg[0].flags = I2C_M_RD | flags; |
| 1667 | num = 1; |
| 1668 | } |
| 1669 | break; |
| 1670 | case I2C_SMBUS_BYTE_DATA: |
| 1671 | if (read_write == I2C_SMBUS_READ) |
| 1672 | msg[1].len = 1; |
| 1673 | else { |
| 1674 | msg[0].len = 2; |
| 1675 | msgbuf0[1] = data->byte; |
| 1676 | } |
| 1677 | break; |
| 1678 | case I2C_SMBUS_WORD_DATA: |
| 1679 | if (read_write == I2C_SMBUS_READ) |
| 1680 | msg[1].len = 2; |
| 1681 | else { |
| 1682 | msg[0].len=3; |
| 1683 | msgbuf0[1] = data->word & 0xff; |
Jean Delvare | 7eff82c | 2006-09-03 22:24:00 +0200 | [diff] [blame] | 1684 | msgbuf0[2] = data->word >> 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | } |
| 1686 | break; |
| 1687 | case I2C_SMBUS_PROC_CALL: |
| 1688 | num = 2; /* Special case */ |
| 1689 | read_write = I2C_SMBUS_READ; |
| 1690 | msg[0].len = 3; |
| 1691 | msg[1].len = 2; |
| 1692 | msgbuf0[1] = data->word & 0xff; |
Jean Delvare | 7eff82c | 2006-09-03 22:24:00 +0200 | [diff] [blame] | 1693 | msgbuf0[2] = data->word >> 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | break; |
| 1695 | case I2C_SMBUS_BLOCK_DATA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | if (read_write == I2C_SMBUS_READ) { |
Jean Delvare | 209d27c | 2007-05-01 23:26:29 +0200 | [diff] [blame] | 1697 | msg[1].flags |= I2C_M_RECV_LEN; |
| 1698 | msg[1].len = 1; /* block length will be added by |
| 1699 | the underlying bus driver */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | } else { |
| 1701 | msg[0].len = data->block[0] + 2; |
| 1702 | if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) { |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1703 | dev_err(&adapter->dev, |
| 1704 | "Invalid block write size %d\n", |
| 1705 | data->block[0]); |
| 1706 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | } |
Hideki Iwamoto | 5c50d18 | 2005-09-25 17:01:11 +0200 | [diff] [blame] | 1708 | for (i = 1; i < msg[0].len; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | msgbuf0[i] = data->block[i-1]; |
| 1710 | } |
| 1711 | break; |
| 1712 | case I2C_SMBUS_BLOCK_PROC_CALL: |
Jean Delvare | 209d27c | 2007-05-01 23:26:29 +0200 | [diff] [blame] | 1713 | num = 2; /* Another special case */ |
| 1714 | read_write = I2C_SMBUS_READ; |
| 1715 | if (data->block[0] > I2C_SMBUS_BLOCK_MAX) { |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1716 | dev_err(&adapter->dev, |
| 1717 | "Invalid block write size %d\n", |
Jean Delvare | 209d27c | 2007-05-01 23:26:29 +0200 | [diff] [blame] | 1718 | data->block[0]); |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1719 | return -EINVAL; |
Jean Delvare | 209d27c | 2007-05-01 23:26:29 +0200 | [diff] [blame] | 1720 | } |
| 1721 | msg[0].len = data->block[0] + 2; |
| 1722 | for (i = 1; i < msg[0].len; i++) |
| 1723 | msgbuf0[i] = data->block[i-1]; |
| 1724 | msg[1].flags |= I2C_M_RECV_LEN; |
| 1725 | msg[1].len = 1; /* block length will be added by |
| 1726 | the underlying bus driver */ |
| 1727 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | case I2C_SMBUS_I2C_BLOCK_DATA: |
| 1729 | if (read_write == I2C_SMBUS_READ) { |
Jean Delvare | 4b2643d | 2007-07-12 14:12:29 +0200 | [diff] [blame] | 1730 | msg[1].len = data->block[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | } else { |
| 1732 | msg[0].len = data->block[0] + 1; |
Jean Delvare | 30dac74 | 2005-10-08 00:15:59 +0200 | [diff] [blame] | 1733 | if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) { |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1734 | dev_err(&adapter->dev, |
| 1735 | "Invalid block write size %d\n", |
| 1736 | data->block[0]); |
| 1737 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | } |
| 1739 | for (i = 1; i <= data->block[0]; i++) |
| 1740 | msgbuf0[i] = data->block[i]; |
| 1741 | } |
| 1742 | break; |
| 1743 | default: |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1744 | dev_err(&adapter->dev, "Unsupported transaction %d\n", size); |
| 1745 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | } |
| 1747 | |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1748 | i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK |
| 1749 | && size != I2C_SMBUS_I2C_BLOCK_DATA); |
| 1750 | if (i) { |
| 1751 | /* Compute PEC if first message is a write */ |
| 1752 | if (!(msg[0].flags & I2C_M_RD)) { |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1753 | if (num == 1) /* Write only */ |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1754 | i2c_smbus_add_pec(&msg[0]); |
| 1755 | else /* Write followed by read */ |
| 1756 | partial_pec = i2c_smbus_msg_pec(0, &msg[0]); |
| 1757 | } |
| 1758 | /* Ask for PEC if last message is a read */ |
| 1759 | if (msg[num-1].flags & I2C_M_RD) |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1760 | msg[num-1].len++; |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1761 | } |
| 1762 | |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1763 | status = i2c_transfer(adapter, msg, num); |
| 1764 | if (status < 0) |
| 1765 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1767 | /* Check PEC if last message is a read */ |
| 1768 | if (i && (msg[num-1].flags & I2C_M_RD)) { |
David Brownell | 24a5bb7 | 2008-07-14 22:38:23 +0200 | [diff] [blame] | 1769 | status = i2c_smbus_check_pec(partial_pec, &msg[num-1]); |
| 1770 | if (status < 0) |
| 1771 | return status; |
Jean Delvare | 421ef47 | 2005-10-26 21:28:55 +0200 | [diff] [blame] | 1772 | } |
| 1773 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | if (read_write == I2C_SMBUS_READ) |
| 1775 | switch(size) { |
| 1776 | case I2C_SMBUS_BYTE: |
| 1777 | data->byte = msgbuf0[0]; |
| 1778 | break; |
| 1779 | case I2C_SMBUS_BYTE_DATA: |
| 1780 | data->byte = msgbuf1[0]; |
| 1781 | break; |
David Brownell | 438d6c2 | 2006-12-10 21:21:31 +0100 | [diff] [blame] | 1782 | case I2C_SMBUS_WORD_DATA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | case I2C_SMBUS_PROC_CALL: |
| 1784 | data->word = msgbuf1[0] | (msgbuf1[1] << 8); |
| 1785 | break; |
| 1786 | case I2C_SMBUS_I2C_BLOCK_DATA: |
Jean Delvare | 4b2643d | 2007-07-12 14:12:29 +0200 | [diff] [blame] | 1787 | for (i = 0; i < data->block[0]; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | data->block[i+1] = msgbuf1[i]; |
| 1789 | break; |
Jean Delvare | 209d27c | 2007-05-01 23:26:29 +0200 | [diff] [blame] | 1790 | case I2C_SMBUS_BLOCK_DATA: |
| 1791 | case I2C_SMBUS_BLOCK_PROC_CALL: |
| 1792 | for (i = 0; i < msgbuf1[0] + 1; i++) |
| 1793 | data->block[i] = msgbuf1[i]; |
| 1794 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | } |
| 1796 | return 0; |
| 1797 | } |
| 1798 | |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1799 | /** |
| 1800 | * i2c_smbus_xfer - execute SMBus protocol operations |
| 1801 | * @adapter: Handle to I2C bus |
| 1802 | * @addr: Address of SMBus slave on that bus |
| 1803 | * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC) |
| 1804 | * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE |
| 1805 | * @command: Byte interpreted by slave, for protocols which use such bytes |
| 1806 | * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL |
| 1807 | * @data: Data to be read or written |
| 1808 | * |
| 1809 | * This executes an SMBus protocol operation, and returns a negative |
| 1810 | * errno code else zero on success. |
| 1811 | */ |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 1812 | s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags, |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1813 | char read_write, u8 command, int protocol, |
Zhenwen Xu | 09b8ce0 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 1814 | union i2c_smbus_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | { |
Clifford Wolf | 66b650f | 2009-06-15 18:01:46 +0200 | [diff] [blame] | 1816 | unsigned long orig_jiffies; |
| 1817 | int try; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | s32 res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | |
| 1820 | flags &= I2C_M_TEN | I2C_CLIENT_PEC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | |
| 1822 | if (adapter->algo->smbus_xfer) { |
Mika Kuoppala | 194684e | 2009-12-06 17:06:22 +0100 | [diff] [blame] | 1823 | rt_mutex_lock(&adapter->bus_lock); |
Clifford Wolf | 66b650f | 2009-06-15 18:01:46 +0200 | [diff] [blame] | 1824 | |
| 1825 | /* Retry automatically on arbitration loss */ |
| 1826 | orig_jiffies = jiffies; |
| 1827 | for (res = 0, try = 0; try <= adapter->retries; try++) { |
| 1828 | res = adapter->algo->smbus_xfer(adapter, addr, flags, |
| 1829 | read_write, command, |
| 1830 | protocol, data); |
| 1831 | if (res != -EAGAIN) |
| 1832 | break; |
| 1833 | if (time_after(jiffies, |
| 1834 | orig_jiffies + adapter->timeout)) |
| 1835 | break; |
| 1836 | } |
Mika Kuoppala | 194684e | 2009-12-06 17:06:22 +0100 | [diff] [blame] | 1837 | rt_mutex_unlock(&adapter->bus_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | } else |
| 1839 | res = i2c_smbus_xfer_emulated(adapter,addr,flags,read_write, |
David Brownell | a1cdeda | 2008-07-14 22:38:24 +0200 | [diff] [blame] | 1840 | command, protocol, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | return res; |
| 1843 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | EXPORT_SYMBOL(i2c_smbus_xfer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | |
| 1846 | MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); |
| 1847 | MODULE_DESCRIPTION("I2C-Bus main module"); |
| 1848 | MODULE_LICENSE("GPL"); |