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