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