blob: 98348f420b52b9aae3dee2c274122739fc5ef931 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Schmielau4e57b682005-10-30 15:03:48 -080019#include <linux/string.h>
20#include <linux/slab.h>
Markus Lidel9e875452005-06-23 22:02:21 -070021#include "core.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
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 */
35static inline int i2o_device_issue_claim(struct i2o_device *dev, u32 cmd,
36 u32 type)
37{
Markus Lidela1a5ea72006-01-06 00:19:29 -080038 struct i2o_message *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Markus Lidela1a5ea72006-01-06 00:19:29 -080040 msg = i2o_msg_get_wait(dev->iop, I2O_TIMEOUT_MESSAGE_GET);
41 if (IS_ERR(msg))
42 return PTR_ERR(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Markus Lidela1a5ea72006-01-06 00:19:29 -080044 msg->u.head[0] = cpu_to_le32(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0);
45 msg->u.head[1] =
Markus Lidel524e3b62006-01-06 00:19:34 -080046 cpu_to_le32(cmd << 24 | HOST_TID << 12 | dev->lct_data.tid);
Markus Lidela1a5ea72006-01-06 00:19:29 -080047 msg->body[0] = cpu_to_le32(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Markus Lidela1a5ea72006-01-06 00:19:29 -080049 return i2o_msg_post_wait(dev->iop, msg, 60);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -050050}
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/**
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -050053 * i2o_device_claim - claim a device for use by an OSM
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * @dev: I2O device to claim
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 *
Randy Dunlapd9489fb2006-12-06 20:38:43 -080056 * 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 Torvalds1da177e2005-04-16 15:20:36 -070058 * is returned. On success zero is returned.
59 */
60int i2o_device_claim(struct i2o_device *dev)
61{
62 int rc = 0;
63
Matthias Kaehlcke9ac16252007-07-15 23:39:49 -070064 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 rc = i2o_device_issue_claim(dev, I2O_CMD_UTIL_CLAIM, I2O_CLAIM_PRIMARY);
67 if (!rc)
Lucas De Marchi25985ed2011-03-30 22:57:33 -030068 pr_debug("i2o: claim of device %d succeeded\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 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 Kaehlcke9ac16252007-07-15 23:39:49 -070074 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 return rc;
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -050077}
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/**
80 * i2o_device_claim_release - release a device that the OSM is using
81 * @dev: device to release
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *
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 */
92int i2o_device_claim_release(struct i2o_device *dev)
93{
94 int tries;
95 int rc = 0;
96
Matthias Kaehlcke9ac16252007-07-15 23:39:49 -070097 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
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 Marchi25985ed2011-03-30 22:57:33 -0300113 pr_debug("i2o: claim release of device %d succeeded\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 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 Kaehlcke9ac16252007-07-15 23:39:49 -0700119 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 return rc;
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/**
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 */
131static void i2o_device_release(struct device *dev)
132{
133 struct i2o_device *i2o_dev = to_i2o_device(dev);
134
Kay Sieverscd3ed6b2009-01-06 10:44:40 -0800135 pr_debug("i2o: device %s released\n", dev_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 kfree(i2o_dev);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500138}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500140/**
Greg Kroah-Hartmanba6857b2013-10-07 18:27:42 -0700141 * class_id_show - Displays class id of I2O device
Markus Lidel24791bd2006-01-06 00:19:31 -0800142 * @dev: device of which the class id should be displayed
143 * @attr: pointer to device attribute
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500144 * @buf: buffer into which the class id should be printed
145 *
146 * Returns the number of bytes which are printed into the buffer.
147 */
Greg Kroah-Hartmanba6857b2013-10-07 18:27:42 -0700148static ssize_t class_id_show(struct device *dev, struct device_attribute *attr,
149 char *buf)
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500150{
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500151 struct i2o_device *i2o_dev = to_i2o_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500153 sprintf(buf, "0x%03x\n", i2o_dev->lct_data.class_id);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500154 return strlen(buf) + 1;
155}
Greg Kroah-Hartmanba6857b2013-10-07 18:27:42 -0700156static DEVICE_ATTR_RO(class_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500158/**
Greg Kroah-Hartmanba6857b2013-10-07 18:27:42 -0700159 * tid_show - Displays TID of I2O device
Markus Lidel24791bd2006-01-06 00:19:31 -0800160 * @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 Torokhov4f5ca092005-09-15 02:01:32 -0500163 *
164 * Returns the number of bytes which are printed into the buffer.
165 */
Greg Kroah-Hartmanba6857b2013-10-07 18:27:42 -0700166static ssize_t tid_show(struct device *dev, struct device_attribute *attr,
167 char *buf)
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500168{
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500169 struct i2o_device *i2o_dev = to_i2o_device(dev);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500170
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500171 sprintf(buf, "0x%03x\n", i2o_dev->lct_data.tid);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500172 return strlen(buf) + 1;
173}
Greg Kroah-Hartmanba6857b2013-10-07 18:27:42 -0700174static DEVICE_ATTR_RO(tid);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500175
Markus Lidel2e1973a2006-01-06 00:19:32 -0800176/* I2O device attributes */
Greg Kroah-Hartmanba6857b2013-10-07 18:27:42 -0700177static struct attribute *i2o_device_attrs[] = {
178 &dev_attr_class_id.attr,
179 &dev_attr_tid.attr,
180 NULL,
181};
182
183static const struct attribute_group i2o_device_group = {
184 .attrs = i2o_device_attrs,
185};
186
187const struct attribute_group *i2o_device_groups[] = {
188 &i2o_device_group,
189 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190};
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/**
193 * i2o_device_alloc - Allocate a I2O device and initialize it
194 *
195 * Allocate the memory for a I2O device and initialize locks and lists
196 *
197 * Returns the allocated I2O device or a negative error code if the device
198 * could not be allocated.
199 */
200static struct i2o_device *i2o_device_alloc(void)
201{
202 struct i2o_device *dev;
203
Markus Lidelf6ed39a2006-01-06 00:19:33 -0800204 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (!dev)
206 return ERR_PTR(-ENOMEM);
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 INIT_LIST_HEAD(&dev->list);
Matthias Kaehlcke9ac16252007-07-15 23:39:49 -0700209 mutex_init(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 dev->device.bus = &i2o_bus_type;
212 dev->device.release = &i2o_device_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 return dev;
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500215}
216
217/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * i2o_device_add - allocate a new I2O device and add it to the IOP
Randy Dunlapd9489fb2006-12-06 20:38:43 -0800219 * @c: I2O controller that the device is on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * @entry: LCT entry of the I2O device
221 *
222 * Allocate a new I2O device and initialize it with the LCT entry. The
223 * device is appended to the device list of the controller.
224 *
Jeff Garzik3889b262006-12-06 20:35:31 -0800225 * Returns zero on success, or a -ve errno.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Jeff Garzik3889b262006-12-06 20:35:31 -0800227static int i2o_device_add(struct i2o_controller *c, i2o_lct_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Markus Lidel24791bd2006-01-06 00:19:31 -0800229 struct i2o_device *i2o_dev, *tmp;
Jeff Garzik3889b262006-12-06 20:35:31 -0800230 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Markus Lidel24791bd2006-01-06 00:19:31 -0800232 i2o_dev = i2o_device_alloc();
233 if (IS_ERR(i2o_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 printk(KERN_ERR "i2o: unable to allocate i2o device\n");
Jeff Garzik3889b262006-12-06 20:35:31 -0800235 return PTR_ERR(i2o_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
Markus Lidel24791bd2006-01-06 00:19:31 -0800238 i2o_dev->lct_data = *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Kay Sieverscd3ed6b2009-01-06 10:44:40 -0800240 dev_set_name(&i2o_dev->device, "%d:%03x", c->unit,
241 i2o_dev->lct_data.tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Markus Lidel24791bd2006-01-06 00:19:31 -0800243 i2o_dev->iop = c;
244 i2o_dev->device.parent = &c->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Jeff Garzik3889b262006-12-06 20:35:31 -0800246 rc = device_register(&i2o_dev->device);
247 if (rc)
248 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Markus Lidel24791bd2006-01-06 00:19:31 -0800250 list_add_tail(&i2o_dev->list, &c->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Markus Lidel24791bd2006-01-06 00:19:31 -0800252 /* create user entries for this device */
253 tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.user_tid);
Wang Chen02939022008-07-23 21:30:01 -0700254 if (tmp && (tmp != i2o_dev)) {
255 rc = sysfs_create_link(&i2o_dev->device.kobj,
256 &tmp->device.kobj, "user");
257 if (rc)
258 goto unreg_dev;
259 }
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500260
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300261 /* create user entries referring to this device */
Markus Lidel24791bd2006-01-06 00:19:31 -0800262 list_for_each_entry(tmp, &c->devices, list)
Markus Lidel524e3b62006-01-06 00:19:34 -0800263 if ((tmp->lct_data.user_tid == i2o_dev->lct_data.tid)
Wang Chen02939022008-07-23 21:30:01 -0700264 && (tmp != i2o_dev)) {
265 rc = sysfs_create_link(&tmp->device.kobj,
266 &i2o_dev->device.kobj, "user");
267 if (rc)
268 goto rmlink1;
269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Markus Lidel24791bd2006-01-06 00:19:31 -0800271 /* create parent entries for this device */
272 tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.parent_tid);
Wang Chen02939022008-07-23 21:30:01 -0700273 if (tmp && (tmp != i2o_dev)) {
274 rc = sysfs_create_link(&i2o_dev->device.kobj,
275 &tmp->device.kobj, "parent");
276 if (rc)
277 goto rmlink1;
278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300280 /* create parent entries referring to this device */
Markus Lidel24791bd2006-01-06 00:19:31 -0800281 list_for_each_entry(tmp, &c->devices, list)
Markus Lidel524e3b62006-01-06 00:19:34 -0800282 if ((tmp->lct_data.parent_tid == i2o_dev->lct_data.tid)
Wang Chen02939022008-07-23 21:30:01 -0700283 && (tmp != i2o_dev)) {
284 rc = sysfs_create_link(&tmp->device.kobj,
285 &i2o_dev->device.kobj, "parent");
286 if (rc)
287 goto rmlink2;
288 }
Markus Lidel24791bd2006-01-06 00:19:31 -0800289
290 i2o_driver_notify_device_add_all(i2o_dev);
291
Kay Sieverscd3ed6b2009-01-06 10:44:40 -0800292 pr_debug("i2o: device %s added\n", dev_name(&i2o_dev->device));
Markus Lidel24791bd2006-01-06 00:19:31 -0800293
Jeff Garzik3889b262006-12-06 20:35:31 -0800294 return 0;
295
Wang Chen02939022008-07-23 21:30:01 -0700296rmlink2:
297 /* If link creating failed halfway, we loop whole list to cleanup.
298 * And we don't care wrong removing of link, because sysfs_remove_link
299 * will take care of it.
300 */
301 list_for_each_entry(tmp, &c->devices, list) {
302 if (tmp->lct_data.parent_tid == i2o_dev->lct_data.tid)
303 sysfs_remove_link(&tmp->device.kobj, "parent");
304 }
305 sysfs_remove_link(&i2o_dev->device.kobj, "parent");
306rmlink1:
307 list_for_each_entry(tmp, &c->devices, list)
308 if (tmp->lct_data.user_tid == i2o_dev->lct_data.tid)
309 sysfs_remove_link(&tmp->device.kobj, "user");
310 sysfs_remove_link(&i2o_dev->device.kobj, "user");
311unreg_dev:
312 list_del(&i2o_dev->list);
313 device_unregister(&i2o_dev->device);
Jeff Garzik3889b262006-12-06 20:35:31 -0800314err:
315 kfree(i2o_dev);
316 return rc;
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500317}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319/**
320 * i2o_device_remove - remove an I2O device from the I2O core
Randy Dunlapd9489fb2006-12-06 20:38:43 -0800321 * @i2o_dev: I2O device which should be released
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 *
323 * Is used on I2O controller removal or LCT modification, when the device
324 * is removed from the system. Note that the device could still hang
325 * around until the refcount reaches 0.
326 */
327void i2o_device_remove(struct i2o_device *i2o_dev)
328{
Markus Lidel24791bd2006-01-06 00:19:31 -0800329 struct i2o_device *tmp;
330 struct i2o_controller *c = i2o_dev->iop;
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 i2o_driver_notify_device_remove_all(i2o_dev);
Markus Lidel24791bd2006-01-06 00:19:31 -0800333
334 sysfs_remove_link(&i2o_dev->device.kobj, "parent");
335 sysfs_remove_link(&i2o_dev->device.kobj, "user");
336
337 list_for_each_entry(tmp, &c->devices, list) {
338 if (tmp->lct_data.parent_tid == i2o_dev->lct_data.tid)
339 sysfs_remove_link(&tmp->device.kobj, "parent");
340 if (tmp->lct_data.user_tid == i2o_dev->lct_data.tid)
341 sysfs_remove_link(&tmp->device.kobj, "user");
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 list_del(&i2o_dev->list);
Markus Lidel24791bd2006-01-06 00:19:31 -0800344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 device_unregister(&i2o_dev->device);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500346}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348/**
349 * i2o_device_parse_lct - Parse a previously fetched LCT and create devices
350 * @c: I2O controller from which the LCT should be parsed.
351 *
352 * The Logical Configuration Table tells us what we can talk to on the
353 * board. For every entry we create an I2O device, which is registered in
354 * the I2O core.
355 *
356 * Returns 0 on success or negative error code on failure.
357 */
358int i2o_device_parse_lct(struct i2o_controller *c)
359{
360 struct i2o_device *dev, *tmp;
361 i2o_lct *lct;
Markus Lidel793fd152006-01-06 00:19:30 -0800362 u32 *dlct = c->dlct.virt;
363 int max = 0, i = 0;
364 u16 table_size;
365 u32 buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Matthias Kaehlcke9ac16252007-07-15 23:39:49 -0700367 mutex_lock(&c->lct_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Markus Lidelf88e1192005-06-23 22:02:14 -0700369 kfree(c->lct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Markus Lidel793fd152006-01-06 00:19:30 -0800371 buf = le32_to_cpu(*dlct++);
372 table_size = buf & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Markus Lidel793fd152006-01-06 00:19:30 -0800374 lct = c->lct = kmalloc(table_size * 4, GFP_KERNEL);
375 if (!lct) {
Matthias Kaehlcke9ac16252007-07-15 23:39:49 -0700376 mutex_unlock(&c->lct_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return -ENOMEM;
378 }
379
Markus Lidel793fd152006-01-06 00:19:30 -0800380 lct->lct_ver = buf >> 28;
381 lct->boot_tid = buf >> 16 & 0xfff;
382 lct->table_size = table_size;
383 lct->change_ind = le32_to_cpu(*dlct++);
384 lct->iop_flags = le32_to_cpu(*dlct++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Markus Lidel793fd152006-01-06 00:19:30 -0800386 table_size -= 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 pr_debug("%s: LCT has %d entries (LCT size: %d)\n", c->name, max,
389 lct->table_size);
390
Markus Lidel793fd152006-01-06 00:19:30 -0800391 while (table_size > 0) {
392 i2o_lct_entry *entry = &lct->lct_entry[max];
393 int found = 0;
394
395 buf = le32_to_cpu(*dlct++);
396 entry->entry_size = buf & 0xffff;
397 entry->tid = buf >> 16 & 0xfff;
398
399 entry->change_ind = le32_to_cpu(*dlct++);
400 entry->device_flags = le32_to_cpu(*dlct++);
401
402 buf = le32_to_cpu(*dlct++);
403 entry->class_id = buf & 0xfff;
404 entry->version = buf >> 12 & 0xf;
405 entry->vendor_id = buf >> 16;
406
407 entry->sub_class = le32_to_cpu(*dlct++);
408
409 buf = le32_to_cpu(*dlct++);
410 entry->user_tid = buf & 0xfff;
411 entry->parent_tid = buf >> 12 & 0xfff;
412 entry->bios_info = buf >> 24;
413
414 memcpy(&entry->identity_tag, dlct, 8);
415 dlct += 2;
416
417 entry->event_capabilities = le32_to_cpu(*dlct++);
418
419 /* add new devices, which are new in the LCT */
420 list_for_each_entry_safe(dev, tmp, &c->devices, list) {
421 if (entry->tid == dev->lct_data.tid) {
422 found = 1;
423 break;
424 }
425 }
426
427 if (!found)
428 i2o_device_add(c, entry);
429
430 table_size -= 9;
431 max++;
432 }
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 /* remove devices, which are not in the LCT anymore */
435 list_for_each_entry_safe(dev, tmp, &c->devices, list) {
436 int found = 0;
437
438 for (i = 0; i < max; i++) {
439 if (lct->lct_entry[i].tid == dev->lct_data.tid) {
440 found = 1;
441 break;
442 }
443 }
444
445 if (!found)
446 i2o_device_remove(dev);
447 }
448
Matthias Kaehlcke9ac16252007-07-15 23:39:49 -0700449 mutex_unlock(&c->lct_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 return 0;
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500452}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/*
455 * Run time support routines
456 */
457
458/* Issue UTIL_PARAMS_GET or UTIL_PARAMS_SET
459 *
460 * This function can be used for all UtilParamsGet/Set operations.
461 * The OperationList is given in oplist-buffer,
462 * and results are returned in reslist-buffer.
463 * Note that the minimum sized reslist is 8 bytes and contains
464 * ResultCount, ErrorInfoSize, BlockStatus and BlockSize.
465 */
Andrew Mortonf52bdbe2005-06-23 22:02:26 -0700466int i2o_parm_issue(struct i2o_device *i2o_dev, int cmd, void *oplist,
Markus Lidela1a5ea72006-01-06 00:19:29 -0800467 int oplen, void *reslist, int reslen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Markus Lidela1a5ea72006-01-06 00:19:29 -0800469 struct i2o_message *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 int i = 0;
471 int rc;
472 struct i2o_dma res;
473 struct i2o_controller *c = i2o_dev->iop;
474 struct device *dev = &c->pdev->dev;
475
476 res.virt = NULL;
477
Alan Cox9d793b02008-10-15 22:02:47 -0700478 if (i2o_dma_alloc(dev, &res, reslen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return -ENOMEM;
480
Markus Lidela1a5ea72006-01-06 00:19:29 -0800481 msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET);
482 if (IS_ERR(msg)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 i2o_dma_free(dev, &res);
Markus Lidela1a5ea72006-01-06 00:19:29 -0800484 return PTR_ERR(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
487 i = 0;
Markus Lidela1a5ea72006-01-06 00:19:29 -0800488 msg->u.head[1] =
489 cpu_to_le32(cmd << 24 | HOST_TID << 12 | i2o_dev->lct_data.tid);
490 msg->body[i++] = cpu_to_le32(0x00000000);
491 msg->body[i++] = cpu_to_le32(0x4C000000 | oplen); /* OperationList */
492 memcpy(&msg->body[i], oplist, oplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 i += (oplen / 4 + (oplen % 4 ? 1 : 0));
Markus Lidela1a5ea72006-01-06 00:19:29 -0800494 msg->body[i++] = cpu_to_le32(0xD0000000 | res.len); /* ResultList */
495 msg->body[i++] = cpu_to_le32(res.phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Markus Lidela1a5ea72006-01-06 00:19:29 -0800497 msg->u.head[0] =
498 cpu_to_le32(I2O_MESSAGE_SIZE(i + sizeof(struct i2o_message) / 4) |
499 SGL_OFFSET_5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Markus Lidela1a5ea72006-01-06 00:19:29 -0800501 rc = i2o_msg_post_wait_mem(c, msg, 10, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 /* This only looks like a memory leak - don't "fix" it. */
504 if (rc == -ETIMEDOUT)
505 return rc;
506
Markus Lidel9e875452005-06-23 22:02:21 -0700507 memcpy(reslist, res.virt, res.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 i2o_dma_free(dev, &res);
509
Markus Lidel793fd152006-01-06 00:19:30 -0800510 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
513/*
514 * Query one field group value or a whole scalar group.
515 */
516int i2o_parm_field_get(struct i2o_device *i2o_dev, int group, int field,
517 void *buf, int buflen)
518{
Markus Lidel793fd152006-01-06 00:19:30 -0800519 u32 opblk[] = { cpu_to_le32(0x00000001),
520 cpu_to_le32((u16) group << 16 | I2O_PARAMS_FIELD_GET),
521 cpu_to_le32((s16) field << 16 | 0x00000001)
522 };
Markus Lidel9e875452005-06-23 22:02:21 -0700523 u8 *resblk; /* 8 bytes for header */
Markus Lidel793fd152006-01-06 00:19:30 -0800524 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Satyam Sharmaa3f249a2007-07-09 12:00:07 -0700526 resblk = kmalloc(buflen + 8, GFP_KERNEL);
Markus Lidel9e875452005-06-23 22:02:21 -0700527 if (!resblk)
528 return -ENOMEM;
529
Markus Lidel793fd152006-01-06 00:19:30 -0800530 rc = i2o_parm_issue(i2o_dev, I2O_CMD_UTIL_PARAMS_GET, opblk,
531 sizeof(opblk), resblk, buflen + 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 memcpy(buf, resblk + 8, buflen); /* cut off header */
534
Markus Lidel9e875452005-06-23 22:02:21 -0700535 kfree(resblk);
536
Markus Lidel793fd152006-01-06 00:19:30 -0800537 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540/*
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500541 * if oper == I2O_PARAMS_TABLE_GET, get from all rows
542 * if fieldcount == -1 return all fields
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 * ibuf and ibuflen are unused (use NULL, 0)
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500544 * else return specific fields
545 * ibuf contains fieldindexes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 *
Markus Lidel2e1973a2006-01-06 00:19:32 -0800547 * if oper == I2O_PARAMS_LIST_GET, get from specific rows
548 * if fieldcount == -1 return all fields
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 * ibuf contains rowcount, keyvalues
Markus Lidel2e1973a2006-01-06 00:19:32 -0800550 * else return specific fields
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 * fieldcount is # of fieldindexes
Markus Lidel2e1973a2006-01-06 00:19:32 -0800552 * ibuf contains fieldindexes, rowcount, keyvalues
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 *
554 * You could also use directly function i2o_issue_params().
555 */
556int i2o_parm_table_get(struct i2o_device *dev, int oper, int group,
557 int fieldcount, void *ibuf, int ibuflen, void *resblk,
558 int reslen)
559{
560 u16 *opblk;
561 int size;
562
563 size = 10 + ibuflen;
564 if (size % 4)
565 size += 4 - size % 4;
566
567 opblk = kmalloc(size, GFP_KERNEL);
568 if (opblk == NULL) {
569 printk(KERN_ERR "i2o: no memory for query buffer.\n");
570 return -ENOMEM;
571 }
572
573 opblk[0] = 1; /* operation count */
574 opblk[1] = 0; /* pad */
575 opblk[2] = oper;
576 opblk[3] = group;
577 opblk[4] = fieldcount;
578 memcpy(opblk + 5, ibuf, ibuflen); /* other params */
579
580 size = i2o_parm_issue(dev, I2O_CMD_UTIL_PARAMS_GET, opblk,
581 size, resblk, reslen);
582
583 kfree(opblk);
584 if (size > reslen)
585 return reslen;
586
587 return size;
588}
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590EXPORT_SYMBOL(i2o_device_claim);
591EXPORT_SYMBOL(i2o_device_claim_release);
592EXPORT_SYMBOL(i2o_parm_field_get);
593EXPORT_SYMBOL(i2o_parm_table_get);
594EXPORT_SYMBOL(i2o_parm_issue);