Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Functions to handle I2O devices |
| 3 | * |
| 4 | * Copyright (C) 2004 Markus Lidel <Markus.Lidel@shadowconnect.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2 of the License, or (at your |
| 9 | * option) any later version. |
| 10 | * |
| 11 | * Fixes/additions: |
| 12 | * Markus Lidel <Markus.Lidel@shadowconnect.com> |
| 13 | * initial version. |
| 14 | */ |
| 15 | |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/i2o.h> |
| 18 | #include <linux/delay.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 19 | #include <linux/string.h> |
| 20 | #include <linux/slab.h> |
Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 21 | #include "core.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | /** |
| 24 | * i2o_device_issue_claim - claim or release a device |
| 25 | * @dev: I2O device to claim or release |
| 26 | * @cmd: claim or release command |
| 27 | * @type: type of claim |
| 28 | * |
| 29 | * Issue I2O UTIL_CLAIM or UTIL_RELEASE messages. The message to be sent |
| 30 | * is set by cmd. dev is the I2O device which should be claim or |
| 31 | * released and the type is the claim type (see the I2O spec). |
| 32 | * |
| 33 | * Returs 0 on success or negative error code on failure. |
| 34 | */ |
| 35 | static inline int i2o_device_issue_claim(struct i2o_device *dev, u32 cmd, |
| 36 | u32 type) |
| 37 | { |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 38 | struct i2o_message *msg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 40 | msg = i2o_msg_get_wait(dev->iop, I2O_TIMEOUT_MESSAGE_GET); |
| 41 | if (IS_ERR(msg)) |
| 42 | return PTR_ERR(msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 44 | msg->u.head[0] = cpu_to_le32(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0); |
| 45 | msg->u.head[1] = |
Markus Lidel | 524e3b6 | 2006-01-06 00:19:34 -0800 | [diff] [blame] | 46 | cpu_to_le32(cmd << 24 | HOST_TID << 12 | dev->lct_data.tid); |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 47 | msg->body[0] = cpu_to_le32(type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 49 | return i2o_msg_post_wait(dev->iop, msg, 60); |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 50 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | /** |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 53 | * i2o_device_claim - claim a device for use by an OSM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | * @dev: I2O device to claim |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | * |
Randy Dunlap | d9489fb | 2006-12-06 20:38:43 -0800 | [diff] [blame] | 56 | * Do the leg work to assign a device to a given OSM. If the claim succeeds, |
| 57 | * the owner is the primary. If the attempt fails a negative errno code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | * is returned. On success zero is returned. |
| 59 | */ |
| 60 | int i2o_device_claim(struct i2o_device *dev) |
| 61 | { |
| 62 | int rc = 0; |
| 63 | |
Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 64 | mutex_lock(&dev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
| 66 | rc = i2o_device_issue_claim(dev, I2O_CMD_UTIL_CLAIM, I2O_CLAIM_PRIMARY); |
| 67 | if (!rc) |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 68 | pr_debug("i2o: claim of device %d succeeded\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | dev->lct_data.tid); |
| 70 | else |
| 71 | pr_debug("i2o: claim of device %d failed %d\n", |
| 72 | dev->lct_data.tid, rc); |
| 73 | |
Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 74 | mutex_unlock(&dev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | return rc; |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 77 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | /** |
| 80 | * i2o_device_claim_release - release a device that the OSM is using |
| 81 | * @dev: device to release |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | * |
| 83 | * Drop a claim by an OSM on a given I2O device. |
| 84 | * |
| 85 | * AC - some devices seem to want to refuse an unclaim until they have |
| 86 | * finished internal processing. It makes sense since you don't want a |
| 87 | * new device to go reconfiguring the entire system until you are done. |
| 88 | * Thus we are prepared to wait briefly. |
| 89 | * |
| 90 | * Returns 0 on success or negative error code on failure. |
| 91 | */ |
| 92 | int i2o_device_claim_release(struct i2o_device *dev) |
| 93 | { |
| 94 | int tries; |
| 95 | int rc = 0; |
| 96 | |
Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 97 | mutex_lock(&dev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | /* |
| 100 | * If the controller takes a nonblocking approach to |
| 101 | * releases we have to sleep/poll for a few times. |
| 102 | */ |
| 103 | for (tries = 0; tries < 10; tries++) { |
| 104 | rc = i2o_device_issue_claim(dev, I2O_CMD_UTIL_RELEASE, |
| 105 | I2O_CLAIM_PRIMARY); |
| 106 | if (!rc) |
| 107 | break; |
| 108 | |
| 109 | ssleep(1); |
| 110 | } |
| 111 | |
| 112 | if (!rc) |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 113 | pr_debug("i2o: claim release of device %d succeeded\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | dev->lct_data.tid); |
| 115 | else |
| 116 | pr_debug("i2o: claim release of device %d failed %d\n", |
| 117 | dev->lct_data.tid, rc); |
| 118 | |
Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 119 | mutex_unlock(&dev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | return rc; |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 122 | } |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | /** |
| 125 | * i2o_device_release - release the memory for a I2O device |
| 126 | * @dev: I2O device which should be released |
| 127 | * |
| 128 | * Release the allocated memory. This function is called if refcount of |
| 129 | * device reaches 0 automatically. |
| 130 | */ |
| 131 | static void i2o_device_release(struct device *dev) |
| 132 | { |
| 133 | struct i2o_device *i2o_dev = to_i2o_device(dev); |
| 134 | |
Kay Sievers | cd3ed6b | 2009-01-06 10:44:40 -0800 | [diff] [blame] | 135 | pr_debug("i2o: device %s released\n", dev_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
| 137 | kfree(i2o_dev); |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 138 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 140 | /** |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 141 | * i2o_device_show_class_id - Displays class id of I2O device |
| 142 | * @dev: device of which the class id should be displayed |
| 143 | * @attr: pointer to device attribute |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 144 | * @buf: buffer into which the class id should be printed |
| 145 | * |
| 146 | * Returns the number of bytes which are printed into the buffer. |
| 147 | */ |
Dmitry Torokhov | 7bd7b09 | 2005-09-29 00:40:07 -0500 | [diff] [blame] | 148 | static ssize_t i2o_device_show_class_id(struct device *dev, |
| 149 | struct device_attribute *attr, |
| 150 | char *buf) |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 151 | { |
Dmitry Torokhov | 7bd7b09 | 2005-09-29 00:40:07 -0500 | [diff] [blame] | 152 | struct i2o_device *i2o_dev = to_i2o_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Dmitry Torokhov | 7bd7b09 | 2005-09-29 00:40:07 -0500 | [diff] [blame] | 154 | sprintf(buf, "0x%03x\n", i2o_dev->lct_data.class_id); |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 155 | return strlen(buf) + 1; |
| 156 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 158 | /** |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 159 | * i2o_device_show_tid - Displays TID of I2O device |
| 160 | * @dev: device of which the TID should be displayed |
| 161 | * @attr: pointer to device attribute |
| 162 | * @buf: buffer into which the TID should be printed |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 163 | * |
| 164 | * Returns the number of bytes which are printed into the buffer. |
| 165 | */ |
Dmitry Torokhov | 7bd7b09 | 2005-09-29 00:40:07 -0500 | [diff] [blame] | 166 | static ssize_t i2o_device_show_tid(struct device *dev, |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 167 | struct device_attribute *attr, char *buf) |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 168 | { |
Dmitry Torokhov | 7bd7b09 | 2005-09-29 00:40:07 -0500 | [diff] [blame] | 169 | struct i2o_device *i2o_dev = to_i2o_device(dev); |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 170 | |
Dmitry Torokhov | 7bd7b09 | 2005-09-29 00:40:07 -0500 | [diff] [blame] | 171 | sprintf(buf, "0x%03x\n", i2o_dev->lct_data.tid); |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 172 | return strlen(buf) + 1; |
| 173 | } |
| 174 | |
Markus Lidel | 2e1973a | 2006-01-06 00:19:32 -0800 | [diff] [blame] | 175 | /* I2O device attributes */ |
Dmitry Torokhov | 7bd7b09 | 2005-09-29 00:40:07 -0500 | [diff] [blame] | 176 | struct device_attribute i2o_device_attrs[] = { |
| 177 | __ATTR(class_id, S_IRUGO, i2o_device_show_class_id, NULL), |
| 178 | __ATTR(tid, S_IRUGO, i2o_device_show_tid, NULL), |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 179 | __ATTR_NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | }; |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | /** |
| 183 | * i2o_device_alloc - Allocate a I2O device and initialize it |
| 184 | * |
| 185 | * Allocate the memory for a I2O device and initialize locks and lists |
| 186 | * |
| 187 | * Returns the allocated I2O device or a negative error code if the device |
| 188 | * could not be allocated. |
| 189 | */ |
| 190 | static struct i2o_device *i2o_device_alloc(void) |
| 191 | { |
| 192 | struct i2o_device *dev; |
| 193 | |
Markus Lidel | f6ed39a | 2006-01-06 00:19:33 -0800 | [diff] [blame] | 194 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | if (!dev) |
| 196 | return ERR_PTR(-ENOMEM); |
| 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | INIT_LIST_HEAD(&dev->list); |
Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 199 | mutex_init(&dev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
| 201 | dev->device.bus = &i2o_bus_type; |
| 202 | dev->device.release = &i2o_device_release; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
| 204 | return dev; |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | * i2o_device_add - allocate a new I2O device and add it to the IOP |
Randy Dunlap | d9489fb | 2006-12-06 20:38:43 -0800 | [diff] [blame] | 209 | * @c: I2O controller that the device is on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | * @entry: LCT entry of the I2O device |
| 211 | * |
| 212 | * Allocate a new I2O device and initialize it with the LCT entry. The |
| 213 | * device is appended to the device list of the controller. |
| 214 | * |
Jeff Garzik | 3889b26 | 2006-12-06 20:35:31 -0800 | [diff] [blame] | 215 | * Returns zero on success, or a -ve errno. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | */ |
Jeff Garzik | 3889b26 | 2006-12-06 20:35:31 -0800 | [diff] [blame] | 217 | static int i2o_device_add(struct i2o_controller *c, i2o_lct_entry *entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | { |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 219 | struct i2o_device *i2o_dev, *tmp; |
Jeff Garzik | 3889b26 | 2006-12-06 20:35:31 -0800 | [diff] [blame] | 220 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 222 | i2o_dev = i2o_device_alloc(); |
| 223 | if (IS_ERR(i2o_dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | printk(KERN_ERR "i2o: unable to allocate i2o device\n"); |
Jeff Garzik | 3889b26 | 2006-12-06 20:35:31 -0800 | [diff] [blame] | 225 | return PTR_ERR(i2o_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 228 | i2o_dev->lct_data = *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Kay Sievers | cd3ed6b | 2009-01-06 10:44:40 -0800 | [diff] [blame] | 230 | dev_set_name(&i2o_dev->device, "%d:%03x", c->unit, |
| 231 | i2o_dev->lct_data.tid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 233 | i2o_dev->iop = c; |
| 234 | i2o_dev->device.parent = &c->device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
Jeff Garzik | 3889b26 | 2006-12-06 20:35:31 -0800 | [diff] [blame] | 236 | rc = device_register(&i2o_dev->device); |
| 237 | if (rc) |
| 238 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 240 | list_add_tail(&i2o_dev->list, &c->devices); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 242 | /* create user entries for this device */ |
| 243 | tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.user_tid); |
Wang Chen | 0293902 | 2008-07-23 21:30:01 -0700 | [diff] [blame] | 244 | if (tmp && (tmp != i2o_dev)) { |
| 245 | rc = sysfs_create_link(&i2o_dev->device.kobj, |
| 246 | &tmp->device.kobj, "user"); |
| 247 | if (rc) |
| 248 | goto unreg_dev; |
| 249 | } |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 250 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 251 | /* create user entries referring to this device */ |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 252 | list_for_each_entry(tmp, &c->devices, list) |
Markus Lidel | 524e3b6 | 2006-01-06 00:19:34 -0800 | [diff] [blame] | 253 | if ((tmp->lct_data.user_tid == i2o_dev->lct_data.tid) |
Wang Chen | 0293902 | 2008-07-23 21:30:01 -0700 | [diff] [blame] | 254 | && (tmp != i2o_dev)) { |
| 255 | rc = sysfs_create_link(&tmp->device.kobj, |
| 256 | &i2o_dev->device.kobj, "user"); |
| 257 | if (rc) |
| 258 | goto rmlink1; |
| 259 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 261 | /* create parent entries for this device */ |
| 262 | tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.parent_tid); |
Wang Chen | 0293902 | 2008-07-23 21:30:01 -0700 | [diff] [blame] | 263 | if (tmp && (tmp != i2o_dev)) { |
| 264 | rc = sysfs_create_link(&i2o_dev->device.kobj, |
| 265 | &tmp->device.kobj, "parent"); |
| 266 | if (rc) |
| 267 | goto rmlink1; |
| 268 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 270 | /* create parent entries referring to this device */ |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 271 | list_for_each_entry(tmp, &c->devices, list) |
Markus Lidel | 524e3b6 | 2006-01-06 00:19:34 -0800 | [diff] [blame] | 272 | if ((tmp->lct_data.parent_tid == i2o_dev->lct_data.tid) |
Wang Chen | 0293902 | 2008-07-23 21:30:01 -0700 | [diff] [blame] | 273 | && (tmp != i2o_dev)) { |
| 274 | rc = sysfs_create_link(&tmp->device.kobj, |
| 275 | &i2o_dev->device.kobj, "parent"); |
| 276 | if (rc) |
| 277 | goto rmlink2; |
| 278 | } |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 279 | |
| 280 | i2o_driver_notify_device_add_all(i2o_dev); |
| 281 | |
Kay Sievers | cd3ed6b | 2009-01-06 10:44:40 -0800 | [diff] [blame] | 282 | pr_debug("i2o: device %s added\n", dev_name(&i2o_dev->device)); |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 283 | |
Jeff Garzik | 3889b26 | 2006-12-06 20:35:31 -0800 | [diff] [blame] | 284 | return 0; |
| 285 | |
Wang Chen | 0293902 | 2008-07-23 21:30:01 -0700 | [diff] [blame] | 286 | rmlink2: |
| 287 | /* If link creating failed halfway, we loop whole list to cleanup. |
| 288 | * And we don't care wrong removing of link, because sysfs_remove_link |
| 289 | * will take care of it. |
| 290 | */ |
| 291 | list_for_each_entry(tmp, &c->devices, list) { |
| 292 | if (tmp->lct_data.parent_tid == i2o_dev->lct_data.tid) |
| 293 | sysfs_remove_link(&tmp->device.kobj, "parent"); |
| 294 | } |
| 295 | sysfs_remove_link(&i2o_dev->device.kobj, "parent"); |
| 296 | rmlink1: |
| 297 | list_for_each_entry(tmp, &c->devices, list) |
| 298 | if (tmp->lct_data.user_tid == i2o_dev->lct_data.tid) |
| 299 | sysfs_remove_link(&tmp->device.kobj, "user"); |
| 300 | sysfs_remove_link(&i2o_dev->device.kobj, "user"); |
| 301 | unreg_dev: |
| 302 | list_del(&i2o_dev->list); |
| 303 | device_unregister(&i2o_dev->device); |
Jeff Garzik | 3889b26 | 2006-12-06 20:35:31 -0800 | [diff] [blame] | 304 | err: |
| 305 | kfree(i2o_dev); |
| 306 | return rc; |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 307 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
| 309 | /** |
| 310 | * i2o_device_remove - remove an I2O device from the I2O core |
Randy Dunlap | d9489fb | 2006-12-06 20:38:43 -0800 | [diff] [blame] | 311 | * @i2o_dev: I2O device which should be released |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | * |
| 313 | * Is used on I2O controller removal or LCT modification, when the device |
| 314 | * is removed from the system. Note that the device could still hang |
| 315 | * around until the refcount reaches 0. |
| 316 | */ |
| 317 | void i2o_device_remove(struct i2o_device *i2o_dev) |
| 318 | { |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 319 | struct i2o_device *tmp; |
| 320 | struct i2o_controller *c = i2o_dev->iop; |
| 321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | i2o_driver_notify_device_remove_all(i2o_dev); |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 323 | |
| 324 | sysfs_remove_link(&i2o_dev->device.kobj, "parent"); |
| 325 | sysfs_remove_link(&i2o_dev->device.kobj, "user"); |
| 326 | |
| 327 | list_for_each_entry(tmp, &c->devices, list) { |
| 328 | if (tmp->lct_data.parent_tid == i2o_dev->lct_data.tid) |
| 329 | sysfs_remove_link(&tmp->device.kobj, "parent"); |
| 330 | if (tmp->lct_data.user_tid == i2o_dev->lct_data.tid) |
| 331 | sysfs_remove_link(&tmp->device.kobj, "user"); |
| 332 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | list_del(&i2o_dev->list); |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | device_unregister(&i2o_dev->device); |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 336 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
| 338 | /** |
| 339 | * i2o_device_parse_lct - Parse a previously fetched LCT and create devices |
| 340 | * @c: I2O controller from which the LCT should be parsed. |
| 341 | * |
| 342 | * The Logical Configuration Table tells us what we can talk to on the |
| 343 | * board. For every entry we create an I2O device, which is registered in |
| 344 | * the I2O core. |
| 345 | * |
| 346 | * Returns 0 on success or negative error code on failure. |
| 347 | */ |
| 348 | int i2o_device_parse_lct(struct i2o_controller *c) |
| 349 | { |
| 350 | struct i2o_device *dev, *tmp; |
| 351 | i2o_lct *lct; |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 352 | u32 *dlct = c->dlct.virt; |
| 353 | int max = 0, i = 0; |
| 354 | u16 table_size; |
| 355 | u32 buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 357 | mutex_lock(&c->lct_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
Markus Lidel | f88e119 | 2005-06-23 22:02:14 -0700 | [diff] [blame] | 359 | kfree(c->lct); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 361 | buf = le32_to_cpu(*dlct++); |
| 362 | table_size = buf & 0xffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 364 | lct = c->lct = kmalloc(table_size * 4, GFP_KERNEL); |
| 365 | if (!lct) { |
Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 366 | mutex_unlock(&c->lct_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | return -ENOMEM; |
| 368 | } |
| 369 | |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 370 | lct->lct_ver = buf >> 28; |
| 371 | lct->boot_tid = buf >> 16 & 0xfff; |
| 372 | lct->table_size = table_size; |
| 373 | lct->change_ind = le32_to_cpu(*dlct++); |
| 374 | lct->iop_flags = le32_to_cpu(*dlct++); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 376 | table_size -= 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
| 378 | pr_debug("%s: LCT has %d entries (LCT size: %d)\n", c->name, max, |
| 379 | lct->table_size); |
| 380 | |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 381 | while (table_size > 0) { |
| 382 | i2o_lct_entry *entry = &lct->lct_entry[max]; |
| 383 | int found = 0; |
| 384 | |
| 385 | buf = le32_to_cpu(*dlct++); |
| 386 | entry->entry_size = buf & 0xffff; |
| 387 | entry->tid = buf >> 16 & 0xfff; |
| 388 | |
| 389 | entry->change_ind = le32_to_cpu(*dlct++); |
| 390 | entry->device_flags = le32_to_cpu(*dlct++); |
| 391 | |
| 392 | buf = le32_to_cpu(*dlct++); |
| 393 | entry->class_id = buf & 0xfff; |
| 394 | entry->version = buf >> 12 & 0xf; |
| 395 | entry->vendor_id = buf >> 16; |
| 396 | |
| 397 | entry->sub_class = le32_to_cpu(*dlct++); |
| 398 | |
| 399 | buf = le32_to_cpu(*dlct++); |
| 400 | entry->user_tid = buf & 0xfff; |
| 401 | entry->parent_tid = buf >> 12 & 0xfff; |
| 402 | entry->bios_info = buf >> 24; |
| 403 | |
| 404 | memcpy(&entry->identity_tag, dlct, 8); |
| 405 | dlct += 2; |
| 406 | |
| 407 | entry->event_capabilities = le32_to_cpu(*dlct++); |
| 408 | |
| 409 | /* add new devices, which are new in the LCT */ |
| 410 | list_for_each_entry_safe(dev, tmp, &c->devices, list) { |
| 411 | if (entry->tid == dev->lct_data.tid) { |
| 412 | found = 1; |
| 413 | break; |
| 414 | } |
| 415 | } |
| 416 | |
| 417 | if (!found) |
| 418 | i2o_device_add(c, entry); |
| 419 | |
| 420 | table_size -= 9; |
| 421 | max++; |
| 422 | } |
| 423 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | /* remove devices, which are not in the LCT anymore */ |
| 425 | list_for_each_entry_safe(dev, tmp, &c->devices, list) { |
| 426 | int found = 0; |
| 427 | |
| 428 | for (i = 0; i < max; i++) { |
| 429 | if (lct->lct_entry[i].tid == dev->lct_data.tid) { |
| 430 | found = 1; |
| 431 | break; |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | if (!found) |
| 436 | i2o_device_remove(dev); |
| 437 | } |
| 438 | |
Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 439 | mutex_unlock(&c->lct_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | return 0; |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 442 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | /* |
| 445 | * Run time support routines |
| 446 | */ |
| 447 | |
| 448 | /* Issue UTIL_PARAMS_GET or UTIL_PARAMS_SET |
| 449 | * |
| 450 | * This function can be used for all UtilParamsGet/Set operations. |
| 451 | * The OperationList is given in oplist-buffer, |
| 452 | * and results are returned in reslist-buffer. |
| 453 | * Note that the minimum sized reslist is 8 bytes and contains |
| 454 | * ResultCount, ErrorInfoSize, BlockStatus and BlockSize. |
| 455 | */ |
Andrew Morton | f52bdbe | 2005-06-23 22:02:26 -0700 | [diff] [blame] | 456 | int i2o_parm_issue(struct i2o_device *i2o_dev, int cmd, void *oplist, |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 457 | int oplen, void *reslist, int reslen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | { |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 459 | struct i2o_message *msg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | int i = 0; |
| 461 | int rc; |
| 462 | struct i2o_dma res; |
| 463 | struct i2o_controller *c = i2o_dev->iop; |
| 464 | struct device *dev = &c->pdev->dev; |
| 465 | |
| 466 | res.virt = NULL; |
| 467 | |
Alan Cox | 9d793b0 | 2008-10-15 22:02:47 -0700 | [diff] [blame] | 468 | if (i2o_dma_alloc(dev, &res, reslen)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | return -ENOMEM; |
| 470 | |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 471 | msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET); |
| 472 | if (IS_ERR(msg)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | i2o_dma_free(dev, &res); |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 474 | return PTR_ERR(msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | i = 0; |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 478 | msg->u.head[1] = |
| 479 | cpu_to_le32(cmd << 24 | HOST_TID << 12 | i2o_dev->lct_data.tid); |
| 480 | msg->body[i++] = cpu_to_le32(0x00000000); |
| 481 | msg->body[i++] = cpu_to_le32(0x4C000000 | oplen); /* OperationList */ |
| 482 | memcpy(&msg->body[i], oplist, oplen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | i += (oplen / 4 + (oplen % 4 ? 1 : 0)); |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 484 | msg->body[i++] = cpu_to_le32(0xD0000000 | res.len); /* ResultList */ |
| 485 | msg->body[i++] = cpu_to_le32(res.phys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 487 | msg->u.head[0] = |
| 488 | cpu_to_le32(I2O_MESSAGE_SIZE(i + sizeof(struct i2o_message) / 4) | |
| 489 | SGL_OFFSET_5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | |
Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 491 | rc = i2o_msg_post_wait_mem(c, msg, 10, &res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
| 493 | /* This only looks like a memory leak - don't "fix" it. */ |
| 494 | if (rc == -ETIMEDOUT) |
| 495 | return rc; |
| 496 | |
Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 497 | memcpy(reslist, res.virt, res.len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | i2o_dma_free(dev, &res); |
| 499 | |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 500 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | /* |
| 504 | * Query one field group value or a whole scalar group. |
| 505 | */ |
| 506 | int i2o_parm_field_get(struct i2o_device *i2o_dev, int group, int field, |
| 507 | void *buf, int buflen) |
| 508 | { |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 509 | u32 opblk[] = { cpu_to_le32(0x00000001), |
| 510 | cpu_to_le32((u16) group << 16 | I2O_PARAMS_FIELD_GET), |
| 511 | cpu_to_le32((s16) field << 16 | 0x00000001) |
| 512 | }; |
Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 513 | u8 *resblk; /* 8 bytes for header */ |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 514 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
Satyam Sharma | a3f249a | 2007-07-09 12:00:07 -0700 | [diff] [blame] | 516 | resblk = kmalloc(buflen + 8, GFP_KERNEL); |
Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 517 | if (!resblk) |
| 518 | return -ENOMEM; |
| 519 | |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 520 | rc = i2o_parm_issue(i2o_dev, I2O_CMD_UTIL_PARAMS_GET, opblk, |
| 521 | sizeof(opblk), resblk, buflen + 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
| 523 | memcpy(buf, resblk + 8, buflen); /* cut off header */ |
| 524 | |
Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 525 | kfree(resblk); |
| 526 | |
Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 527 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | /* |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 531 | * if oper == I2O_PARAMS_TABLE_GET, get from all rows |
| 532 | * if fieldcount == -1 return all fields |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | * ibuf and ibuflen are unused (use NULL, 0) |
Dmitry Torokhov | 4f5ca09 | 2005-09-15 02:01:32 -0500 | [diff] [blame] | 534 | * else return specific fields |
| 535 | * ibuf contains fieldindexes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | * |
Markus Lidel | 2e1973a | 2006-01-06 00:19:32 -0800 | [diff] [blame] | 537 | * if oper == I2O_PARAMS_LIST_GET, get from specific rows |
| 538 | * if fieldcount == -1 return all fields |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | * ibuf contains rowcount, keyvalues |
Markus Lidel | 2e1973a | 2006-01-06 00:19:32 -0800 | [diff] [blame] | 540 | * else return specific fields |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | * fieldcount is # of fieldindexes |
Markus Lidel | 2e1973a | 2006-01-06 00:19:32 -0800 | [diff] [blame] | 542 | * ibuf contains fieldindexes, rowcount, keyvalues |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | * |
| 544 | * You could also use directly function i2o_issue_params(). |
| 545 | */ |
| 546 | int i2o_parm_table_get(struct i2o_device *dev, int oper, int group, |
| 547 | int fieldcount, void *ibuf, int ibuflen, void *resblk, |
| 548 | int reslen) |
| 549 | { |
| 550 | u16 *opblk; |
| 551 | int size; |
| 552 | |
| 553 | size = 10 + ibuflen; |
| 554 | if (size % 4) |
| 555 | size += 4 - size % 4; |
| 556 | |
| 557 | opblk = kmalloc(size, GFP_KERNEL); |
| 558 | if (opblk == NULL) { |
| 559 | printk(KERN_ERR "i2o: no memory for query buffer.\n"); |
| 560 | return -ENOMEM; |
| 561 | } |
| 562 | |
| 563 | opblk[0] = 1; /* operation count */ |
| 564 | opblk[1] = 0; /* pad */ |
| 565 | opblk[2] = oper; |
| 566 | opblk[3] = group; |
| 567 | opblk[4] = fieldcount; |
| 568 | memcpy(opblk + 5, ibuf, ibuflen); /* other params */ |
| 569 | |
| 570 | size = i2o_parm_issue(dev, I2O_CMD_UTIL_PARAMS_GET, opblk, |
| 571 | size, resblk, reslen); |
| 572 | |
| 573 | kfree(opblk); |
| 574 | if (size > reslen) |
| 575 | return reslen; |
| 576 | |
| 577 | return size; |
| 578 | } |
| 579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | EXPORT_SYMBOL(i2o_device_claim); |
| 581 | EXPORT_SYMBOL(i2o_device_claim_release); |
| 582 | EXPORT_SYMBOL(i2o_parm_field_get); |
| 583 | EXPORT_SYMBOL(i2o_parm_table_get); |
| 584 | EXPORT_SYMBOL(i2o_parm_issue); |