blob: 34976b26b2658d92f7b20207db000bbbea35fbe6 [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] =
46 cpu_to_le32(cmd << 24 | HOST_TID << 12 | dev->lct_data.tid);
47 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
55 * @drv: I2O driver which wants to claim the device
56 *
57 * Do the leg work to assign a device to a given OSM. If the claim succeed
58 * the owner of the rimary. If the attempt fails a negative errno code
59 * is returned. On success zero is returned.
60 */
61int 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 Torokhov4f5ca092005-09-15 02:01:32 -050078}
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
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 */
94int 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 Torokhov4f5ca092005-09-15 02:01:32 -0500124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/**
128 * i2o_device_release - release the memory for a I2O device
129 * @dev: I2O device which should be released
130 *
131 * Release the allocated memory. This function is called if refcount of
132 * device reaches 0 automatically.
133 */
134static void i2o_device_release(struct device *dev)
135{
136 struct i2o_device *i2o_dev = to_i2o_device(dev);
137
138 pr_debug("i2o: device %s released\n", dev->bus_id);
139
140 kfree(i2o_dev);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500141}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500144/**
Markus Lidel24791bd2006-01-06 00:19:31 -0800145 * i2o_device_show_class_id - Displays class id of I2O device
146 * @dev: device of which the class id should be displayed
147 * @attr: pointer to device attribute
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500148 * @buf: buffer into which the class id should be printed
149 *
150 * Returns the number of bytes which are printed into the buffer.
151 */
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500152static ssize_t i2o_device_show_class_id(struct device *dev,
153 struct device_attribute *attr,
154 char *buf)
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500155{
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500156 struct i2o_device *i2o_dev = to_i2o_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500158 sprintf(buf, "0x%03x\n", i2o_dev->lct_data.class_id);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500159 return strlen(buf) + 1;
160}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500162/**
Markus Lidel24791bd2006-01-06 00:19:31 -0800163 * i2o_device_show_tid - Displays TID of I2O device
164 * @dev: device of which the TID should be displayed
165 * @attr: pointer to device attribute
166 * @buf: buffer into which the TID should be printed
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500167 *
168 * Returns the number of bytes which are printed into the buffer.
169 */
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500170static ssize_t i2o_device_show_tid(struct device *dev,
Markus Lidel24791bd2006-01-06 00:19:31 -0800171 struct device_attribute *attr, char *buf)
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500172{
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500173 struct i2o_device *i2o_dev = to_i2o_device(dev);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500174
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500175 sprintf(buf, "0x%03x\n", i2o_dev->lct_data.tid);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500176 return strlen(buf) + 1;
177}
178
Markus Lidel2e1973a2006-01-06 00:19:32 -0800179/* I2O device attributes */
Dmitry Torokhov7bd7b092005-09-29 00:40:07 -0500180struct device_attribute i2o_device_attrs[] = {
181 __ATTR(class_id, S_IRUGO, i2o_device_show_class_id, NULL),
182 __ATTR(tid, S_IRUGO, i2o_device_show_tid, NULL),
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500183 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/**
187 * i2o_device_alloc - Allocate a I2O device and initialize it
188 *
189 * Allocate the memory for a I2O device and initialize locks and lists
190 *
191 * Returns the allocated I2O device or a negative error code if the device
192 * could not be allocated.
193 */
194static struct i2o_device *i2o_device_alloc(void)
195{
196 struct i2o_device *dev;
197
Markus Lidelf6ed39a2006-01-06 00:19:33 -0800198 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (!dev)
200 return ERR_PTR(-ENOMEM);
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 INIT_LIST_HEAD(&dev->list);
203 init_MUTEX(&dev->lock);
204
205 dev->device.bus = &i2o_bus_type;
206 dev->device.release = &i2o_device_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 return dev;
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500209}
210
211/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 * i2o_device_add - allocate a new I2O device and add it to the IOP
213 * @iop: I2O controller where the device is on
214 * @entry: LCT entry of the I2O device
215 *
216 * Allocate a new I2O device and initialize it with the LCT entry. The
217 * device is appended to the device list of the controller.
218 *
219 * Returns a pointer to the I2O device on success or negative error code
220 * on failure.
221 */
222static struct i2o_device *i2o_device_add(struct i2o_controller *c,
223 i2o_lct_entry * entry)
224{
Markus Lidel24791bd2006-01-06 00:19:31 -0800225 struct i2o_device *i2o_dev, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Markus Lidel24791bd2006-01-06 00:19:31 -0800227 i2o_dev = i2o_device_alloc();
228 if (IS_ERR(i2o_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 printk(KERN_ERR "i2o: unable to allocate i2o device\n");
Markus Lidel24791bd2006-01-06 00:19:31 -0800230 return i2o_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
Markus Lidel24791bd2006-01-06 00:19:31 -0800233 i2o_dev->lct_data = *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Markus Lidel24791bd2006-01-06 00:19:31 -0800235 snprintf(i2o_dev->device.bus_id, BUS_ID_SIZE, "%d:%03x", c->unit,
236 i2o_dev->lct_data.tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Markus Lidel24791bd2006-01-06 00:19:31 -0800238 i2o_dev->iop = c;
239 i2o_dev->device.parent = &c->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Markus Lidel24791bd2006-01-06 00:19:31 -0800241 device_register(&i2o_dev->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Markus Lidel24791bd2006-01-06 00:19:31 -0800243 list_add_tail(&i2o_dev->list, &c->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Markus Lidel24791bd2006-01-06 00:19:31 -0800245 /* create user entries for this device */
246 tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.user_tid);
247 if (tmp && (tmp != i2o_dev))
248 sysfs_create_link(&i2o_dev->device.kobj, &tmp->device.kobj,
249 "user");
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500250
Markus Lidel24791bd2006-01-06 00:19:31 -0800251 /* create user entries refering to this device */
252 list_for_each_entry(tmp, &c->devices, list)
253 if ((tmp->lct_data.user_tid == i2o_dev->lct_data.tid)
254 && (tmp != i2o_dev))
255 sysfs_create_link(&tmp->device.kobj,
256 &i2o_dev->device.kobj, "user");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Markus Lidel24791bd2006-01-06 00:19:31 -0800258 /* create parent entries for this device */
259 tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.parent_tid);
260 if (tmp && (tmp != i2o_dev))
261 sysfs_create_link(&i2o_dev->device.kobj, &tmp->device.kobj,
262 "parent");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Markus Lidel24791bd2006-01-06 00:19:31 -0800264 /* create parent entries refering to this device */
265 list_for_each_entry(tmp, &c->devices, list)
266 if ((tmp->lct_data.parent_tid == i2o_dev->lct_data.tid)
267 && (tmp != i2o_dev))
268 sysfs_create_link(&tmp->device.kobj,
269 &i2o_dev->device.kobj, "parent");
270
271 i2o_driver_notify_device_add_all(i2o_dev);
272
273 pr_debug("i2o: device %s added\n", i2o_dev->device.bus_id);
274
275 return i2o_dev;
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500276}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278/**
279 * i2o_device_remove - remove an I2O device from the I2O core
280 * @dev: I2O device which should be released
281 *
282 * Is used on I2O controller removal or LCT modification, when the device
283 * is removed from the system. Note that the device could still hang
284 * around until the refcount reaches 0.
285 */
286void i2o_device_remove(struct i2o_device *i2o_dev)
287{
Markus Lidel24791bd2006-01-06 00:19:31 -0800288 struct i2o_device *tmp;
289 struct i2o_controller *c = i2o_dev->iop;
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 i2o_driver_notify_device_remove_all(i2o_dev);
Markus Lidel24791bd2006-01-06 00:19:31 -0800292
293 sysfs_remove_link(&i2o_dev->device.kobj, "parent");
294 sysfs_remove_link(&i2o_dev->device.kobj, "user");
295
296 list_for_each_entry(tmp, &c->devices, list) {
297 if (tmp->lct_data.parent_tid == i2o_dev->lct_data.tid)
298 sysfs_remove_link(&tmp->device.kobj, "parent");
299 if (tmp->lct_data.user_tid == i2o_dev->lct_data.tid)
300 sysfs_remove_link(&tmp->device.kobj, "user");
301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 list_del(&i2o_dev->list);
Markus Lidel24791bd2006-01-06 00:19:31 -0800303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 device_unregister(&i2o_dev->device);
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500305}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307/**
308 * i2o_device_parse_lct - Parse a previously fetched LCT and create devices
309 * @c: I2O controller from which the LCT should be parsed.
310 *
311 * The Logical Configuration Table tells us what we can talk to on the
312 * board. For every entry we create an I2O device, which is registered in
313 * the I2O core.
314 *
315 * Returns 0 on success or negative error code on failure.
316 */
317int i2o_device_parse_lct(struct i2o_controller *c)
318{
319 struct i2o_device *dev, *tmp;
320 i2o_lct *lct;
Markus Lidel793fd152006-01-06 00:19:30 -0800321 u32 *dlct = c->dlct.virt;
322 int max = 0, i = 0;
323 u16 table_size;
324 u32 buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 down(&c->lct_lock);
327
Markus Lidelf88e1192005-06-23 22:02:14 -0700328 kfree(c->lct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Markus Lidel793fd152006-01-06 00:19:30 -0800330 buf = le32_to_cpu(*dlct++);
331 table_size = buf & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Markus Lidel793fd152006-01-06 00:19:30 -0800333 lct = c->lct = kmalloc(table_size * 4, GFP_KERNEL);
334 if (!lct) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 up(&c->lct_lock);
336 return -ENOMEM;
337 }
338
Markus Lidel793fd152006-01-06 00:19:30 -0800339 lct->lct_ver = buf >> 28;
340 lct->boot_tid = buf >> 16 & 0xfff;
341 lct->table_size = table_size;
342 lct->change_ind = le32_to_cpu(*dlct++);
343 lct->iop_flags = le32_to_cpu(*dlct++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Markus Lidel793fd152006-01-06 00:19:30 -0800345 table_size -= 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 pr_debug("%s: LCT has %d entries (LCT size: %d)\n", c->name, max,
348 lct->table_size);
349
Markus Lidel793fd152006-01-06 00:19:30 -0800350 while (table_size > 0) {
351 i2o_lct_entry *entry = &lct->lct_entry[max];
352 int found = 0;
353
354 buf = le32_to_cpu(*dlct++);
355 entry->entry_size = buf & 0xffff;
356 entry->tid = buf >> 16 & 0xfff;
357
358 entry->change_ind = le32_to_cpu(*dlct++);
359 entry->device_flags = le32_to_cpu(*dlct++);
360
361 buf = le32_to_cpu(*dlct++);
362 entry->class_id = buf & 0xfff;
363 entry->version = buf >> 12 & 0xf;
364 entry->vendor_id = buf >> 16;
365
366 entry->sub_class = le32_to_cpu(*dlct++);
367
368 buf = le32_to_cpu(*dlct++);
369 entry->user_tid = buf & 0xfff;
370 entry->parent_tid = buf >> 12 & 0xfff;
371 entry->bios_info = buf >> 24;
372
373 memcpy(&entry->identity_tag, dlct, 8);
374 dlct += 2;
375
376 entry->event_capabilities = le32_to_cpu(*dlct++);
377
378 /* add new devices, which are new in the LCT */
379 list_for_each_entry_safe(dev, tmp, &c->devices, list) {
380 if (entry->tid == dev->lct_data.tid) {
381 found = 1;
382 break;
383 }
384 }
385
386 if (!found)
387 i2o_device_add(c, entry);
388
389 table_size -= 9;
390 max++;
391 }
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /* remove devices, which are not in the LCT anymore */
394 list_for_each_entry_safe(dev, tmp, &c->devices, list) {
395 int found = 0;
396
397 for (i = 0; i < max; i++) {
398 if (lct->lct_entry[i].tid == dev->lct_data.tid) {
399 found = 1;
400 break;
401 }
402 }
403
404 if (!found)
405 i2o_device_remove(dev);
406 }
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 up(&c->lct_lock);
409
410 return 0;
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500411}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414/*
415 * Run time support routines
416 */
417
418/* Issue UTIL_PARAMS_GET or UTIL_PARAMS_SET
419 *
420 * This function can be used for all UtilParamsGet/Set operations.
421 * The OperationList is given in oplist-buffer,
422 * and results are returned in reslist-buffer.
423 * Note that the minimum sized reslist is 8 bytes and contains
424 * ResultCount, ErrorInfoSize, BlockStatus and BlockSize.
425 */
Andrew Mortonf52bdbe2005-06-23 22:02:26 -0700426int i2o_parm_issue(struct i2o_device *i2o_dev, int cmd, void *oplist,
Markus Lidela1a5ea72006-01-06 00:19:29 -0800427 int oplen, void *reslist, int reslen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Markus Lidela1a5ea72006-01-06 00:19:29 -0800429 struct i2o_message *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int i = 0;
431 int rc;
432 struct i2o_dma res;
433 struct i2o_controller *c = i2o_dev->iop;
434 struct device *dev = &c->pdev->dev;
435
436 res.virt = NULL;
437
438 if (i2o_dma_alloc(dev, &res, reslen, GFP_KERNEL))
439 return -ENOMEM;
440
Markus Lidela1a5ea72006-01-06 00:19:29 -0800441 msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET);
442 if (IS_ERR(msg)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 i2o_dma_free(dev, &res);
Markus Lidela1a5ea72006-01-06 00:19:29 -0800444 return PTR_ERR(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446
447 i = 0;
Markus Lidela1a5ea72006-01-06 00:19:29 -0800448 msg->u.head[1] =
449 cpu_to_le32(cmd << 24 | HOST_TID << 12 | i2o_dev->lct_data.tid);
450 msg->body[i++] = cpu_to_le32(0x00000000);
451 msg->body[i++] = cpu_to_le32(0x4C000000 | oplen); /* OperationList */
452 memcpy(&msg->body[i], oplist, oplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 i += (oplen / 4 + (oplen % 4 ? 1 : 0));
Markus Lidela1a5ea72006-01-06 00:19:29 -0800454 msg->body[i++] = cpu_to_le32(0xD0000000 | res.len); /* ResultList */
455 msg->body[i++] = cpu_to_le32(res.phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Markus Lidela1a5ea72006-01-06 00:19:29 -0800457 msg->u.head[0] =
458 cpu_to_le32(I2O_MESSAGE_SIZE(i + sizeof(struct i2o_message) / 4) |
459 SGL_OFFSET_5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Markus Lidela1a5ea72006-01-06 00:19:29 -0800461 rc = i2o_msg_post_wait_mem(c, msg, 10, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* This only looks like a memory leak - don't "fix" it. */
464 if (rc == -ETIMEDOUT)
465 return rc;
466
Markus Lidel9e875452005-06-23 22:02:21 -0700467 memcpy(reslist, res.virt, res.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 i2o_dma_free(dev, &res);
469
Markus Lidel793fd152006-01-06 00:19:30 -0800470 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473/*
474 * Query one field group value or a whole scalar group.
475 */
476int i2o_parm_field_get(struct i2o_device *i2o_dev, int group, int field,
477 void *buf, int buflen)
478{
Markus Lidel793fd152006-01-06 00:19:30 -0800479 u32 opblk[] = { cpu_to_le32(0x00000001),
480 cpu_to_le32((u16) group << 16 | I2O_PARAMS_FIELD_GET),
481 cpu_to_le32((s16) field << 16 | 0x00000001)
482 };
Markus Lidel9e875452005-06-23 22:02:21 -0700483 u8 *resblk; /* 8 bytes for header */
Markus Lidel793fd152006-01-06 00:19:30 -0800484 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Markus Lidel9e875452005-06-23 22:02:21 -0700486 resblk = kmalloc(buflen + 8, GFP_KERNEL | GFP_ATOMIC);
487 if (!resblk)
488 return -ENOMEM;
489
Markus Lidel793fd152006-01-06 00:19:30 -0800490 rc = i2o_parm_issue(i2o_dev, I2O_CMD_UTIL_PARAMS_GET, opblk,
491 sizeof(opblk), resblk, buflen + 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 memcpy(buf, resblk + 8, buflen); /* cut off header */
494
Markus Lidel9e875452005-06-23 22:02:21 -0700495 kfree(resblk);
496
Markus Lidel793fd152006-01-06 00:19:30 -0800497 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500/*
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500501 * if oper == I2O_PARAMS_TABLE_GET, get from all rows
502 * if fieldcount == -1 return all fields
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 * ibuf and ibuflen are unused (use NULL, 0)
Dmitry Torokhov4f5ca092005-09-15 02:01:32 -0500504 * else return specific fields
505 * ibuf contains fieldindexes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 *
Markus Lidel2e1973a2006-01-06 00:19:32 -0800507 * if oper == I2O_PARAMS_LIST_GET, get from specific rows
508 * if fieldcount == -1 return all fields
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * ibuf contains rowcount, keyvalues
Markus Lidel2e1973a2006-01-06 00:19:32 -0800510 * else return specific fields
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * fieldcount is # of fieldindexes
Markus Lidel2e1973a2006-01-06 00:19:32 -0800512 * ibuf contains fieldindexes, rowcount, keyvalues
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 *
514 * You could also use directly function i2o_issue_params().
515 */
516int i2o_parm_table_get(struct i2o_device *dev, int oper, int group,
517 int fieldcount, void *ibuf, int ibuflen, void *resblk,
518 int reslen)
519{
520 u16 *opblk;
521 int size;
522
523 size = 10 + ibuflen;
524 if (size % 4)
525 size += 4 - size % 4;
526
527 opblk = kmalloc(size, GFP_KERNEL);
528 if (opblk == NULL) {
529 printk(KERN_ERR "i2o: no memory for query buffer.\n");
530 return -ENOMEM;
531 }
532
533 opblk[0] = 1; /* operation count */
534 opblk[1] = 0; /* pad */
535 opblk[2] = oper;
536 opblk[3] = group;
537 opblk[4] = fieldcount;
538 memcpy(opblk + 5, ibuf, ibuflen); /* other params */
539
540 size = i2o_parm_issue(dev, I2O_CMD_UTIL_PARAMS_GET, opblk,
541 size, resblk, reslen);
542
543 kfree(opblk);
544 if (size > reslen)
545 return reslen;
546
547 return size;
548}
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550EXPORT_SYMBOL(i2o_device_claim);
551EXPORT_SYMBOL(i2o_device_claim_release);
552EXPORT_SYMBOL(i2o_parm_field_get);
553EXPORT_SYMBOL(i2o_parm_table_get);
554EXPORT_SYMBOL(i2o_parm_issue);