blob: c1ce465d97103b3855393cd79bdfd778d531d41b [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
2 * Device probing and sysfs code.
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05003 *
4 * Copyright (C) 2005-2006 Kristian Hoegsberg <krh@bitplanet.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#include <linux/module.h>
22#include <linux/wait.h>
23#include <linux/errno.h>
24#include <linux/kthread.h>
25#include <linux/device.h>
26#include <linux/delay.h>
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -050027#include <linux/idr.h>
Stefan Richter633c52d2007-03-19 11:37:16 -040028#include <linux/rwsem.h>
29#include <asm/semaphore.h>
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -040030#include <linux/ctype.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050031#include "fw-transaction.h"
32#include "fw-topology.h"
33#include "fw-device.h"
34
35void fw_csr_iterator_init(struct fw_csr_iterator *ci, u32 * p)
36{
37 ci->p = p + 1;
38 ci->end = ci->p + (p[0] >> 16);
39}
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050040EXPORT_SYMBOL(fw_csr_iterator_init);
41
42int fw_csr_iterator_next(struct fw_csr_iterator *ci, int *key, int *value)
43{
44 *key = *ci->p >> 24;
45 *value = *ci->p & 0xffffff;
46
47 return ci->p++ < ci->end;
48}
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050049EXPORT_SYMBOL(fw_csr_iterator_next);
50
51static int is_fw_unit(struct device *dev);
52
Stefan Richter21ebcd12007-01-14 15:29:07 +010053static int match_unit_directory(u32 * directory, const struct fw_device_id *id)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050054{
55 struct fw_csr_iterator ci;
56 int key, value, match;
57
58 match = 0;
59 fw_csr_iterator_init(&ci, directory);
60 while (fw_csr_iterator_next(&ci, &key, &value)) {
61 if (key == CSR_VENDOR && value == id->vendor)
62 match |= FW_MATCH_VENDOR;
63 if (key == CSR_MODEL && value == id->model)
64 match |= FW_MATCH_MODEL;
65 if (key == CSR_SPECIFIER_ID && value == id->specifier_id)
66 match |= FW_MATCH_SPECIFIER_ID;
67 if (key == CSR_VERSION && value == id->version)
68 match |= FW_MATCH_VERSION;
69 }
70
71 return (match & id->match_flags) == id->match_flags;
72}
73
74static int fw_unit_match(struct device *dev, struct device_driver *drv)
75{
76 struct fw_unit *unit = fw_unit(dev);
77 struct fw_driver *driver = fw_driver(drv);
78 int i;
79
80 /* We only allow binding to fw_units. */
81 if (!is_fw_unit(dev))
82 return 0;
83
84 for (i = 0; driver->id_table[i].match_flags != 0; i++) {
85 if (match_unit_directory(unit->directory, &driver->id_table[i]))
86 return 1;
87 }
88
89 return 0;
90}
91
92static int get_modalias(struct fw_unit *unit, char *buffer, size_t buffer_size)
93{
94 struct fw_device *device = fw_device(unit->device.parent);
95 struct fw_csr_iterator ci;
96
97 int key, value;
98 int vendor = 0;
99 int model = 0;
100 int specifier_id = 0;
101 int version = 0;
102
103 fw_csr_iterator_init(&ci, &device->config_rom[5]);
104 while (fw_csr_iterator_next(&ci, &key, &value)) {
105 switch (key) {
106 case CSR_VENDOR:
107 vendor = value;
108 break;
109 case CSR_MODEL:
110 model = value;
111 break;
112 }
113 }
114
115 fw_csr_iterator_init(&ci, unit->directory);
116 while (fw_csr_iterator_next(&ci, &key, &value)) {
117 switch (key) {
118 case CSR_SPECIFIER_ID:
119 specifier_id = value;
120 break;
121 case CSR_VERSION:
122 version = value;
123 break;
124 }
125 }
126
127 return snprintf(buffer, buffer_size,
128 "ieee1394:ven%08Xmo%08Xsp%08Xver%08X",
129 vendor, model, specifier_id, version);
130}
131
132static int
133fw_unit_uevent(struct device *dev, char **envp, int num_envp,
134 char *buffer, int buffer_size)
135{
136 struct fw_unit *unit = fw_unit(dev);
137 char modalias[64];
138 int length = 0;
139 int i = 0;
140
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400141 get_modalias(unit, modalias, sizeof(modalias));
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500142
143 if (add_uevent_var(envp, num_envp, &i,
144 buffer, buffer_size, &length,
145 "MODALIAS=%s", modalias))
146 return -ENOMEM;
147
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500148 envp[i] = NULL;
149
150 return 0;
151}
152
153struct bus_type fw_bus_type = {
Kristian Høgsberg362c2c82007-02-06 14:49:37 -0500154 .name = "firewire",
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500155 .match = fw_unit_match,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500156};
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500157EXPORT_SYMBOL(fw_bus_type);
158
Randy Dunlap0b6aa3d2007-04-25 22:43:16 -0700159struct fw_device *fw_device_get(struct fw_device *device)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500160{
161 get_device(&device->device);
162
163 return device;
164}
165
Randy Dunlap0b6aa3d2007-04-25 22:43:16 -0700166void fw_device_put(struct fw_device *device)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500167{
168 put_device(&device->device);
169}
170
171static void fw_device_release(struct device *dev)
172{
173 struct fw_device *device = fw_device(dev);
174 unsigned long flags;
175
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400176 /*
177 * Take the card lock so we don't set this to NULL while a
178 * FW_NODE_UPDATED callback is being handled.
179 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500180 spin_lock_irqsave(&device->card->lock, flags);
181 device->node->data = NULL;
182 spin_unlock_irqrestore(&device->card->lock, flags);
183
184 fw_node_put(device->node);
185 fw_card_put(device->card);
186 kfree(device->config_rom);
187 kfree(device);
188}
189
190int fw_device_enable_phys_dma(struct fw_device *device)
191{
192 return device->card->driver->enable_phys_dma(device->card,
193 device->node_id,
194 device->generation);
195}
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500196EXPORT_SYMBOL(fw_device_enable_phys_dma);
197
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400198struct config_rom_attribute {
199 struct device_attribute attr;
200 u32 key;
201};
202
203static ssize_t
204show_immediate(struct device *dev, struct device_attribute *dattr, char *buf)
205{
206 struct config_rom_attribute *attr =
207 container_of(dattr, struct config_rom_attribute, attr);
208 struct fw_csr_iterator ci;
209 u32 *dir;
210 int key, value;
211
212 if (is_fw_unit(dev))
213 dir = fw_unit(dev)->directory;
214 else
215 dir = fw_device(dev)->config_rom + 5;
216
217 fw_csr_iterator_init(&ci, dir);
218 while (fw_csr_iterator_next(&ci, &key, &value))
219 if (attr->key == key)
220 return snprintf(buf, buf ? PAGE_SIZE : 0,
221 "0x%06x\n", value);
222
223 return -ENOENT;
224}
225
226#define IMMEDIATE_ATTR(name, key) \
227 { __ATTR(name, S_IRUGO, show_immediate, NULL), key }
228
229static ssize_t
230show_text_leaf(struct device *dev, struct device_attribute *dattr, char *buf)
231{
232 struct config_rom_attribute *attr =
233 container_of(dattr, struct config_rom_attribute, attr);
234 struct fw_csr_iterator ci;
235 u32 *dir, *block = NULL, *p, *end;
236 int length, key, value, last_key = 0;
237 char *b;
238
239 if (is_fw_unit(dev))
240 dir = fw_unit(dev)->directory;
241 else
242 dir = fw_device(dev)->config_rom + 5;
243
244 fw_csr_iterator_init(&ci, dir);
245 while (fw_csr_iterator_next(&ci, &key, &value)) {
246 if (attr->key == last_key &&
247 key == (CSR_DESCRIPTOR | CSR_LEAF))
248 block = ci.p - 1 + value;
249 last_key = key;
250 }
251
252 if (block == NULL)
253 return -ENOENT;
254
255 length = min(block[0] >> 16, 256U);
256 if (length < 3)
257 return -ENOENT;
258
259 if (block[1] != 0 || block[2] != 0)
260 /* Unknown encoding. */
261 return -ENOENT;
262
263 if (buf == NULL)
264 return length * 4;
265
266 b = buf;
267 end = &block[length + 1];
268 for (p = &block[3]; p < end; p++, b += 4)
269 * (u32 *) b = (__force u32) __cpu_to_be32(*p);
270
271 /* Strip trailing whitespace and add newline. */
272 while (b--, (isspace(*b) || *b == '\0') && b > buf);
273 strcpy(b + 1, "\n");
274
275 return b + 2 - buf;
276}
277
278#define TEXT_LEAF_ATTR(name, key) \
279 { __ATTR(name, S_IRUGO, show_text_leaf, NULL), key }
280
281static struct config_rom_attribute config_rom_attributes[] = {
282 IMMEDIATE_ATTR(vendor, CSR_VENDOR),
283 IMMEDIATE_ATTR(hardware_version, CSR_HARDWARE_VERSION),
284 IMMEDIATE_ATTR(specifier_id, CSR_SPECIFIER_ID),
285 IMMEDIATE_ATTR(version, CSR_VERSION),
286 IMMEDIATE_ATTR(model, CSR_MODEL),
287 TEXT_LEAF_ATTR(vendor_name, CSR_VENDOR),
288 TEXT_LEAF_ATTR(model_name, CSR_MODEL),
289 TEXT_LEAF_ATTR(hardware_version_name, CSR_HARDWARE_VERSION),
290};
291
292static void
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400293init_fw_attribute_group(struct device *dev,
294 struct device_attribute *attrs,
295 struct fw_attribute_group *group)
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400296{
297 struct device_attribute *attr;
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400298 int i, j;
299
300 for (j = 0; attrs[j].attr.name != NULL; j++)
301 group->attrs[j] = &attrs[j].attr;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400302
303 for (i = 0; i < ARRAY_SIZE(config_rom_attributes); i++) {
304 attr = &config_rom_attributes[i].attr;
305 if (attr->show(dev, attr, NULL) < 0)
306 continue;
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400307 group->attrs[j++] = &attr->attr;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400308 }
309
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400310 BUG_ON(j >= ARRAY_SIZE(group->attrs));
311 group->attrs[j++] = NULL;
312 group->groups[0] = &group->group;
313 group->groups[1] = NULL;
314 group->group.attrs = group->attrs;
315 dev->groups = group->groups;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400316}
317
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500318static ssize_t
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400319modalias_show(struct device *dev,
320 struct device_attribute *attr, char *buf)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500321{
322 struct fw_unit *unit = fw_unit(dev);
323 int length;
324
325 length = get_modalias(unit, buf, PAGE_SIZE);
326 strcpy(buf + length, "\n");
327
328 return length + 1;
329}
330
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500331static ssize_t
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400332rom_index_show(struct device *dev,
333 struct device_attribute *attr, char *buf)
Kristian Høgsberg048961e2007-03-07 12:12:46 -0500334{
335 struct fw_device *device = fw_device(dev->parent);
336 struct fw_unit *unit = fw_unit(dev);
337
338 return snprintf(buf, PAGE_SIZE, "%d\n",
Stefan Richterd84702a2007-03-20 19:42:15 +0100339 (int)(unit->directory - device->config_rom));
Kristian Høgsberg048961e2007-03-07 12:12:46 -0500340}
341
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400342static struct device_attribute fw_unit_attributes[] = {
343 __ATTR_RO(modalias),
344 __ATTR_RO(rom_index),
345 __ATTR_NULL,
346};
347
348static ssize_t
Kristian Høgsbergbbd14942007-03-20 20:58:35 -0400349config_rom_show(struct device *dev, struct device_attribute *attr, char *buf)
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400350{
351 struct fw_device *device = fw_device(dev);
352
353 memcpy(buf, device->config_rom, device->config_rom_length * 4);
354
355 return device->config_rom_length * 4;
356}
357
Kristian Høgsbergbbd14942007-03-20 20:58:35 -0400358static ssize_t
359guid_show(struct device *dev, struct device_attribute *attr, char *buf)
360{
361 struct fw_device *device = fw_device(dev);
362 u64 guid;
363
364 guid = ((u64)device->config_rom[3] << 32) | device->config_rom[4];
365
Andrew Morton3e1dcb02007-04-26 00:16:04 -0700366 return snprintf(buf, PAGE_SIZE, "0x%016llx\n",
367 (unsigned long long)guid);
Kristian Høgsbergbbd14942007-03-20 20:58:35 -0400368}
369
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400370static struct device_attribute fw_device_attributes[] = {
371 __ATTR_RO(config_rom),
Kristian Høgsbergbbd14942007-03-20 20:58:35 -0400372 __ATTR_RO(guid),
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400373 __ATTR_NULL,
Kristian Høgsberg048961e2007-03-07 12:12:46 -0500374};
375
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500376struct read_quadlet_callback_data {
377 struct completion done;
378 int rcode;
379 u32 data;
380};
381
382static void
383complete_transaction(struct fw_card *card, int rcode,
384 void *payload, size_t length, void *data)
385{
386 struct read_quadlet_callback_data *callback_data = data;
387
388 if (rcode == RCODE_COMPLETE)
389 callback_data->data = be32_to_cpu(*(__be32 *)payload);
390 callback_data->rcode = rcode;
391 complete(&callback_data->done);
392}
393
394static int read_rom(struct fw_device *device, int index, u32 * data)
395{
396 struct read_quadlet_callback_data callback_data;
397 struct fw_transaction t;
398 u64 offset;
399
400 init_completion(&callback_data.done);
401
402 offset = 0xfffff0000400ULL + index * 4;
403 fw_send_request(device->card, &t, TCODE_READ_QUADLET_REQUEST,
Stefan Richter907293d2007-01-23 21:11:43 +0100404 device->node_id,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500405 device->generation, SCODE_100,
406 offset, NULL, 4, complete_transaction, &callback_data);
407
408 wait_for_completion(&callback_data.done);
409
410 *data = callback_data.data;
411
412 return callback_data.rcode;
413}
414
415static int read_bus_info_block(struct fw_device *device)
416{
417 static u32 rom[256];
418 u32 stack[16], sp, key;
419 int i, end, length;
420
421 /* First read the bus info block. */
422 for (i = 0; i < 5; i++) {
423 if (read_rom(device, i, &rom[i]) != RCODE_COMPLETE)
424 return -1;
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400425 /*
426 * As per IEEE1212 7.2, during power-up, devices can
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500427 * reply with a 0 for the first quadlet of the config
428 * rom to indicate that they are booting (for example,
429 * if the firmware is on the disk of a external
430 * harddisk). In that case we just fail, and the
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400431 * retry mechanism will try again later.
432 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500433 if (i == 0 && rom[i] == 0)
434 return -1;
435 }
436
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400437 /*
438 * Now parse the config rom. The config rom is a recursive
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500439 * directory structure so we parse it using a stack of
440 * references to the blocks that make up the structure. We
441 * push a reference to the root directory on the stack to
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400442 * start things off.
443 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500444 length = i;
445 sp = 0;
446 stack[sp++] = 0xc0000005;
447 while (sp > 0) {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400448 /*
449 * Pop the next block reference of the stack. The
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500450 * lower 24 bits is the offset into the config rom,
451 * the upper 8 bits are the type of the reference the
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400452 * block.
453 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500454 key = stack[--sp];
455 i = key & 0xffffff;
456 if (i >= ARRAY_SIZE(rom))
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400457 /*
458 * The reference points outside the standard
459 * config rom area, something's fishy.
460 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500461 return -1;
462
463 /* Read header quadlet for the block to get the length. */
464 if (read_rom(device, i, &rom[i]) != RCODE_COMPLETE)
465 return -1;
466 end = i + (rom[i] >> 16) + 1;
467 i++;
468 if (end > ARRAY_SIZE(rom))
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400469 /*
470 * This block extends outside standard config
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500471 * area (and the array we're reading it
472 * into). That's broken, so ignore this
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400473 * device.
474 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500475 return -1;
476
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400477 /*
478 * Now read in the block. If this is a directory
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500479 * block, check the entries as we read them to see if
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400480 * it references another block, and push it in that case.
481 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500482 while (i < end) {
483 if (read_rom(device, i, &rom[i]) != RCODE_COMPLETE)
484 return -1;
485 if ((key >> 30) == 3 && (rom[i] >> 30) > 1 &&
486 sp < ARRAY_SIZE(stack))
487 stack[sp++] = i + rom[i];
488 i++;
489 }
490 if (length < i)
491 length = i;
492 }
493
494 device->config_rom = kmalloc(length * 4, GFP_KERNEL);
495 if (device->config_rom == NULL)
496 return -1;
497 memcpy(device->config_rom, rom, length * 4);
498 device->config_rom_length = length;
499
500 return 0;
501}
502
503static void fw_unit_release(struct device *dev)
504{
505 struct fw_unit *unit = fw_unit(dev);
506
507 kfree(unit);
508}
509
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400510static struct device_type fw_unit_type = {
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400511 .uevent = fw_unit_uevent,
512 .release = fw_unit_release,
513};
514
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500515static int is_fw_unit(struct device *dev)
516{
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400517 return dev->type == &fw_unit_type;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500518}
519
520static void create_units(struct fw_device *device)
521{
522 struct fw_csr_iterator ci;
523 struct fw_unit *unit;
524 int key, value, i;
525
526 i = 0;
527 fw_csr_iterator_init(&ci, &device->config_rom[5]);
528 while (fw_csr_iterator_next(&ci, &key, &value)) {
529 if (key != (CSR_UNIT | CSR_DIRECTORY))
530 continue;
531
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400532 /*
533 * Get the address of the unit directory and try to
534 * match the drivers id_tables against it.
535 */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400536 unit = kzalloc(sizeof(*unit), GFP_KERNEL);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500537 if (unit == NULL) {
538 fw_error("failed to allocate memory for unit\n");
539 continue;
540 }
541
542 unit->directory = ci.p + value - 1;
543 unit->device.bus = &fw_bus_type;
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400544 unit->device.type = &fw_unit_type;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500545 unit->device.parent = &device->device;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400546 snprintf(unit->device.bus_id, sizeof(unit->device.bus_id),
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500547 "%s.%d", device->device.bus_id, i++);
548
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400549 init_fw_attribute_group(&unit->device,
550 fw_unit_attributes,
551 &unit->attribute_group);
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400552 if (device_register(&unit->device) < 0)
553 goto skip_unit;
554
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400555 continue;
556
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400557 skip_unit:
558 kfree(unit);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500559 }
560}
561
562static int shutdown_unit(struct device *device, void *data)
563{
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400564 device_unregister(device);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500565
566 return 0;
567}
568
Kristian Høgsbergdde2b952007-04-17 11:51:57 -0400569static DECLARE_RWSEM(idr_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500570static DEFINE_IDR(fw_device_idr);
571int fw_cdev_major;
572
573struct fw_device *fw_device_from_devt(dev_t devt)
574{
575 struct fw_device *device;
576
Kristian Høgsbergdde2b952007-04-17 11:51:57 -0400577 down_read(&idr_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500578 device = idr_find(&fw_device_idr, MINOR(devt));
Kristian Høgsbergdde2b952007-04-17 11:51:57 -0400579 up_read(&idr_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500580
581 return device;
582}
583
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500584static void fw_device_shutdown(struct work_struct *work)
585{
586 struct fw_device *device =
587 container_of(work, struct fw_device, work.work);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500588 int minor = MINOR(device->device.devt);
589
Kristian Høgsbergdde2b952007-04-17 11:51:57 -0400590 down_write(&idr_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500591 idr_remove(&fw_device_idr, minor);
Kristian Høgsbergdde2b952007-04-17 11:51:57 -0400592 up_write(&idr_rwsem);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500593
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500594 fw_device_cdev_remove(device);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500595 device_for_each_child(&device->device, NULL, shutdown_unit);
596 device_unregister(&device->device);
597}
598
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400599static struct device_type fw_device_type = {
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400600 .release = fw_device_release,
601};
602
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400603/*
604 * These defines control the retry behavior for reading the config
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500605 * rom. It shouldn't be necessary to tweak these; if the device
606 * doesn't respond to a config rom read within 10 seconds, it's not
607 * going to respond at all. As for the initial delay, a lot of
608 * devices will be able to respond within half a second after bus
609 * reset. On the other hand, it's not really worth being more
610 * aggressive than that, since it scales pretty well; if 10 devices
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400611 * are plugged in, they're all getting read within one second.
612 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500613
Kristian Høgsbergc5dfd0a2007-03-27 01:43:43 -0400614#define MAX_RETRIES 10
615#define RETRY_DELAY (3 * HZ)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500616#define INITIAL_DELAY (HZ / 2)
617
618static void fw_device_init(struct work_struct *work)
619{
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500620 struct fw_device *device =
621 container_of(work, struct fw_device, work.work);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500622 int minor, err;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500623
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400624 /*
625 * All failure paths here set node->data to NULL, so that we
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500626 * don't try to do device_for_each_child() on a kfree()'d
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400627 * device.
628 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500629
630 if (read_bus_info_block(device) < 0) {
631 if (device->config_rom_retries < MAX_RETRIES) {
632 device->config_rom_retries++;
633 schedule_delayed_work(&device->work, RETRY_DELAY);
634 } else {
Stefan Richter907293d2007-01-23 21:11:43 +0100635 fw_notify("giving up on config rom for node id %x\n",
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500636 device->node_id);
Kristian Høgsberg931c4832007-01-26 00:38:45 -0500637 if (device->node == device->card->root_node)
638 schedule_delayed_work(&device->card->work, 0);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500639 fw_device_release(&device->device);
640 }
641 return;
642 }
643
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500644 err = -ENOMEM;
Kristian Høgsbergdde2b952007-04-17 11:51:57 -0400645 down_write(&idr_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500646 if (idr_pre_get(&fw_device_idr, GFP_KERNEL))
647 err = idr_get_new(&fw_device_idr, device, &minor);
Kristian Høgsbergdde2b952007-04-17 11:51:57 -0400648 up_write(&idr_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500649 if (err < 0)
650 goto error;
651
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500652 device->device.bus = &fw_bus_type;
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400653 device->device.type = &fw_device_type;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500654 device->device.parent = device->card->device;
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500655 device->device.devt = MKDEV(fw_cdev_major, minor);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400656 snprintf(device->device.bus_id, sizeof(device->device.bus_id),
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500657 "fw%d", minor);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500658
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400659 init_fw_attribute_group(&device->device,
660 fw_device_attributes,
661 &device->attribute_group);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500662 if (device_add(&device->device)) {
663 fw_error("Failed to add device.\n");
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500664 goto error_with_cdev;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500665 }
666
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500667 create_units(device);
668
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400669 /*
670 * Transition the device to running state. If it got pulled
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500671 * out from under us while we did the intialization work, we
672 * have to shut down the device again here. Normally, though,
673 * fw_node_event will be responsible for shutting it down when
674 * necessary. We have to use the atomic cmpxchg here to avoid
675 * racing with the FW_NODE_DESTROYED case in
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400676 * fw_node_event().
677 */
Stefan Richter641f8792007-01-27 10:34:55 +0100678 if (atomic_cmpxchg(&device->state,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500679 FW_DEVICE_INITIALIZING,
680 FW_DEVICE_RUNNING) == FW_DEVICE_SHUTDOWN)
681 fw_device_shutdown(&device->work.work);
682 else
683 fw_notify("created new fw device %s (%d config rom retries)\n",
684 device->device.bus_id, device->config_rom_retries);
685
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400686 /*
687 * Reschedule the IRM work if we just finished reading the
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500688 * root node config rom. If this races with a bus reset we
689 * just end up running the IRM work a couple of extra times -
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400690 * pretty harmless.
691 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500692 if (device->node == device->card->root_node)
693 schedule_delayed_work(&device->card->work, 0);
694
695 return;
696
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500697 error_with_cdev:
Kristian Høgsbergdde2b952007-04-17 11:51:57 -0400698 down_write(&idr_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500699 idr_remove(&fw_device_idr, minor);
Kristian Høgsbergdde2b952007-04-17 11:51:57 -0400700 up_write(&idr_rwsem);
Stefan Richter373b2ed2007-03-04 14:45:18 +0100701 error:
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500702 put_device(&device->device);
703}
704
705static int update_unit(struct device *dev, void *data)
706{
707 struct fw_unit *unit = fw_unit(dev);
708 struct fw_driver *driver = (struct fw_driver *)dev->driver;
709
Kristian Høgsberg015b0662007-03-19 11:37:16 -0400710 if (is_fw_unit(dev) && driver != NULL && driver->update != NULL) {
711 down(&dev->sem);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500712 driver->update(unit);
Kristian Høgsberg015b0662007-03-19 11:37:16 -0400713 up(&dev->sem);
714 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500715
716 return 0;
717}
718
Kristian Høgsberg5f480472007-03-07 12:12:39 -0500719static void fw_device_update(struct work_struct *work)
720{
721 struct fw_device *device =
722 container_of(work, struct fw_device, work.work);
723
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500724 fw_device_cdev_update(device);
Kristian Høgsberg5f480472007-03-07 12:12:39 -0500725 device_for_each_child(&device->device, NULL, update_unit);
726}
727
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500728void fw_node_event(struct fw_card *card, struct fw_node *node, int event)
729{
730 struct fw_device *device;
731
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500732 switch (event) {
733 case FW_NODE_CREATED:
734 case FW_NODE_LINK_ON:
735 if (!node->link_on)
736 break;
737
738 device = kzalloc(sizeof(*device), GFP_ATOMIC);
739 if (device == NULL)
740 break;
741
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400742 /*
743 * Do minimal intialization of the device here, the
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500744 * rest will happen in fw_device_init(). We need the
745 * card and node so we can read the config rom and we
746 * need to do device_initialize() now so
747 * device_for_each_child() in FW_NODE_UPDATED is
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400748 * doesn't freak out.
749 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500750 device_initialize(&device->device);
Stefan Richter641f8792007-01-27 10:34:55 +0100751 atomic_set(&device->state, FW_DEVICE_INITIALIZING);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500752 device->card = fw_card_get(card);
753 device->node = fw_node_get(node);
754 device->node_id = node->node_id;
755 device->generation = card->generation;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500756 INIT_LIST_HEAD(&device->client_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500757
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400758 /*
759 * Set the node data to point back to this device so
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500760 * FW_NODE_UPDATED callbacks can update the node_id
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400761 * and generation for the device.
762 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500763 node->data = device;
764
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400765 /*
766 * Many devices are slow to respond after bus resets,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500767 * especially if they are bus powered and go through
768 * power-up after getting plugged in. We schedule the
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400769 * first config rom scan half a second after bus reset.
770 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500771 INIT_DELAYED_WORK(&device->work, fw_device_init);
772 schedule_delayed_work(&device->work, INITIAL_DELAY);
773 break;
774
775 case FW_NODE_UPDATED:
776 if (!node->link_on || node->data == NULL)
777 break;
778
779 device = node->data;
780 device->node_id = node->node_id;
781 device->generation = card->generation;
Kristian Høgsberg5f480472007-03-07 12:12:39 -0500782 if (atomic_read(&device->state) == FW_DEVICE_RUNNING) {
783 PREPARE_DELAYED_WORK(&device->work, fw_device_update);
784 schedule_delayed_work(&device->work, 0);
785 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500786 break;
787
788 case FW_NODE_DESTROYED:
789 case FW_NODE_LINK_OFF:
790 if (!node->data)
791 break;
792
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400793 /*
794 * Destroy the device associated with the node. There
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500795 * are two cases here: either the device is fully
796 * initialized (FW_DEVICE_RUNNING) or we're in the
797 * process of reading its config rom
798 * (FW_DEVICE_INITIALIZING). If it is fully
799 * initialized we can reuse device->work to schedule a
800 * full fw_device_shutdown(). If not, there's work
801 * scheduled to read it's config rom, and we just put
802 * the device in shutdown state to have that code fail
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400803 * to create the device.
804 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500805 device = node->data;
Stefan Richter641f8792007-01-27 10:34:55 +0100806 if (atomic_xchg(&device->state,
Kristian Høgsberg5f480472007-03-07 12:12:39 -0500807 FW_DEVICE_SHUTDOWN) == FW_DEVICE_RUNNING) {
808 PREPARE_DELAYED_WORK(&device->work, fw_device_shutdown);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500809 schedule_delayed_work(&device->work, 0);
810 }
811 break;
812 }
813}