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