blob: ffde1bed46b295a792f467e8669e94b9beb7189a [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 Richter3d36a0d2009-01-17 22:45:54 +010028#include <linux/jiffies.h>
Stefan Richterc9755e12008-03-24 20:54:28 +010029#include <linux/string.h>
Matthew Wilcox6188e102008-04-18 22:21:05 -040030#include <linux/rwsem.h>
31#include <linux/semaphore.h>
Jay Fenlasoncf417e542008-10-03 11:19:09 -040032#include <linux/spinlock.h>
Stefan Richterb5d2a5e2008-01-25 18:57:41 +010033#include <asm/system.h>
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -040034#include <linux/ctype.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050035#include "fw-transaction.h"
36#include "fw-topology.h"
37#include "fw-device.h"
38
39void fw_csr_iterator_init(struct fw_csr_iterator *ci, u32 * p)
40{
41 ci->p = p + 1;
42 ci->end = ci->p + (p[0] >> 16);
43}
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050044EXPORT_SYMBOL(fw_csr_iterator_init);
45
46int fw_csr_iterator_next(struct fw_csr_iterator *ci, int *key, int *value)
47{
48 *key = *ci->p >> 24;
49 *value = *ci->p & 0xffffff;
50
51 return ci->p++ < ci->end;
52}
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050053EXPORT_SYMBOL(fw_csr_iterator_next);
54
55static int is_fw_unit(struct device *dev);
56
Stefan Richter21ebcd12007-01-14 15:29:07 +010057static int match_unit_directory(u32 * directory, const struct fw_device_id *id)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050058{
59 struct fw_csr_iterator ci;
60 int key, value, match;
61
62 match = 0;
63 fw_csr_iterator_init(&ci, directory);
64 while (fw_csr_iterator_next(&ci, &key, &value)) {
65 if (key == CSR_VENDOR && value == id->vendor)
66 match |= FW_MATCH_VENDOR;
67 if (key == CSR_MODEL && value == id->model)
68 match |= FW_MATCH_MODEL;
69 if (key == CSR_SPECIFIER_ID && value == id->specifier_id)
70 match |= FW_MATCH_SPECIFIER_ID;
71 if (key == CSR_VERSION && value == id->version)
72 match |= FW_MATCH_VERSION;
73 }
74
75 return (match & id->match_flags) == id->match_flags;
76}
77
78static int fw_unit_match(struct device *dev, struct device_driver *drv)
79{
80 struct fw_unit *unit = fw_unit(dev);
81 struct fw_driver *driver = fw_driver(drv);
82 int i;
83
84 /* We only allow binding to fw_units. */
85 if (!is_fw_unit(dev))
86 return 0;
87
88 for (i = 0; driver->id_table[i].match_flags != 0; i++) {
89 if (match_unit_directory(unit->directory, &driver->id_table[i]))
90 return 1;
91 }
92
93 return 0;
94}
95
96static int get_modalias(struct fw_unit *unit, char *buffer, size_t buffer_size)
97{
98 struct fw_device *device = fw_device(unit->device.parent);
99 struct fw_csr_iterator ci;
100
101 int key, value;
102 int vendor = 0;
103 int model = 0;
104 int specifier_id = 0;
105 int version = 0;
106
107 fw_csr_iterator_init(&ci, &device->config_rom[5]);
108 while (fw_csr_iterator_next(&ci, &key, &value)) {
109 switch (key) {
110 case CSR_VENDOR:
111 vendor = value;
112 break;
113 case CSR_MODEL:
114 model = value;
115 break;
116 }
117 }
118
119 fw_csr_iterator_init(&ci, unit->directory);
120 while (fw_csr_iterator_next(&ci, &key, &value)) {
121 switch (key) {
122 case CSR_SPECIFIER_ID:
123 specifier_id = value;
124 break;
125 case CSR_VERSION:
126 version = value;
127 break;
128 }
129 }
130
131 return snprintf(buffer, buffer_size,
132 "ieee1394:ven%08Xmo%08Xsp%08Xver%08X",
133 vendor, model, specifier_id, version);
134}
135
136static int
Kay Sievers7eff2e72007-08-14 15:15:12 +0200137fw_unit_uevent(struct device *dev, struct kobj_uevent_env *env)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500138{
139 struct fw_unit *unit = fw_unit(dev);
140 char modalias[64];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500141
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400142 get_modalias(unit, modalias, sizeof(modalias));
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500143
Kay Sievers7eff2e72007-08-14 15:15:12 +0200144 if (add_uevent_var(env, "MODALIAS=%s", modalias))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500145 return -ENOMEM;
146
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500147 return 0;
148}
149
150struct bus_type fw_bus_type = {
Kristian Høgsberg362c2c82007-02-06 14:49:37 -0500151 .name = "firewire",
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500152 .match = fw_unit_match,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500153};
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500154EXPORT_SYMBOL(fw_bus_type);
155
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500156static void fw_device_release(struct device *dev)
157{
158 struct fw_device *device = fw_device(dev);
Stefan Richter855c6032008-02-27 22:14:27 +0100159 struct fw_card *card = device->card;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500160 unsigned long flags;
161
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400162 /*
163 * Take the card lock so we don't set this to NULL while a
Stefan Richter62305822009-01-09 20:49:37 +0100164 * FW_NODE_UPDATED callback is being handled or while the
165 * bus manager work looks at this node.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400166 */
Stefan Richterc9755e12008-03-24 20:54:28 +0100167 spin_lock_irqsave(&card->lock, flags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500168 device->node->data = NULL;
Stefan Richterc9755e12008-03-24 20:54:28 +0100169 spin_unlock_irqrestore(&card->lock, flags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500170
171 fw_node_put(device->node);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500172 kfree(device->config_rom);
173 kfree(device);
Stefan Richter459f7922008-05-24 16:50:22 +0200174 fw_card_put(card);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500175}
176
177int fw_device_enable_phys_dma(struct fw_device *device)
178{
Stefan Richterb5d2a5e2008-01-25 18:57:41 +0100179 int generation = device->generation;
180
181 /* device->node_id, accessed below, must not be older than generation */
182 smp_rmb();
183
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500184 return device->card->driver->enable_phys_dma(device->card,
185 device->node_id,
Stefan Richterb5d2a5e2008-01-25 18:57:41 +0100186 generation);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500187}
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500188EXPORT_SYMBOL(fw_device_enable_phys_dma);
189
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400190struct config_rom_attribute {
191 struct device_attribute attr;
192 u32 key;
193};
194
195static ssize_t
196show_immediate(struct device *dev, struct device_attribute *dattr, char *buf)
197{
198 struct config_rom_attribute *attr =
199 container_of(dattr, struct config_rom_attribute, attr);
200 struct fw_csr_iterator ci;
201 u32 *dir;
Stefan Richterc9755e12008-03-24 20:54:28 +0100202 int key, value, ret = -ENOENT;
203
204 down_read(&fw_device_rwsem);
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400205
206 if (is_fw_unit(dev))
207 dir = fw_unit(dev)->directory;
208 else
209 dir = fw_device(dev)->config_rom + 5;
210
211 fw_csr_iterator_init(&ci, dir);
212 while (fw_csr_iterator_next(&ci, &key, &value))
Stefan Richterc9755e12008-03-24 20:54:28 +0100213 if (attr->key == key) {
214 ret = snprintf(buf, buf ? PAGE_SIZE : 0,
215 "0x%06x\n", value);
216 break;
217 }
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400218
Stefan Richterc9755e12008-03-24 20:54:28 +0100219 up_read(&fw_device_rwsem);
220
221 return ret;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400222}
223
224#define IMMEDIATE_ATTR(name, key) \
225 { __ATTR(name, S_IRUGO, show_immediate, NULL), key }
226
227static ssize_t
228show_text_leaf(struct device *dev, struct device_attribute *dattr, char *buf)
229{
230 struct config_rom_attribute *attr =
231 container_of(dattr, struct config_rom_attribute, attr);
232 struct fw_csr_iterator ci;
233 u32 *dir, *block = NULL, *p, *end;
Stefan Richterc9755e12008-03-24 20:54:28 +0100234 int length, key, value, last_key = 0, ret = -ENOENT;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400235 char *b;
236
Stefan Richterc9755e12008-03-24 20:54:28 +0100237 down_read(&fw_device_rwsem);
238
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400239 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)
Stefan Richterc9755e12008-03-24 20:54:28 +0100253 goto out;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400254
255 length = min(block[0] >> 16, 256U);
256 if (length < 3)
Stefan Richterc9755e12008-03-24 20:54:28 +0100257 goto out;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400258
259 if (block[1] != 0 || block[2] != 0)
260 /* Unknown encoding. */
Stefan Richterc9755e12008-03-24 20:54:28 +0100261 goto out;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400262
Stefan Richterc9755e12008-03-24 20:54:28 +0100263 if (buf == NULL) {
264 ret = length * 4;
265 goto out;
266 }
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400267
268 b = buf;
269 end = &block[length + 1];
270 for (p = &block[3]; p < end; p++, b += 4)
271 * (u32 *) b = (__force u32) __cpu_to_be32(*p);
272
273 /* Strip trailing whitespace and add newline. */
274 while (b--, (isspace(*b) || *b == '\0') && b > buf);
275 strcpy(b + 1, "\n");
Stefan Richterc9755e12008-03-24 20:54:28 +0100276 ret = b + 2 - buf;
277 out:
278 up_read(&fw_device_rwsem);
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400279
Stefan Richterc9755e12008-03-24 20:54:28 +0100280 return ret;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400281}
282
283#define TEXT_LEAF_ATTR(name, key) \
284 { __ATTR(name, S_IRUGO, show_text_leaf, NULL), key }
285
286static struct config_rom_attribute config_rom_attributes[] = {
287 IMMEDIATE_ATTR(vendor, CSR_VENDOR),
288 IMMEDIATE_ATTR(hardware_version, CSR_HARDWARE_VERSION),
289 IMMEDIATE_ATTR(specifier_id, CSR_SPECIFIER_ID),
290 IMMEDIATE_ATTR(version, CSR_VERSION),
291 IMMEDIATE_ATTR(model, CSR_MODEL),
292 TEXT_LEAF_ATTR(vendor_name, CSR_VENDOR),
293 TEXT_LEAF_ATTR(model_name, CSR_MODEL),
294 TEXT_LEAF_ATTR(hardware_version_name, CSR_HARDWARE_VERSION),
295};
296
297static void
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400298init_fw_attribute_group(struct device *dev,
299 struct device_attribute *attrs,
300 struct fw_attribute_group *group)
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400301{
302 struct device_attribute *attr;
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400303 int i, j;
304
305 for (j = 0; attrs[j].attr.name != NULL; j++)
306 group->attrs[j] = &attrs[j].attr;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400307
308 for (i = 0; i < ARRAY_SIZE(config_rom_attributes); i++) {
309 attr = &config_rom_attributes[i].attr;
310 if (attr->show(dev, attr, NULL) < 0)
311 continue;
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400312 group->attrs[j++] = &attr->attr;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400313 }
314
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400315 BUG_ON(j >= ARRAY_SIZE(group->attrs));
316 group->attrs[j++] = NULL;
317 group->groups[0] = &group->group;
318 group->groups[1] = NULL;
319 group->group.attrs = group->attrs;
320 dev->groups = group->groups;
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400321}
322
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500323static ssize_t
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400324modalias_show(struct device *dev,
325 struct device_attribute *attr, char *buf)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500326{
327 struct fw_unit *unit = fw_unit(dev);
328 int length;
329
330 length = get_modalias(unit, buf, PAGE_SIZE);
331 strcpy(buf + length, "\n");
332
333 return length + 1;
334}
335
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500336static ssize_t
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400337rom_index_show(struct device *dev,
338 struct device_attribute *attr, char *buf)
Kristian Høgsberg048961e2007-03-07 12:12:46 -0500339{
340 struct fw_device *device = fw_device(dev->parent);
341 struct fw_unit *unit = fw_unit(dev);
342
343 return snprintf(buf, PAGE_SIZE, "%d\n",
Stefan Richterd84702a2007-03-20 19:42:15 +0100344 (int)(unit->directory - device->config_rom));
Kristian Høgsberg048961e2007-03-07 12:12:46 -0500345}
346
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400347static struct device_attribute fw_unit_attributes[] = {
348 __ATTR_RO(modalias),
349 __ATTR_RO(rom_index),
350 __ATTR_NULL,
351};
352
353static ssize_t
Kristian Høgsbergbbd14942007-03-20 20:58:35 -0400354config_rom_show(struct device *dev, struct device_attribute *attr, char *buf)
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400355{
356 struct fw_device *device = fw_device(dev);
Stefan Richterc9755e12008-03-24 20:54:28 +0100357 size_t length;
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400358
Stefan Richterc9755e12008-03-24 20:54:28 +0100359 down_read(&fw_device_rwsem);
360 length = device->config_rom_length * 4;
361 memcpy(buf, device->config_rom, length);
362 up_read(&fw_device_rwsem);
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400363
Stefan Richterc9755e12008-03-24 20:54:28 +0100364 return length;
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400365}
366
Kristian Høgsbergbbd14942007-03-20 20:58:35 -0400367static ssize_t
368guid_show(struct device *dev, struct device_attribute *attr, char *buf)
369{
370 struct fw_device *device = fw_device(dev);
Stefan Richterc9755e12008-03-24 20:54:28 +0100371 int ret;
Kristian Høgsbergbbd14942007-03-20 20:58:35 -0400372
Stefan Richterc9755e12008-03-24 20:54:28 +0100373 down_read(&fw_device_rwsem);
374 ret = snprintf(buf, PAGE_SIZE, "0x%08x%08x\n",
375 device->config_rom[3], device->config_rom[4]);
376 up_read(&fw_device_rwsem);
377
378 return ret;
Kristian Høgsbergbbd14942007-03-20 20:58:35 -0400379}
380
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400381static struct device_attribute fw_device_attributes[] = {
382 __ATTR_RO(config_rom),
Kristian Høgsbergbbd14942007-03-20 20:58:35 -0400383 __ATTR_RO(guid),
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400384 __ATTR_NULL,
Kristian Høgsberg048961e2007-03-07 12:12:46 -0500385};
386
Stefan Richterf8d2dc32008-01-25 17:53:49 +0100387static int
388read_rom(struct fw_device *device, int generation, int index, u32 *data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500389{
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200390 int rcode;
Stefan Richterb5d2a5e2008-01-25 18:57:41 +0100391
392 /* device->node_id, accessed below, must not be older than generation */
393 smp_rmb();
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500394
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200395 rcode = fw_run_transaction(device->card, TCODE_READ_QUADLET_REQUEST,
Stefan Richterb5d2a5e2008-01-25 18:57:41 +0100396 device->node_id, generation, device->max_speed,
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200397 (CSR_REGISTER_BASE | CSR_CONFIG_ROM) + index * 4,
398 data, 4);
399 be32_to_cpus(data);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500400
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200401 return rcode;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500402}
403
Stefan Richter1dadff72008-03-02 19:35:42 +0100404#define READ_BIB_ROM_SIZE 256
405#define READ_BIB_STACK_SIZE 16
406
Stefan Richterf8d2dc32008-01-25 17:53:49 +0100407/*
408 * Read the bus info block, perform a speed probe, and read all of the rest of
409 * the config ROM. We do all this with a cached bus generation. If the bus
410 * generation changes under us, read_bus_info_block will fail and get retried.
411 * It's better to start all over in this case because the node from which we
412 * are reading the ROM may have changed the ROM during the reset.
413 */
414static int read_bus_info_block(struct fw_device *device, int generation)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500415{
Stefan Richterc9755e12008-03-24 20:54:28 +0100416 u32 *rom, *stack, *old_rom, *new_rom;
Stefan Richter1dadff72008-03-02 19:35:42 +0100417 u32 sp, key;
418 int i, end, length, ret = -1;
419
420 rom = kmalloc(sizeof(*rom) * READ_BIB_ROM_SIZE +
421 sizeof(*stack) * READ_BIB_STACK_SIZE, GFP_KERNEL);
422 if (rom == NULL)
423 return -ENOMEM;
424
425 stack = &rom[READ_BIB_ROM_SIZE];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500426
Stefan Richterf1397492007-06-10 21:31:36 +0200427 device->max_speed = SCODE_100;
428
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500429 /* First read the bus info block. */
430 for (i = 0; i < 5; i++) {
Stefan Richterf8d2dc32008-01-25 17:53:49 +0100431 if (read_rom(device, generation, i, &rom[i]) != RCODE_COMPLETE)
Stefan Richter1dadff72008-03-02 19:35:42 +0100432 goto out;
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400433 /*
434 * As per IEEE1212 7.2, during power-up, devices can
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500435 * reply with a 0 for the first quadlet of the config
436 * rom to indicate that they are booting (for example,
437 * if the firmware is on the disk of a external
438 * harddisk). In that case we just fail, and the
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400439 * retry mechanism will try again later.
440 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500441 if (i == 0 && rom[i] == 0)
Stefan Richter1dadff72008-03-02 19:35:42 +0100442 goto out;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500443 }
444
Stefan Richterf1397492007-06-10 21:31:36 +0200445 device->max_speed = device->node->max_speed;
446
447 /*
448 * Determine the speed of
449 * - devices with link speed less than PHY speed,
450 * - devices with 1394b PHY (unless only connected to 1394a PHYs),
451 * - all devices if there are 1394b repeaters.
452 * Note, we cannot use the bus info block's link_spd as starting point
453 * because some buggy firmwares set it lower than necessary and because
454 * 1394-1995 nodes do not have the field.
455 */
456 if ((rom[2] & 0x7) < device->max_speed ||
457 device->max_speed == SCODE_BETA ||
458 device->card->beta_repeaters_present) {
459 u32 dummy;
460
461 /* for S1600 and S3200 */
462 if (device->max_speed == SCODE_BETA)
463 device->max_speed = device->card->link_speed;
464
465 while (device->max_speed > SCODE_100) {
Stefan Richterf8d2dc32008-01-25 17:53:49 +0100466 if (read_rom(device, generation, 0, &dummy) ==
467 RCODE_COMPLETE)
Stefan Richterf1397492007-06-10 21:31:36 +0200468 break;
469 device->max_speed--;
470 }
471 }
472
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400473 /*
474 * Now parse the config rom. The config rom is a recursive
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500475 * directory structure so we parse it using a stack of
476 * references to the blocks that make up the structure. We
477 * push a reference to the root directory on the stack to
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400478 * start things off.
479 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500480 length = i;
481 sp = 0;
482 stack[sp++] = 0xc0000005;
483 while (sp > 0) {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400484 /*
485 * Pop the next block reference of the stack. The
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500486 * lower 24 bits is the offset into the config rom,
487 * the upper 8 bits are the type of the reference the
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400488 * block.
489 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500490 key = stack[--sp];
491 i = key & 0xffffff;
Stefan Richter1dadff72008-03-02 19:35:42 +0100492 if (i >= READ_BIB_ROM_SIZE)
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400493 /*
494 * The reference points outside the standard
495 * config rom area, something's fishy.
496 */
Stefan Richter1dadff72008-03-02 19:35:42 +0100497 goto out;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500498
499 /* Read header quadlet for the block to get the length. */
Stefan Richterf8d2dc32008-01-25 17:53:49 +0100500 if (read_rom(device, generation, i, &rom[i]) != RCODE_COMPLETE)
Stefan Richter1dadff72008-03-02 19:35:42 +0100501 goto out;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500502 end = i + (rom[i] >> 16) + 1;
503 i++;
Stefan Richter1dadff72008-03-02 19:35:42 +0100504 if (end > READ_BIB_ROM_SIZE)
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400505 /*
506 * This block extends outside standard config
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500507 * area (and the array we're reading it
508 * into). That's broken, so ignore this
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400509 * device.
510 */
Stefan Richter1dadff72008-03-02 19:35:42 +0100511 goto out;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500512
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400513 /*
514 * Now read in the block. If this is a directory
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500515 * block, check the entries as we read them to see if
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400516 * it references another block, and push it in that case.
517 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500518 while (i < end) {
Stefan Richterf8d2dc32008-01-25 17:53:49 +0100519 if (read_rom(device, generation, i, &rom[i]) !=
520 RCODE_COMPLETE)
Stefan Richter1dadff72008-03-02 19:35:42 +0100521 goto out;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500522 if ((key >> 30) == 3 && (rom[i] >> 30) > 1 &&
Stefan Richter1dadff72008-03-02 19:35:42 +0100523 sp < READ_BIB_STACK_SIZE)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500524 stack[sp++] = i + rom[i];
525 i++;
526 }
527 if (length < i)
528 length = i;
529 }
530
Stefan Richterc9755e12008-03-24 20:54:28 +0100531 old_rom = device->config_rom;
532 new_rom = kmemdup(rom, length * 4, GFP_KERNEL);
533 if (new_rom == NULL)
Stefan Richter1dadff72008-03-02 19:35:42 +0100534 goto out;
Stefan Richterc9755e12008-03-24 20:54:28 +0100535
536 down_write(&fw_device_rwsem);
537 device->config_rom = new_rom;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500538 device->config_rom_length = length;
Stefan Richterc9755e12008-03-24 20:54:28 +0100539 up_write(&fw_device_rwsem);
540
541 kfree(old_rom);
Stefan Richter1dadff72008-03-02 19:35:42 +0100542 ret = 0;
Stefan Richterc9755e12008-03-24 20:54:28 +0100543 device->cmc = rom[2] & 1 << 30;
Stefan Richter1dadff72008-03-02 19:35:42 +0100544 out:
545 kfree(rom);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500546
Stefan Richter1dadff72008-03-02 19:35:42 +0100547 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500548}
549
550static void fw_unit_release(struct device *dev)
551{
552 struct fw_unit *unit = fw_unit(dev);
553
554 kfree(unit);
555}
556
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400557static struct device_type fw_unit_type = {
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400558 .uevent = fw_unit_uevent,
559 .release = fw_unit_release,
560};
561
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500562static int is_fw_unit(struct device *dev)
563{
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400564 return dev->type == &fw_unit_type;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500565}
566
567static void create_units(struct fw_device *device)
568{
569 struct fw_csr_iterator ci;
570 struct fw_unit *unit;
571 int key, value, i;
572
573 i = 0;
574 fw_csr_iterator_init(&ci, &device->config_rom[5]);
575 while (fw_csr_iterator_next(&ci, &key, &value)) {
576 if (key != (CSR_UNIT | CSR_DIRECTORY))
577 continue;
578
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400579 /*
580 * Get the address of the unit directory and try to
581 * match the drivers id_tables against it.
582 */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400583 unit = kzalloc(sizeof(*unit), GFP_KERNEL);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500584 if (unit == NULL) {
585 fw_error("failed to allocate memory for unit\n");
586 continue;
587 }
588
589 unit->directory = ci.p + value - 1;
590 unit->device.bus = &fw_bus_type;
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400591 unit->device.type = &fw_unit_type;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500592 unit->device.parent = &device->device;
Kay Sieversa1f64812008-10-30 01:41:56 +0100593 dev_set_name(&unit->device, "%s.%d", dev_name(&device->device), i++);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500594
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400595 init_fw_attribute_group(&unit->device,
596 fw_unit_attributes,
597 &unit->attribute_group);
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400598 if (device_register(&unit->device) < 0)
599 goto skip_unit;
600
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400601 continue;
602
Kristian Høgsberg7feb9cc2007-03-21 10:55:19 -0400603 skip_unit:
604 kfree(unit);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500605 }
606}
607
608static int shutdown_unit(struct device *device, void *data)
609{
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400610 device_unregister(device);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500611
612 return 0;
613}
614
Stefan Richterc9755e12008-03-24 20:54:28 +0100615/*
616 * fw_device_rwsem acts as dual purpose mutex:
617 * - serializes accesses to fw_device_idr,
618 * - serializes accesses to fw_device.config_rom/.config_rom_length and
619 * fw_unit.directory, unless those accesses happen at safe occasions
620 */
621DECLARE_RWSEM(fw_device_rwsem);
622
Stefan Richterd6053e02008-11-24 20:40:00 +0100623DEFINE_IDR(fw_device_idr);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500624int fw_cdev_major;
625
Stefan Richter96b19062008-02-02 15:01:09 +0100626struct fw_device *fw_device_get_by_devt(dev_t devt)
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500627{
628 struct fw_device *device;
629
Stefan Richterc9755e12008-03-24 20:54:28 +0100630 down_read(&fw_device_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500631 device = idr_find(&fw_device_idr, MINOR(devt));
Stefan Richter96b19062008-02-02 15:01:09 +0100632 if (device)
633 fw_device_get(device);
Stefan Richterc9755e12008-03-24 20:54:28 +0100634 up_read(&fw_device_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500635
636 return device;
637}
638
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400639/*
640 * These defines control the retry behavior for reading the config
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500641 * rom. It shouldn't be necessary to tweak these; if the device
642 * doesn't respond to a config rom read within 10 seconds, it's not
643 * going to respond at all. As for the initial delay, a lot of
644 * devices will be able to respond within half a second after bus
645 * reset. On the other hand, it's not really worth being more
646 * aggressive than that, since it scales pretty well; if 10 devices
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400647 * are plugged in, they're all getting read within one second.
648 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500649
Kristian Høgsbergc5dfd0a2007-03-27 01:43:43 -0400650#define MAX_RETRIES 10
651#define RETRY_DELAY (3 * HZ)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500652#define INITIAL_DELAY (HZ / 2)
Stefan Richter3d36a0d2009-01-17 22:45:54 +0100653#define SHUTDOWN_DELAY (2 * HZ)
654
655static void fw_device_shutdown(struct work_struct *work)
656{
657 struct fw_device *device =
658 container_of(work, struct fw_device, work.work);
659 int minor = MINOR(device->device.devt);
660
Stefan Richtere747a5c2009-01-24 20:35:38 +0100661 if (time_is_after_jiffies(device->card->reset_jiffies + SHUTDOWN_DELAY)
662 && !list_empty(&device->card->link)) {
Stefan Richter3d36a0d2009-01-17 22:45:54 +0100663 schedule_delayed_work(&device->work, SHUTDOWN_DELAY);
664 return;
665 }
666
667 if (atomic_cmpxchg(&device->state,
668 FW_DEVICE_GONE,
669 FW_DEVICE_SHUTDOWN) != FW_DEVICE_GONE)
670 return;
671
672 fw_device_cdev_remove(device);
673 device_for_each_child(&device->device, NULL, shutdown_unit);
674 device_unregister(&device->device);
675
676 down_write(&fw_device_rwsem);
677 idr_remove(&fw_device_idr, minor);
678 up_write(&fw_device_rwsem);
679
680 fw_device_put(device);
681}
682
683static struct device_type fw_device_type = {
684 .release = fw_device_release,
685};
686
687static void fw_device_update(struct work_struct *work);
688
689/*
690 * If a device was pending for deletion because its node went away but its
691 * bus info block and root directory header matches that of a newly discovered
692 * device, revive the existing fw_device.
693 * The newly allocated fw_device becomes obsolete instead.
694 */
695static int lookup_existing_device(struct device *dev, void *data)
696{
697 struct fw_device *old = fw_device(dev);
698 struct fw_device *new = data;
699 struct fw_card *card = new->card;
700 int match = 0;
701
702 down_read(&fw_device_rwsem); /* serialize config_rom access */
703 spin_lock_irq(&card->lock); /* serialize node access */
704
705 if (memcmp(old->config_rom, new->config_rom, 6 * 4) == 0 &&
706 atomic_cmpxchg(&old->state,
707 FW_DEVICE_GONE,
708 FW_DEVICE_RUNNING) == FW_DEVICE_GONE) {
709 struct fw_node *current_node = new->node;
710 struct fw_node *obsolete_node = old->node;
711
712 new->node = obsolete_node;
713 new->node->data = new;
714 old->node = current_node;
715 old->node->data = old;
716
717 old->max_speed = new->max_speed;
718 old->node_id = current_node->node_id;
719 smp_wmb(); /* update node_id before generation */
720 old->generation = card->generation;
721 old->config_rom_retries = 0;
722 fw_notify("rediscovered device %s\n", dev_name(dev));
723
724 PREPARE_DELAYED_WORK(&old->work, fw_device_update);
725 schedule_delayed_work(&old->work, 0);
726
727 if (current_node == card->root_node)
728 fw_schedule_bm_work(card, 0);
729
730 match = 1;
731 }
732
733 spin_unlock_irq(&card->lock);
734 up_read(&fw_device_rwsem);
735
736 return match;
737}
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500738
739static void fw_device_init(struct work_struct *work)
740{
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500741 struct fw_device *device =
742 container_of(work, struct fw_device, work.work);
Stefan Richter3d36a0d2009-01-17 22:45:54 +0100743 struct device *revived_dev;
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500744 int minor, err;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500745
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400746 /*
747 * All failure paths here set node->data to NULL, so that we
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500748 * don't try to do device_for_each_child() on a kfree()'d
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400749 * device.
750 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500751
Stefan Richterf8d2dc32008-01-25 17:53:49 +0100752 if (read_bus_info_block(device, device->generation) < 0) {
Stefan Richter855c6032008-02-27 22:14:27 +0100753 if (device->config_rom_retries < MAX_RETRIES &&
754 atomic_read(&device->state) == FW_DEVICE_INITIALIZING) {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500755 device->config_rom_retries++;
756 schedule_delayed_work(&device->work, RETRY_DELAY);
757 } else {
Stefan Richter907293d2007-01-23 21:11:43 +0100758 fw_notify("giving up on config rom for node id %x\n",
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500759 device->node_id);
Kristian Høgsberg931c4832007-01-26 00:38:45 -0500760 if (device->node == device->card->root_node)
Jay Fenlason0fa1986f2008-11-29 17:44:57 +0100761 fw_schedule_bm_work(device->card, 0);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500762 fw_device_release(&device->device);
763 }
764 return;
765 }
766
Stefan Richter3d36a0d2009-01-17 22:45:54 +0100767 revived_dev = device_find_child(device->card->device,
768 device, lookup_existing_device);
769 if (revived_dev) {
770 put_device(revived_dev);
771 fw_device_release(&device->device);
772
773 return;
774 }
775
Stefan Richter62305822009-01-09 20:49:37 +0100776 device_initialize(&device->device);
Stefan Richter96b19062008-02-02 15:01:09 +0100777
778 fw_device_get(device);
Stefan Richterc9755e12008-03-24 20:54:28 +0100779 down_write(&fw_device_rwsem);
Stefan Richter62305822009-01-09 20:49:37 +0100780 err = idr_pre_get(&fw_device_idr, GFP_KERNEL) ?
781 idr_get_new(&fw_device_idr, device, &minor) :
782 -ENOMEM;
Stefan Richterc9755e12008-03-24 20:54:28 +0100783 up_write(&fw_device_rwsem);
Stefan Richter96b19062008-02-02 15:01:09 +0100784
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500785 if (err < 0)
786 goto error;
787
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500788 device->device.bus = &fw_bus_type;
Kristian Høgsberg21351db2007-03-20 20:58:33 -0400789 device->device.type = &fw_device_type;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500790 device->device.parent = device->card->device;
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500791 device->device.devt = MKDEV(fw_cdev_major, minor);
Kay Sieversa1f64812008-10-30 01:41:56 +0100792 dev_set_name(&device->device, "fw%d", minor);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500793
Kristian Høgsberg6f2e53d2007-03-27 19:35:13 -0400794 init_fw_attribute_group(&device->device,
795 fw_device_attributes,
796 &device->attribute_group);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500797 if (device_add(&device->device)) {
798 fw_error("Failed to add device.\n");
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500799 goto error_with_cdev;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500800 }
801
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500802 create_units(device);
803
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400804 /*
805 * Transition the device to running state. If it got pulled
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500806 * out from under us while we did the intialization work, we
807 * have to shut down the device again here. Normally, though,
808 * fw_node_event will be responsible for shutting it down when
809 * necessary. We have to use the atomic cmpxchg here to avoid
810 * racing with the FW_NODE_DESTROYED case in
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400811 * fw_node_event().
812 */
Stefan Richter641f8792007-01-27 10:34:55 +0100813 if (atomic_cmpxchg(&device->state,
Stefan Richter3d36a0d2009-01-17 22:45:54 +0100814 FW_DEVICE_INITIALIZING,
815 FW_DEVICE_RUNNING) == FW_DEVICE_GONE) {
816 PREPARE_DELAYED_WORK(&device->work, fw_device_shutdown);
817 schedule_delayed_work(&device->work, SHUTDOWN_DELAY);
Stefan Richterfa6e6972008-02-03 23:03:00 +0100818 } else {
819 if (device->config_rom_retries)
820 fw_notify("created device %s: GUID %08x%08x, S%d00, "
821 "%d config ROM retries\n",
Kay Sieversa1f64812008-10-30 01:41:56 +0100822 dev_name(&device->device),
Stefan Richterfa6e6972008-02-03 23:03:00 +0100823 device->config_rom[3], device->config_rom[4],
824 1 << device->max_speed,
825 device->config_rom_retries);
826 else
827 fw_notify("created device %s: GUID %08x%08x, S%d00\n",
Kay Sieversa1f64812008-10-30 01:41:56 +0100828 dev_name(&device->device),
Stefan Richterfa6e6972008-02-03 23:03:00 +0100829 device->config_rom[3], device->config_rom[4],
830 1 << device->max_speed);
Stefan Richterc9755e12008-03-24 20:54:28 +0100831 device->config_rom_retries = 0;
Stefan Richterfa6e6972008-02-03 23:03:00 +0100832 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500833
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400834 /*
835 * Reschedule the IRM work if we just finished reading the
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500836 * root node config rom. If this races with a bus reset we
837 * just end up running the IRM work a couple of extra times -
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400838 * pretty harmless.
839 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500840 if (device->node == device->card->root_node)
Jay Fenlason0fa1986f2008-11-29 17:44:57 +0100841 fw_schedule_bm_work(device->card, 0);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500842
843 return;
844
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500845 error_with_cdev:
Stefan Richterc9755e12008-03-24 20:54:28 +0100846 down_write(&fw_device_rwsem);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500847 idr_remove(&fw_device_idr, minor);
Stefan Richterc9755e12008-03-24 20:54:28 +0100848 up_write(&fw_device_rwsem);
Stefan Richter373b2ed2007-03-04 14:45:18 +0100849 error:
Stefan Richter96b19062008-02-02 15:01:09 +0100850 fw_device_put(device); /* fw_device_idr's reference */
851
852 put_device(&device->device); /* our reference */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500853}
854
855static int update_unit(struct device *dev, void *data)
856{
857 struct fw_unit *unit = fw_unit(dev);
858 struct fw_driver *driver = (struct fw_driver *)dev->driver;
859
Kristian Høgsberg015b0662007-03-19 11:37:16 -0400860 if (is_fw_unit(dev) && driver != NULL && driver->update != NULL) {
861 down(&dev->sem);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500862 driver->update(unit);
Kristian Høgsberg015b0662007-03-19 11:37:16 -0400863 up(&dev->sem);
864 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500865
866 return 0;
867}
868
Kristian Høgsberg5f480472007-03-07 12:12:39 -0500869static void fw_device_update(struct work_struct *work)
870{
871 struct fw_device *device =
872 container_of(work, struct fw_device, work.work);
873
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500874 fw_device_cdev_update(device);
Kristian Høgsberg5f480472007-03-07 12:12:39 -0500875 device_for_each_child(&device->device, NULL, update_unit);
876}
877
Stefan Richterc9755e12008-03-24 20:54:28 +0100878enum {
879 REREAD_BIB_ERROR,
880 REREAD_BIB_GONE,
881 REREAD_BIB_UNCHANGED,
882 REREAD_BIB_CHANGED,
883};
884
885/* Reread and compare bus info block and header of root directory */
886static int reread_bus_info_block(struct fw_device *device, int generation)
887{
888 u32 q;
889 int i;
890
891 for (i = 0; i < 6; i++) {
892 if (read_rom(device, generation, i, &q) != RCODE_COMPLETE)
893 return REREAD_BIB_ERROR;
894
895 if (i == 0 && q == 0)
896 return REREAD_BIB_GONE;
897
898 if (i > device->config_rom_length || q != device->config_rom[i])
899 return REREAD_BIB_CHANGED;
900 }
901
902 return REREAD_BIB_UNCHANGED;
903}
904
905static void fw_device_refresh(struct work_struct *work)
906{
907 struct fw_device *device =
908 container_of(work, struct fw_device, work.work);
909 struct fw_card *card = device->card;
910 int node_id = device->node_id;
911
912 switch (reread_bus_info_block(device, device->generation)) {
913 case REREAD_BIB_ERROR:
914 if (device->config_rom_retries < MAX_RETRIES / 2 &&
915 atomic_read(&device->state) == FW_DEVICE_INITIALIZING) {
916 device->config_rom_retries++;
917 schedule_delayed_work(&device->work, RETRY_DELAY / 2);
918
919 return;
920 }
921 goto give_up;
922
923 case REREAD_BIB_GONE:
924 goto gone;
925
926 case REREAD_BIB_UNCHANGED:
927 if (atomic_cmpxchg(&device->state,
Stefan Richter3d36a0d2009-01-17 22:45:54 +0100928 FW_DEVICE_INITIALIZING,
929 FW_DEVICE_RUNNING) == FW_DEVICE_GONE)
Stefan Richterc9755e12008-03-24 20:54:28 +0100930 goto gone;
931
932 fw_device_update(work);
933 device->config_rom_retries = 0;
934 goto out;
935
936 case REREAD_BIB_CHANGED:
937 break;
938 }
939
940 /*
941 * Something changed. We keep things simple and don't investigate
942 * further. We just destroy all previous units and create new ones.
943 */
944 device_for_each_child(&device->device, NULL, shutdown_unit);
945
946 if (read_bus_info_block(device, device->generation) < 0) {
947 if (device->config_rom_retries < MAX_RETRIES &&
948 atomic_read(&device->state) == FW_DEVICE_INITIALIZING) {
949 device->config_rom_retries++;
950 schedule_delayed_work(&device->work, RETRY_DELAY);
951
952 return;
953 }
954 goto give_up;
955 }
956
957 create_units(device);
958
959 if (atomic_cmpxchg(&device->state,
Stefan Richter3d36a0d2009-01-17 22:45:54 +0100960 FW_DEVICE_INITIALIZING,
961 FW_DEVICE_RUNNING) == FW_DEVICE_GONE)
Stefan Richterc9755e12008-03-24 20:54:28 +0100962 goto gone;
963
Kay Sieversa1f64812008-10-30 01:41:56 +0100964 fw_notify("refreshed device %s\n", dev_name(&device->device));
Stefan Richterc9755e12008-03-24 20:54:28 +0100965 device->config_rom_retries = 0;
966 goto out;
967
968 give_up:
Kay Sieversa1f64812008-10-30 01:41:56 +0100969 fw_notify("giving up on refresh of device %s\n", dev_name(&device->device));
Stefan Richterc9755e12008-03-24 20:54:28 +0100970 gone:
Stefan Richter3d36a0d2009-01-17 22:45:54 +0100971 atomic_set(&device->state, FW_DEVICE_GONE);
972 PREPARE_DELAYED_WORK(&device->work, fw_device_shutdown);
973 schedule_delayed_work(&device->work, SHUTDOWN_DELAY);
Stefan Richterc9755e12008-03-24 20:54:28 +0100974 out:
975 if (node_id == card->root_node->node_id)
Jay Fenlason0fa1986f2008-11-29 17:44:57 +0100976 fw_schedule_bm_work(card, 0);
Stefan Richterc9755e12008-03-24 20:54:28 +0100977}
978
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500979void fw_node_event(struct fw_card *card, struct fw_node *node, int event)
980{
981 struct fw_device *device;
982
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500983 switch (event) {
984 case FW_NODE_CREATED:
985 case FW_NODE_LINK_ON:
986 if (!node->link_on)
987 break;
Stefan Richterc9755e12008-03-24 20:54:28 +0100988 create:
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500989 device = kzalloc(sizeof(*device), GFP_ATOMIC);
990 if (device == NULL)
991 break;
992
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400993 /*
994 * Do minimal intialization of the device here, the
Stefan Richter62305822009-01-09 20:49:37 +0100995 * rest will happen in fw_device_init().
996 *
997 * Attention: A lot of things, even fw_device_get(),
998 * cannot be done before fw_device_init() finished!
999 * You can basically just check device->state and
1000 * schedule work until then, but only while holding
1001 * card->lock.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001002 */
Stefan Richter641f8792007-01-27 10:34:55 +01001003 atomic_set(&device->state, FW_DEVICE_INITIALIZING);
Stefan Richter459f7922008-05-24 16:50:22 +02001004 device->card = fw_card_get(card);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001005 device->node = fw_node_get(node);
1006 device->node_id = node->node_id;
1007 device->generation = card->generation;
Jay Fenlasoncf417e542008-10-03 11:19:09 -04001008 spin_lock_init(&device->client_list_lock);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -05001009 INIT_LIST_HEAD(&device->client_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001010
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001011 /*
1012 * Set the node data to point back to this device so
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001013 * FW_NODE_UPDATED callbacks can update the node_id
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001014 * and generation for the device.
1015 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001016 node->data = device;
1017
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001018 /*
1019 * Many devices are slow to respond after bus resets,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001020 * especially if they are bus powered and go through
1021 * power-up after getting plugged in. We schedule the
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001022 * first config rom scan half a second after bus reset.
1023 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001024 INIT_DELAYED_WORK(&device->work, fw_device_init);
1025 schedule_delayed_work(&device->work, INITIAL_DELAY);
1026 break;
1027
Stefan Richterc9755e12008-03-24 20:54:28 +01001028 case FW_NODE_INITIATED_RESET:
1029 device = node->data;
1030 if (device == NULL)
1031 goto create;
1032
1033 device->node_id = node->node_id;
1034 smp_wmb(); /* update node_id before generation */
1035 device->generation = card->generation;
1036 if (atomic_cmpxchg(&device->state,
1037 FW_DEVICE_RUNNING,
1038 FW_DEVICE_INITIALIZING) == FW_DEVICE_RUNNING) {
1039 PREPARE_DELAYED_WORK(&device->work, fw_device_refresh);
1040 schedule_delayed_work(&device->work,
1041 node == card->local_node ? 0 : INITIAL_DELAY);
1042 }
1043 break;
1044
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001045 case FW_NODE_UPDATED:
1046 if (!node->link_on || node->data == NULL)
1047 break;
1048
1049 device = node->data;
1050 device->node_id = node->node_id;
Stefan Richterb5d2a5e2008-01-25 18:57:41 +01001051 smp_wmb(); /* update node_id before generation */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001052 device->generation = card->generation;
Kristian Høgsberg5f480472007-03-07 12:12:39 -05001053 if (atomic_read(&device->state) == FW_DEVICE_RUNNING) {
1054 PREPARE_DELAYED_WORK(&device->work, fw_device_update);
1055 schedule_delayed_work(&device->work, 0);
1056 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001057 break;
1058
1059 case FW_NODE_DESTROYED:
1060 case FW_NODE_LINK_OFF:
1061 if (!node->data)
1062 break;
1063
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001064 /*
1065 * Destroy the device associated with the node. There
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001066 * are two cases here: either the device is fully
1067 * initialized (FW_DEVICE_RUNNING) or we're in the
1068 * process of reading its config rom
1069 * (FW_DEVICE_INITIALIZING). If it is fully
1070 * initialized we can reuse device->work to schedule a
1071 * full fw_device_shutdown(). If not, there's work
1072 * scheduled to read it's config rom, and we just put
1073 * the device in shutdown state to have that code fail
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001074 * to create the device.
1075 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001076 device = node->data;
Stefan Richter641f8792007-01-27 10:34:55 +01001077 if (atomic_xchg(&device->state,
Stefan Richter3d36a0d2009-01-17 22:45:54 +01001078 FW_DEVICE_GONE) == FW_DEVICE_RUNNING) {
Kristian Høgsberg5f480472007-03-07 12:12:39 -05001079 PREPARE_DELAYED_WORK(&device->work, fw_device_shutdown);
Stefan Richtere747a5c2009-01-24 20:35:38 +01001080 schedule_delayed_work(&device->work,
1081 list_empty(&card->link) ? 0 : SHUTDOWN_DELAY);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001082 }
1083 break;
1084 }
1085}