ieee1394: nodemgr clean up class iterators
[deliverable/linux.git] / drivers / ieee1394 / nodemgr.c
CommitLineData
1da177e4
LT
1/*
2 * Node information (ConfigROM) collection and management.
3 *
4 * Copyright (C) 2000 Andreas E. Bombe
5 * 2001-2003 Ben Collins <bcollins@debian.net>
6 *
7 * This code is licensed under the GPL. See the file COPYING in the root
8 * directory of the kernel sources for details.
9 */
10
09a9a45d 11#include <linux/bitmap.h>
1da177e4 12#include <linux/kernel.h>
1da177e4
LT
13#include <linux/list.h>
14#include <linux/slab.h>
1da177e4 15#include <linux/delay.h>
d2f119fe 16#include <linux/kthread.h>
8252bbb1 17#include <linux/module.h>
1da177e4 18#include <linux/moduleparam.h>
9543a931 19#include <linux/mutex.h>
7dfb7103 20#include <linux/freezer.h>
6188e10d 21#include <linux/semaphore.h>
1da177e4
LT
22#include <asm/atomic.h>
23
de4394f1
SR
24#include "csr.h"
25#include "highlevel.h"
26#include "hosts.h"
1da177e4
LT
27#include "ieee1394.h"
28#include "ieee1394_core.h"
de4394f1
SR
29#include "ieee1394_hotplug.h"
30#include "ieee1394_types.h"
1da177e4 31#include "ieee1394_transactions.h"
1da177e4
LT
32#include "nodemgr.h"
33
1934b8b6 34static int ignore_drivers;
3a632fe2 35module_param(ignore_drivers, int, S_IRUGO | S_IWUSR);
1da177e4
LT
36MODULE_PARM_DESC(ignore_drivers, "Disable automatic probing for drivers.");
37
38struct nodemgr_csr_info {
39 struct hpsb_host *host;
40 nodeid_t nodeid;
41 unsigned int generation;
647dcb5f 42 unsigned int speed_unverified:1;
1da177e4
LT
43};
44
45
647dcb5f
BC
46/*
47 * Correct the speed map entry. This is necessary
48 * - for nodes with link speed < phy speed,
49 * - for 1394b nodes with negotiated phy port speed < IEEE1394_SPEED_MAX.
50 * A possible speed is determined by trial and error, using quadlet reads.
51 */
52static int nodemgr_check_speed(struct nodemgr_csr_info *ci, u64 addr,
53 quadlet_t *buffer)
54{
55 quadlet_t q;
56 u8 i, *speed, old_speed, good_speed;
7fdfc909 57 int error;
647dcb5f 58
d7530a1e 59 speed = &(ci->host->speed[NODEID_TO_NODE(ci->nodeid)]);
647dcb5f
BC
60 old_speed = *speed;
61 good_speed = IEEE1394_SPEED_MAX + 1;
62
63 /* Try every speed from S100 to old_speed.
64 * If we did it the other way around, a too low speed could be caught
65 * if the retry succeeded for some other reason, e.g. because the link
66 * just finished its initialization. */
67 for (i = IEEE1394_SPEED_100; i <= old_speed; i++) {
68 *speed = i;
7fdfc909
SR
69 error = hpsb_read(ci->host, ci->nodeid, ci->generation, addr,
70 &q, sizeof(quadlet_t));
71 if (error)
647dcb5f
BC
72 break;
73 *buffer = q;
74 good_speed = i;
75 }
76 if (good_speed <= IEEE1394_SPEED_MAX) {
77 HPSB_DEBUG("Speed probe of node " NODE_BUS_FMT " yields %s",
78 NODE_BUS_ARGS(ci->host, ci->nodeid),
79 hpsb_speedto_str[good_speed]);
80 *speed = good_speed;
81 ci->speed_unverified = 0;
82 return 0;
83 }
84 *speed = old_speed;
7fdfc909 85 return error;
647dcb5f 86}
1da177e4
LT
87
88static int nodemgr_bus_read(struct csr1212_csr *csr, u64 addr, u16 length,
d41bba2d 89 void *buffer, void *__ci)
1da177e4
LT
90{
91 struct nodemgr_csr_info *ci = (struct nodemgr_csr_info*)__ci;
7fdfc909 92 int i, error;
1da177e4 93
e31a127c 94 for (i = 1; ; i++) {
7fdfc909
SR
95 error = hpsb_read(ci->host, ci->nodeid, ci->generation, addr,
96 buffer, length);
97 if (!error) {
647dcb5f
BC
98 ci->speed_unverified = 0;
99 break;
100 }
101 /* Give up after 3rd failure. */
102 if (i == 3)
1da177e4
LT
103 break;
104
647dcb5f
BC
105 /* The ieee1394_core guessed the node's speed capability from
106 * the self ID. Check whether a lower speed works. */
107 if (ci->speed_unverified && length == sizeof(quadlet_t)) {
7fdfc909
SR
108 error = nodemgr_check_speed(ci, addr, buffer);
109 if (!error)
647dcb5f
BC
110 break;
111 }
1da177e4
LT
112 if (msleep_interruptible(334))
113 return -EINTR;
114 }
7fdfc909 115 return error;
1da177e4
LT
116}
117
118static int nodemgr_get_max_rom(quadlet_t *bus_info_data, void *__ci)
119{
7fb9addb 120 return (be32_to_cpu(bus_info_data[2]) >> 8) & 0x3;
1da177e4
LT
121}
122
123static struct csr1212_bus_ops nodemgr_csr_ops = {
124 .bus_read = nodemgr_bus_read,
125 .get_max_rom = nodemgr_get_max_rom
126};
127
128
129/*
130 * Basically what we do here is start off retrieving the bus_info block.
131 * From there will fill in some info about the node, verify it is of IEEE
132 * 1394 type, and that the crc checks out ok. After that we start off with
133 * the root directory, and subdirectories. To do this, we retrieve the
134 * quadlet header for a directory, find out the length, and retrieve the
135 * complete directory entry (be it a leaf or a directory). We then process
136 * it and add the info to our structure for that particular node.
137 *
138 * We verify CRC's along the way for each directory/block/leaf. The entire
139 * node structure is generic, and simply stores the information in a way
140 * that's easy to parse by the protocol interface.
141 */
142
143/*
144 * The nodemgr relies heavily on the Driver Model for device callbacks and
145 * driver/device mappings. The old nodemgr used to handle all this itself,
146 * but now we are much simpler because of the LDM.
147 */
148
1da177e4
LT
149struct host_info {
150 struct hpsb_host *host;
151 struct list_head list;
d2f119fe 152 struct task_struct *thread;
1da177e4
LT
153};
154
155static int nodemgr_bus_match(struct device * dev, struct device_driver * drv);
7eff2e7a 156static int nodemgr_uevent(struct device *dev, struct kobj_uevent_env *env);
11305c3e 157static void nodemgr_reactivate_ne(struct node_entry *ne);
1da177e4
LT
158static void nodemgr_remove_ne(struct node_entry *ne);
159static struct node_entry *find_entry_by_guid(u64 guid);
160
161struct bus_type ieee1394_bus_type = {
162 .name = "ieee1394",
163 .match = nodemgr_bus_match,
164};
165
dd7f2928 166static void host_cls_release(struct device *dev)
1da177e4 167{
dd7f2928 168 put_device(&container_of((dev), struct hpsb_host, host_dev)->device);
1da177e4
LT
169}
170
171struct class hpsb_host_class = {
172 .name = "ieee1394_host",
dd7f2928 173 .dev_release = host_cls_release,
1da177e4
LT
174};
175
dd7f2928 176static void ne_cls_release(struct device *dev)
1da177e4 177{
dd7f2928 178 put_device(&container_of((dev), struct node_entry, node_dev)->device);
1da177e4
LT
179}
180
181static struct class nodemgr_ne_class = {
182 .name = "ieee1394_node",
dd7f2928 183 .dev_release = ne_cls_release,
1da177e4
LT
184};
185
dd7f2928 186static void ud_cls_release(struct device *dev)
1da177e4 187{
dd7f2928 188 put_device(&container_of((dev), struct unit_directory, unit_dev)->device);
1da177e4
LT
189}
190
191/* The name here is only so that unit directory hotplug works with old
dd7f2928
KS
192 * style hotplug, which only ever did unit directories anyway.
193 */
1da177e4
LT
194static struct class nodemgr_ud_class = {
195 .name = "ieee1394",
dd7f2928
KS
196 .dev_release = ud_cls_release,
197 .dev_uevent = nodemgr_uevent,
1da177e4
LT
198};
199
200static struct hpsb_highlevel nodemgr_highlevel;
201
202
203static void nodemgr_release_ud(struct device *dev)
204{
205 struct unit_directory *ud = container_of(dev, struct unit_directory, device);
206
207 if (ud->vendor_name_kv)
208 csr1212_release_keyval(ud->vendor_name_kv);
209 if (ud->model_name_kv)
210 csr1212_release_keyval(ud->model_name_kv);
211
212 kfree(ud);
213}
214
215static void nodemgr_release_ne(struct device *dev)
216{
217 struct node_entry *ne = container_of(dev, struct node_entry, device);
218
219 if (ne->vendor_name_kv)
220 csr1212_release_keyval(ne->vendor_name_kv);
221
222 kfree(ne);
223}
224
225
226static void nodemgr_release_host(struct device *dev)
227{
228 struct hpsb_host *host = container_of(dev, struct hpsb_host, device);
229
230 csr1212_destroy_csr(host->csr.rom);
231
232 kfree(host);
233}
234
235static int nodemgr_ud_platform_data;
236
237static struct device nodemgr_dev_template_ud = {
238 .bus = &ieee1394_bus_type,
239 .release = nodemgr_release_ud,
240 .platform_data = &nodemgr_ud_platform_data,
241};
242
243static struct device nodemgr_dev_template_ne = {
244 .bus = &ieee1394_bus_type,
245 .release = nodemgr_release_ne,
246};
247
8252bbb1
SR
248/* This dummy driver prevents the host devices from being scanned. We have no
249 * useful drivers for them yet, and there would be a deadlock possible if the
250 * driver core scans the host device while the host's low-level driver (i.e.
251 * the host's parent device) is being removed. */
252static struct device_driver nodemgr_mid_layer_driver = {
253 .bus = &ieee1394_bus_type,
254 .name = "nodemgr",
255 .owner = THIS_MODULE,
256};
257
1da177e4
LT
258struct device nodemgr_dev_template_host = {
259 .bus = &ieee1394_bus_type,
260 .release = nodemgr_release_host,
261};
262
263
264#define fw_attr(class, class_type, field, type, format_string) \
e404e274 265static ssize_t fw_show_##class##_##field (struct device *dev, struct device_attribute *attr, char *buf)\
1da177e4
LT
266{ \
267 class_type *class; \
268 class = container_of(dev, class_type, device); \
269 return sprintf(buf, format_string, (type)class->field); \
270} \
271static struct device_attribute dev_attr_##class##_##field = { \
272 .attr = {.name = __stringify(field), .mode = S_IRUGO }, \
273 .show = fw_show_##class##_##field, \
274};
275
276#define fw_attr_td(class, class_type, td_kv) \
e404e274 277static ssize_t fw_show_##class##_##td_kv (struct device *dev, struct device_attribute *attr, char *buf)\
1da177e4
LT
278{ \
279 int len; \
280 class_type *class = container_of(dev, class_type, device); \
281 len = (class->td_kv->value.leaf.len - 2) * sizeof(quadlet_t); \
282 memcpy(buf, \
283 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_DATA(class->td_kv), \
284 len); \
51ec138c 285 while (buf[len - 1] == '\0') \
1da177e4
LT
286 len--; \
287 buf[len++] = '\n'; \
288 buf[len] = '\0'; \
289 return len; \
290} \
291static struct device_attribute dev_attr_##class##_##td_kv = { \
292 .attr = {.name = __stringify(td_kv), .mode = S_IRUGO }, \
293 .show = fw_show_##class##_##td_kv, \
294};
295
296
297#define fw_drv_attr(field, type, format_string) \
298static ssize_t fw_drv_show_##field (struct device_driver *drv, char *buf) \
299{ \
300 struct hpsb_protocol_driver *driver; \
301 driver = container_of(drv, struct hpsb_protocol_driver, driver); \
302 return sprintf(buf, format_string, (type)driver->field);\
303} \
304static struct driver_attribute driver_attr_drv_##field = { \
d41bba2d
SR
305 .attr = {.name = __stringify(field), .mode = S_IRUGO }, \
306 .show = fw_drv_show_##field, \
1da177e4
LT
307};
308
309
e404e274 310static ssize_t fw_show_ne_bus_options(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
311{
312 struct node_entry *ne = container_of(dev, struct node_entry, device);
313
314 return sprintf(buf, "IRMC(%d) CMC(%d) ISC(%d) BMC(%d) PMC(%d) GEN(%d) "
315 "LSPD(%d) MAX_REC(%d) MAX_ROM(%d) CYC_CLK_ACC(%d)\n",
316 ne->busopt.irmc,
317 ne->busopt.cmc, ne->busopt.isc, ne->busopt.bmc,
318 ne->busopt.pmc, ne->busopt.generation, ne->busopt.lnkspd,
319 ne->busopt.max_rec,
320 ne->busopt.max_rom,
321 ne->busopt.cyc_clk_acc);
322}
323static DEVICE_ATTR(bus_options,S_IRUGO,fw_show_ne_bus_options,NULL);
324
325
9951903e
SR
326#ifdef HPSB_DEBUG_TLABELS
327static ssize_t fw_show_ne_tlabels_free(struct device *dev,
328 struct device_attribute *attr, char *buf)
1da177e4
LT
329{
330 struct node_entry *ne = container_of(dev, struct node_entry, device);
9951903e
SR
331 unsigned long flags;
332 unsigned long *tp = ne->host->tl_pool[NODEID_TO_NODE(ne->nodeid)].map;
333 int tf;
1da177e4 334
9951903e
SR
335 spin_lock_irqsave(&hpsb_tlabel_lock, flags);
336 tf = 64 - bitmap_weight(tp, 64);
337 spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
1da177e4 338
9951903e 339 return sprintf(buf, "%d\n", tf);
1da177e4 340}
9951903e 341static DEVICE_ATTR(tlabels_free,S_IRUGO,fw_show_ne_tlabels_free,NULL);
1da177e4
LT
342
343
9951903e
SR
344static ssize_t fw_show_ne_tlabels_mask(struct device *dev,
345 struct device_attribute *attr, char *buf)
1da177e4
LT
346{
347 struct node_entry *ne = container_of(dev, struct node_entry, device);
9951903e
SR
348 unsigned long flags;
349 unsigned long *tp = ne->host->tl_pool[NODEID_TO_NODE(ne->nodeid)].map;
350 u64 tm;
351
352 spin_lock_irqsave(&hpsb_tlabel_lock, flags);
1da177e4 353#if (BITS_PER_LONG <= 32)
9951903e 354 tm = ((u64)tp[0] << 32) + tp[1];
1da177e4 355#else
9951903e 356 tm = tp[0];
1da177e4 357#endif
9951903e
SR
358 spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
359
7f588039 360 return sprintf(buf, "0x%016llx\n", (unsigned long long)tm);
1da177e4
LT
361}
362static DEVICE_ATTR(tlabels_mask, S_IRUGO, fw_show_ne_tlabels_mask, NULL);
9951903e 363#endif /* HPSB_DEBUG_TLABELS */
1da177e4
LT
364
365
e404e274 366static ssize_t fw_set_ignore_driver(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1da177e4
LT
367{
368 struct unit_directory *ud = container_of(dev, struct unit_directory, device);
369 int state = simple_strtoul(buf, NULL, 10);
370
371 if (state == 1) {
1da177e4 372 ud->ignore_driver = 1;
b07375b1 373 device_release_driver(dev);
b07375b1 374 } else if (state == 0)
1da177e4
LT
375 ud->ignore_driver = 0;
376
377 return count;
378}
e404e274 379static ssize_t fw_get_ignore_driver(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
380{
381 struct unit_directory *ud = container_of(dev, struct unit_directory, device);
382
383 return sprintf(buf, "%d\n", ud->ignore_driver);
384}
385static DEVICE_ATTR(ignore_driver, S_IWUSR | S_IRUGO, fw_get_ignore_driver, fw_set_ignore_driver);
386
387
388static ssize_t fw_set_destroy_node(struct bus_type *bus, const char *buf, size_t count)
389{
390 struct node_entry *ne;
391 u64 guid = (u64)simple_strtoull(buf, NULL, 16);
392
393 ne = find_entry_by_guid(guid);
394
395 if (ne == NULL || !ne->in_limbo)
396 return -EINVAL;
397
398 nodemgr_remove_ne(ne);
399
400 return count;
401}
402static ssize_t fw_get_destroy_node(struct bus_type *bus, char *buf)
403{
404 return sprintf(buf, "You can destroy in_limbo nodes by writing their GUID to this file\n");
405}
406static BUS_ATTR(destroy_node, S_IWUSR | S_IRUGO, fw_get_destroy_node, fw_set_destroy_node);
407
1da177e4 408
c1c9c7cd
SR
409static ssize_t fw_set_rescan(struct bus_type *bus, const char *buf,
410 size_t count)
1da177e4 411{
c1c9c7cd
SR
412 int error = 0;
413
40fd89cc 414 if (simple_strtoul(buf, NULL, 10) == 1)
c1c9c7cd
SR
415 error = bus_rescan_devices(&ieee1394_bus_type);
416 return error ? error : count;
1da177e4
LT
417}
418static ssize_t fw_get_rescan(struct bus_type *bus, char *buf)
419{
420 return sprintf(buf, "You can force a rescan of the bus for "
421 "drivers by writing a 1 to this file\n");
422}
423static BUS_ATTR(rescan, S_IWUSR | S_IRUGO, fw_get_rescan, fw_set_rescan);
424
425
426static ssize_t fw_set_ignore_drivers(struct bus_type *bus, const char *buf, size_t count)
427{
428 int state = simple_strtoul(buf, NULL, 10);
429
430 if (state == 1)
431 ignore_drivers = 1;
b07375b1 432 else if (state == 0)
1da177e4
LT
433 ignore_drivers = 0;
434
435 return count;
436}
437static ssize_t fw_get_ignore_drivers(struct bus_type *bus, char *buf)
438{
439 return sprintf(buf, "%d\n", ignore_drivers);
440}
441static BUS_ATTR(ignore_drivers, S_IWUSR | S_IRUGO, fw_get_ignore_drivers, fw_set_ignore_drivers);
442
443
444struct bus_attribute *const fw_bus_attrs[] = {
445 &bus_attr_destroy_node,
446 &bus_attr_rescan,
447 &bus_attr_ignore_drivers,
448 NULL
449};
450
451
452fw_attr(ne, struct node_entry, capabilities, unsigned int, "0x%06x\n")
453fw_attr(ne, struct node_entry, nodeid, unsigned int, "0x%04x\n")
454
455fw_attr(ne, struct node_entry, vendor_id, unsigned int, "0x%06x\n")
456fw_attr_td(ne, struct node_entry, vendor_name_kv)
1da177e4
LT
457
458fw_attr(ne, struct node_entry, guid, unsigned long long, "0x%016Lx\n")
459fw_attr(ne, struct node_entry, guid_vendor_id, unsigned int, "0x%06x\n")
1da177e4
LT
460fw_attr(ne, struct node_entry, in_limbo, int, "%d\n");
461
462static struct device_attribute *const fw_ne_attrs[] = {
463 &dev_attr_ne_guid,
464 &dev_attr_ne_guid_vendor_id,
465 &dev_attr_ne_capabilities,
466 &dev_attr_ne_vendor_id,
467 &dev_attr_ne_nodeid,
468 &dev_attr_bus_options,
9951903e 469#ifdef HPSB_DEBUG_TLABELS
1da177e4 470 &dev_attr_tlabels_free,
1da177e4 471 &dev_attr_tlabels_mask,
9951903e 472#endif
1da177e4
LT
473};
474
475
476
477fw_attr(ud, struct unit_directory, address, unsigned long long, "0x%016Lx\n")
478fw_attr(ud, struct unit_directory, length, int, "%d\n")
479/* These are all dependent on the value being provided */
480fw_attr(ud, struct unit_directory, vendor_id, unsigned int, "0x%06x\n")
481fw_attr(ud, struct unit_directory, model_id, unsigned int, "0x%06x\n")
482fw_attr(ud, struct unit_directory, specifier_id, unsigned int, "0x%06x\n")
483fw_attr(ud, struct unit_directory, version, unsigned int, "0x%06x\n")
484fw_attr_td(ud, struct unit_directory, vendor_name_kv)
1da177e4
LT
485fw_attr_td(ud, struct unit_directory, model_name_kv)
486
487static struct device_attribute *const fw_ud_attrs[] = {
488 &dev_attr_ud_address,
489 &dev_attr_ud_length,
490 &dev_attr_ignore_driver,
491};
492
493
494fw_attr(host, struct hpsb_host, node_count, int, "%d\n")
495fw_attr(host, struct hpsb_host, selfid_count, int, "%d\n")
496fw_attr(host, struct hpsb_host, nodes_active, int, "%d\n")
497fw_attr(host, struct hpsb_host, in_bus_reset, int, "%d\n")
498fw_attr(host, struct hpsb_host, is_root, int, "%d\n")
499fw_attr(host, struct hpsb_host, is_cycmst, int, "%d\n")
500fw_attr(host, struct hpsb_host, is_irm, int, "%d\n")
501fw_attr(host, struct hpsb_host, is_busmgr, int, "%d\n")
502
503static struct device_attribute *const fw_host_attrs[] = {
504 &dev_attr_host_node_count,
505 &dev_attr_host_selfid_count,
506 &dev_attr_host_nodes_active,
507 &dev_attr_host_in_bus_reset,
508 &dev_attr_host_is_root,
509 &dev_attr_host_is_cycmst,
510 &dev_attr_host_is_irm,
511 &dev_attr_host_is_busmgr,
512};
513
514
515static ssize_t fw_show_drv_device_ids(struct device_driver *drv, char *buf)
516{
517 struct hpsb_protocol_driver *driver;
518 struct ieee1394_device_id *id;
519 int length = 0;
520 char *scratch = buf;
521
d41bba2d 522 driver = container_of(drv, struct hpsb_protocol_driver, driver);
07c7224c
SR
523 id = driver->id_table;
524 if (!id)
525 return 0;
1da177e4 526
07c7224c 527 for (; id->match_flags != 0; id++) {
1da177e4
LT
528 int need_coma = 0;
529
530 if (id->match_flags & IEEE1394_MATCH_VENDOR_ID) {
531 length += sprintf(scratch, "vendor_id=0x%06x", id->vendor_id);
532 scratch = buf + length;
533 need_coma++;
534 }
535
536 if (id->match_flags & IEEE1394_MATCH_MODEL_ID) {
537 length += sprintf(scratch, "%smodel_id=0x%06x",
538 need_coma++ ? "," : "",
539 id->model_id);
540 scratch = buf + length;
541 }
542
543 if (id->match_flags & IEEE1394_MATCH_SPECIFIER_ID) {
544 length += sprintf(scratch, "%sspecifier_id=0x%06x",
545 need_coma++ ? "," : "",
546 id->specifier_id);
547 scratch = buf + length;
548 }
549
550 if (id->match_flags & IEEE1394_MATCH_VERSION) {
551 length += sprintf(scratch, "%sversion=0x%06x",
552 need_coma++ ? "," : "",
553 id->version);
554 scratch = buf + length;
555 }
556
557 if (need_coma) {
558 *scratch++ = '\n';
559 length++;
560 }
561 }
562
563 return length;
564}
565static DRIVER_ATTR(device_ids,S_IRUGO,fw_show_drv_device_ids,NULL);
566
567
568fw_drv_attr(name, const char *, "%s\n")
569
570static struct driver_attribute *const fw_drv_attrs[] = {
571 &driver_attr_drv_name,
572 &driver_attr_device_ids,
573};
574
575
576static void nodemgr_create_drv_files(struct hpsb_protocol_driver *driver)
577{
578 struct device_driver *drv = &driver->driver;
579 int i;
580
581 for (i = 0; i < ARRAY_SIZE(fw_drv_attrs); i++)
c1c9c7cd
SR
582 if (driver_create_file(drv, fw_drv_attrs[i]))
583 goto fail;
584 return;
585fail:
9be51c5d 586 HPSB_ERR("Failed to add sysfs attribute");
1da177e4
LT
587}
588
589
590static void nodemgr_remove_drv_files(struct hpsb_protocol_driver *driver)
591{
592 struct device_driver *drv = &driver->driver;
593 int i;
594
595 for (i = 0; i < ARRAY_SIZE(fw_drv_attrs); i++)
596 driver_remove_file(drv, fw_drv_attrs[i]);
597}
598
599
600static void nodemgr_create_ne_dev_files(struct node_entry *ne)
601{
602 struct device *dev = &ne->device;
603 int i;
604
605 for (i = 0; i < ARRAY_SIZE(fw_ne_attrs); i++)
c1c9c7cd
SR
606 if (device_create_file(dev, fw_ne_attrs[i]))
607 goto fail;
608 return;
609fail:
9be51c5d 610 HPSB_ERR("Failed to add sysfs attribute");
1da177e4
LT
611}
612
613
614static void nodemgr_create_host_dev_files(struct hpsb_host *host)
615{
616 struct device *dev = &host->device;
617 int i;
618
619 for (i = 0; i < ARRAY_SIZE(fw_host_attrs); i++)
c1c9c7cd
SR
620 if (device_create_file(dev, fw_host_attrs[i]))
621 goto fail;
622 return;
623fail:
9be51c5d 624 HPSB_ERR("Failed to add sysfs attribute");
1da177e4
LT
625}
626
627
c1c9c7cd
SR
628static struct node_entry *find_entry_by_nodeid(struct hpsb_host *host,
629 nodeid_t nodeid);
1da177e4
LT
630
631static void nodemgr_update_host_dev_links(struct hpsb_host *host)
632{
633 struct device *dev = &host->device;
634 struct node_entry *ne;
635
636 sysfs_remove_link(&dev->kobj, "irm_id");
637 sysfs_remove_link(&dev->kobj, "busmgr_id");
638 sysfs_remove_link(&dev->kobj, "host_id");
639
c1c9c7cd
SR
640 if ((ne = find_entry_by_nodeid(host, host->irm_id)) &&
641 sysfs_create_link(&dev->kobj, &ne->device.kobj, "irm_id"))
642 goto fail;
643 if ((ne = find_entry_by_nodeid(host, host->busmgr_id)) &&
644 sysfs_create_link(&dev->kobj, &ne->device.kobj, "busmgr_id"))
645 goto fail;
646 if ((ne = find_entry_by_nodeid(host, host->node_id)) &&
647 sysfs_create_link(&dev->kobj, &ne->device.kobj, "host_id"))
648 goto fail;
649 return;
650fail:
651 HPSB_ERR("Failed to update sysfs attributes for host %d", host->id);
1da177e4
LT
652}
653
654static void nodemgr_create_ud_dev_files(struct unit_directory *ud)
655{
656 struct device *dev = &ud->device;
657 int i;
658
659 for (i = 0; i < ARRAY_SIZE(fw_ud_attrs); i++)
c1c9c7cd
SR
660 if (device_create_file(dev, fw_ud_attrs[i]))
661 goto fail;
1da177e4 662 if (ud->flags & UNIT_DIRECTORY_SPECIFIER_ID)
c1c9c7cd
SR
663 if (device_create_file(dev, &dev_attr_ud_specifier_id))
664 goto fail;
1da177e4 665 if (ud->flags & UNIT_DIRECTORY_VERSION)
c1c9c7cd
SR
666 if (device_create_file(dev, &dev_attr_ud_version))
667 goto fail;
1da177e4 668 if (ud->flags & UNIT_DIRECTORY_VENDOR_ID) {
c1c9c7cd
SR
669 if (device_create_file(dev, &dev_attr_ud_vendor_id))
670 goto fail;
671 if (ud->vendor_name_kv &&
672 device_create_file(dev, &dev_attr_ud_vendor_name_kv))
673 goto fail;
1da177e4 674 }
1da177e4 675 if (ud->flags & UNIT_DIRECTORY_MODEL_ID) {
c1c9c7cd
SR
676 if (device_create_file(dev, &dev_attr_ud_model_id))
677 goto fail;
678 if (ud->model_name_kv &&
679 device_create_file(dev, &dev_attr_ud_model_name_kv))
680 goto fail;
1da177e4 681 }
c1c9c7cd
SR
682 return;
683fail:
9be51c5d 684 HPSB_ERR("Failed to add sysfs attribute");
1da177e4
LT
685}
686
687
688static int nodemgr_bus_match(struct device * dev, struct device_driver * drv)
689{
d41bba2d
SR
690 struct hpsb_protocol_driver *driver;
691 struct unit_directory *ud;
1da177e4
LT
692 struct ieee1394_device_id *id;
693
694 /* We only match unit directories */
695 if (dev->platform_data != &nodemgr_ud_platform_data)
696 return 0;
697
698 ud = container_of(dev, struct unit_directory, device);
1da177e4
LT
699 if (ud->ne->in_limbo || ud->ignore_driver)
700 return 0;
701
8252bbb1
SR
702 /* We only match drivers of type hpsb_protocol_driver */
703 if (drv == &nodemgr_mid_layer_driver)
704 return 0;
705
706 driver = container_of(drv, struct hpsb_protocol_driver, driver);
d2ace29f
SR
707 id = driver->id_table;
708 if (!id)
709 return 0;
710
711 for (; id->match_flags != 0; id++) {
d41bba2d
SR
712 if ((id->match_flags & IEEE1394_MATCH_VENDOR_ID) &&
713 id->vendor_id != ud->vendor_id)
714 continue;
1da177e4 715
d41bba2d
SR
716 if ((id->match_flags & IEEE1394_MATCH_MODEL_ID) &&
717 id->model_id != ud->model_id)
718 continue;
1da177e4 719
d41bba2d
SR
720 if ((id->match_flags & IEEE1394_MATCH_SPECIFIER_ID) &&
721 id->specifier_id != ud->specifier_id)
722 continue;
1da177e4 723
d41bba2d
SR
724 if ((id->match_flags & IEEE1394_MATCH_VERSION) &&
725 id->version != ud->version)
726 continue;
1da177e4
LT
727
728 return 1;
d41bba2d 729 }
1da177e4
LT
730
731 return 0;
732}
733
734
b07375b1
SR
735static DEFINE_MUTEX(nodemgr_serialize_remove_uds);
736
11305c3e 737static int match_ne(struct device *dev, void *data)
73cf6023
DY
738{
739 struct unit_directory *ud;
11305c3e 740 struct node_entry *ne = data;
73cf6023
DY
741
742 ud = container_of(dev, struct unit_directory, unit_dev);
743 return ud->ne == ne;
744}
745
1da177e4
LT
746static void nodemgr_remove_uds(struct node_entry *ne)
747{
dd7f2928 748 struct device *dev;
73cf6023
DY
749 struct unit_directory *ud;
750
751 /* Use class_find device to iterate the devices. Since this code
752 * may be called from other contexts besides the knodemgrds,
753 * protect it by nodemgr_serialize_remove_uds.
b07375b1 754 */
b07375b1 755 mutex_lock(&nodemgr_serialize_remove_uds);
1e4f7bc8 756 for (;;) {
11305c3e 757 dev = class_find_device(&nodemgr_ud_class, NULL, ne, match_ne);
73cf6023 758 if (!dev)
1e4f7bc8 759 break;
73cf6023
DY
760 ud = container_of(dev, struct unit_directory, unit_dev);
761 put_device(dev);
dd7f2928 762 device_unregister(&ud->unit_dev);
1e4f7bc8 763 device_unregister(&ud->device);
b07375b1 764 }
b07375b1 765 mutex_unlock(&nodemgr_serialize_remove_uds);
1da177e4
LT
766}
767
768
769static void nodemgr_remove_ne(struct node_entry *ne)
770{
cec1a311 771 struct device *dev;
1da177e4
LT
772
773 dev = get_device(&ne->device);
774 if (!dev)
775 return;
776
777 HPSB_DEBUG("Node removed: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
778 NODE_BUS_ARGS(ne->host, ne->nodeid), (unsigned long long)ne->guid);
1da177e4
LT
779 nodemgr_remove_uds(ne);
780
dd7f2928 781 device_unregister(&ne->node_dev);
1da177e4
LT
782 device_unregister(dev);
783
784 put_device(dev);
785}
786
11305c3e 787static int remove_host_dev(struct device *dev, void *data)
64360322 788{
dd7f2928
KS
789 if (dev->bus == &ieee1394_bus_type)
790 nodemgr_remove_ne(container_of(dev, struct node_entry,
791 device));
64360322 792 return 0;
793}
1da177e4
LT
794
795static void nodemgr_remove_host_dev(struct device *dev)
796{
11305c3e 797 device_for_each_child(dev, NULL, remove_host_dev);
1da177e4
LT
798 sysfs_remove_link(&dev->kobj, "irm_id");
799 sysfs_remove_link(&dev->kobj, "busmgr_id");
800 sysfs_remove_link(&dev->kobj, "host_id");
801}
802
803
804static void nodemgr_update_bus_options(struct node_entry *ne)
805{
806#ifdef CONFIG_IEEE1394_VERBOSEDEBUG
807 static const u16 mr[] = { 4, 64, 1024, 0};
808#endif
809 quadlet_t busoptions = be32_to_cpu(ne->csr->bus_info_data[2]);
810
d41bba2d
SR
811 ne->busopt.irmc = (busoptions >> 31) & 1;
812 ne->busopt.cmc = (busoptions >> 30) & 1;
813 ne->busopt.isc = (busoptions >> 29) & 1;
814 ne->busopt.bmc = (busoptions >> 28) & 1;
815 ne->busopt.pmc = (busoptions >> 27) & 1;
816 ne->busopt.cyc_clk_acc = (busoptions >> 16) & 0xff;
817 ne->busopt.max_rec = 1 << (((busoptions >> 12) & 0xf) + 1);
1da177e4 818 ne->busopt.max_rom = (busoptions >> 8) & 0x3;
d41bba2d
SR
819 ne->busopt.generation = (busoptions >> 4) & 0xf;
820 ne->busopt.lnkspd = busoptions & 0x7;
1da177e4
LT
821
822 HPSB_VERBOSE("NodeMgr: raw=0x%08x irmc=%d cmc=%d isc=%d bmc=%d pmc=%d "
823 "cyc_clk_acc=%d max_rec=%d max_rom=%d gen=%d lspd=%d",
824 busoptions, ne->busopt.irmc, ne->busopt.cmc,
825 ne->busopt.isc, ne->busopt.bmc, ne->busopt.pmc,
826 ne->busopt.cyc_clk_acc, ne->busopt.max_rec,
827 mr[ne->busopt.max_rom],
828 ne->busopt.generation, ne->busopt.lnkspd);
829}
830
831
11305c3e
SR
832static struct node_entry *nodemgr_create_node(octlet_t guid,
833 struct csr1212_csr *csr, struct hpsb_host *host,
834 nodeid_t nodeid, unsigned int generation)
1da177e4 835{
8551158a 836 struct node_entry *ne;
1da177e4 837
8551158a
SR
838 ne = kzalloc(sizeof(*ne), GFP_KERNEL);
839 if (!ne)
c1c9c7cd 840 goto fail_alloc;
1da177e4 841
8551158a
SR
842 ne->host = host;
843 ne->nodeid = nodeid;
1da177e4 844 ne->generation = generation;
6848408a 845 ne->needs_probe = true;
1da177e4 846
8551158a 847 ne->guid = guid;
1da177e4 848 ne->guid_vendor_id = (guid >> 40) & 0xffffff;
1da177e4
LT
849 ne->csr = csr;
850
851 memcpy(&ne->device, &nodemgr_dev_template_ne,
852 sizeof(ne->device));
853 ne->device.parent = &host->device;
854 snprintf(ne->device.bus_id, BUS_ID_SIZE, "%016Lx",
855 (unsigned long long)(ne->guid));
856
dd7f2928
KS
857 ne->node_dev.parent = &ne->device;
858 ne->node_dev.class = &nodemgr_ne_class;
859 snprintf(ne->node_dev.bus_id, BUS_ID_SIZE, "%016Lx",
860 (unsigned long long)(ne->guid));
1da177e4 861
c1c9c7cd
SR
862 if (device_register(&ne->device))
863 goto fail_devreg;
dd7f2928 864 if (device_register(&ne->node_dev))
c1c9c7cd 865 goto fail_classdevreg;
1da177e4
LT
866 get_device(&ne->device);
867
1da177e4
LT
868 nodemgr_create_ne_dev_files(ne);
869
870 nodemgr_update_bus_options(ne);
871
872 HPSB_DEBUG("%s added: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
873 (host->node_id == nodeid) ? "Host" : "Node",
874 NODE_BUS_ARGS(host, nodeid), (unsigned long long)guid);
875
8551158a 876 return ne;
c1c9c7cd 877
c1c9c7cd
SR
878fail_classdevreg:
879 device_unregister(&ne->device);
880fail_devreg:
881 kfree(ne);
882fail_alloc:
883 HPSB_ERR("Failed to create node ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
884 NODE_BUS_ARGS(host, nodeid), (unsigned long long)guid);
885
886 return NULL;
1da177e4
LT
887}
888
11305c3e 889static int match_ne_guid(struct device *dev, void *data)
73cf6023
DY
890{
891 struct node_entry *ne;
11305c3e 892 u64 *guid = data;
73cf6023
DY
893
894 ne = container_of(dev, struct node_entry, node_dev);
895 return ne->guid == *guid;
896}
1da177e4
LT
897
898static struct node_entry *find_entry_by_guid(u64 guid)
899{
dd7f2928 900 struct device *dev;
73cf6023 901 struct node_entry *ne;
1da177e4 902
11305c3e 903 dev = class_find_device(&nodemgr_ne_class, NULL, &guid, match_ne_guid);
73cf6023
DY
904 if (!dev)
905 return NULL;
906 ne = container_of(dev, struct node_entry, node_dev);
907 put_device(dev);
1da177e4 908
73cf6023 909 return ne;
1da177e4
LT
910}
911
11305c3e 912struct match_nodeid_parameter {
73cf6023
DY
913 struct hpsb_host *host;
914 nodeid_t nodeid;
915};
916
11305c3e 917static int match_ne_nodeid(struct device *dev, void *data)
73cf6023
DY
918{
919 int found = 0;
920 struct node_entry *ne;
11305c3e 921 struct match_nodeid_parameter *p = data;
73cf6023
DY
922
923 if (!dev)
924 goto ret;
925 ne = container_of(dev, struct node_entry, node_dev);
11305c3e 926 if (ne->host == p->host && ne->nodeid == p->nodeid)
73cf6023
DY
927 found = 1;
928ret:
929 return found;
930}
1da177e4 931
b07375b1
SR
932static struct node_entry *find_entry_by_nodeid(struct hpsb_host *host,
933 nodeid_t nodeid)
1da177e4 934{
dd7f2928 935 struct device *dev;
73cf6023 936 struct node_entry *ne;
11305c3e 937 struct match_nodeid_parameter p;
1da177e4 938
11305c3e
SR
939 p.host = host;
940 p.nodeid = nodeid;
1da177e4 941
11305c3e 942 dev = class_find_device(&nodemgr_ne_class, NULL, &p, match_ne_nodeid);
73cf6023
DY
943 if (!dev)
944 return NULL;
945 ne = container_of(dev, struct node_entry, node_dev);
946 put_device(dev);
1da177e4 947
73cf6023 948 return ne;
1da177e4
LT
949}
950
951
952static void nodemgr_register_device(struct node_entry *ne,
953 struct unit_directory *ud, struct device *parent)
954{
955 memcpy(&ud->device, &nodemgr_dev_template_ud,
956 sizeof(ud->device));
957
958 ud->device.parent = parent;
959
960 snprintf(ud->device.bus_id, BUS_ID_SIZE, "%s-%u",
961 ne->device.bus_id, ud->id);
962
dd7f2928
KS
963 ud->unit_dev.parent = &ud->device;
964 ud->unit_dev.class = &nodemgr_ud_class;
965 snprintf(ud->unit_dev.bus_id, BUS_ID_SIZE, "%s-%u",
1da177e4
LT
966 ne->device.bus_id, ud->id);
967
c1c9c7cd
SR
968 if (device_register(&ud->device))
969 goto fail_devreg;
dd7f2928 970 if (device_register(&ud->unit_dev))
c1c9c7cd 971 goto fail_classdevreg;
1da177e4
LT
972 get_device(&ud->device);
973
1da177e4 974 nodemgr_create_ud_dev_files(ud);
c1c9c7cd
SR
975
976 return;
977
c1c9c7cd
SR
978fail_classdevreg:
979 device_unregister(&ud->device);
980fail_devreg:
981 HPSB_ERR("Failed to create unit %s", ud->device.bus_id);
1da177e4
LT
982}
983
984
985/* This implementation currently only scans the config rom and its
986 * immediate unit directories looking for software_id and
987 * software_version entries, in order to get driver autoloading working. */
988static struct unit_directory *nodemgr_process_unit_directory
11305c3e 989 (struct node_entry *ne, struct csr1212_keyval *ud_kv,
1da177e4
LT
990 unsigned int *id, struct unit_directory *parent)
991{
992 struct unit_directory *ud;
993 struct unit_directory *ud_child = NULL;
994 struct csr1212_dentry *dentry;
995 struct csr1212_keyval *kv;
996 u8 last_key_id = 0;
997
8551158a 998 ud = kzalloc(sizeof(*ud), GFP_KERNEL);
1da177e4
LT
999 if (!ud)
1000 goto unit_directory_error;
1001
1da177e4
LT
1002 ud->ne = ne;
1003 ud->ignore_driver = ignore_drivers;
a52938f3 1004 ud->address = ud_kv->offset + CSR1212_REGISTER_SPACE_BASE;
d7794c86 1005 ud->directory_id = ud->address & 0xffffff;
1da177e4
LT
1006 ud->ud_kv = ud_kv;
1007 ud->id = (*id)++;
1008
1009 csr1212_for_each_dir_entry(ne->csr, kv, ud_kv, dentry) {
1010 switch (kv->key.id) {
1011 case CSR1212_KV_ID_VENDOR:
1012 if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
1013 ud->vendor_id = kv->value.immediate;
1014 ud->flags |= UNIT_DIRECTORY_VENDOR_ID;
1da177e4
LT
1015 }
1016 break;
1017
1018 case CSR1212_KV_ID_MODEL:
1019 ud->model_id = kv->value.immediate;
1020 ud->flags |= UNIT_DIRECTORY_MODEL_ID;
1021 break;
1022
1023 case CSR1212_KV_ID_SPECIFIER_ID:
1024 ud->specifier_id = kv->value.immediate;
1025 ud->flags |= UNIT_DIRECTORY_SPECIFIER_ID;
1026 break;
1027
1028 case CSR1212_KV_ID_VERSION:
1029 ud->version = kv->value.immediate;
1030 ud->flags |= UNIT_DIRECTORY_VERSION;
1031 break;
1032
1033 case CSR1212_KV_ID_DESCRIPTOR:
1034 if (kv->key.type == CSR1212_KV_TYPE_LEAF &&
1035 CSR1212_DESCRIPTOR_LEAF_TYPE(kv) == 0 &&
1036 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv) == 0 &&
1037 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv) == 0 &&
1038 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv) == 0 &&
1039 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv) == 0) {
1040 switch (last_key_id) {
1041 case CSR1212_KV_ID_VENDOR:
1da177e4 1042 csr1212_keep_keyval(kv);
17a19b79 1043 ud->vendor_name_kv = kv;
1da177e4
LT
1044 break;
1045
1046 case CSR1212_KV_ID_MODEL:
1da177e4 1047 csr1212_keep_keyval(kv);
17a19b79 1048 ud->model_name_kv = kv;
1da177e4
LT
1049 break;
1050
1051 }
1052 } /* else if (kv->key.type == CSR1212_KV_TYPE_DIRECTORY) ... */
1053 break;
1054
1055 case CSR1212_KV_ID_DEPENDENT_INFO:
1056 /* Logical Unit Number */
1057 if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
1058 if (ud->flags & UNIT_DIRECTORY_HAS_LUN) {
bfe89d72 1059 ud_child = kmemdup(ud, sizeof(*ud_child), GFP_KERNEL);
1da177e4
LT
1060 if (!ud_child)
1061 goto unit_directory_error;
1da177e4
LT
1062 nodemgr_register_device(ne, ud_child, &ne->device);
1063 ud_child = NULL;
1064
1065 ud->id = (*id)++;
1066 }
1067 ud->lun = kv->value.immediate;
1068 ud->flags |= UNIT_DIRECTORY_HAS_LUN;
1069
1070 /* Logical Unit Directory */
1071 } else if (kv->key.type == CSR1212_KV_TYPE_DIRECTORY) {
1072 /* This should really be done in SBP2 as this is
1073 * doing SBP2 specific parsing.
1074 */
1075
1076 /* first register the parent unit */
1077 ud->flags |= UNIT_DIRECTORY_HAS_LUN_DIRECTORY;
1078 if (ud->device.bus != &ieee1394_bus_type)
1079 nodemgr_register_device(ne, ud, &ne->device);
1080
1081 /* process the child unit */
11305c3e 1082 ud_child = nodemgr_process_unit_directory(ne, kv, id, ud);
1da177e4
LT
1083
1084 if (ud_child == NULL)
1085 break;
1086
312c004d 1087 /* inherit unspecified values, the driver core picks it up */
1da177e4
LT
1088 if ((ud->flags & UNIT_DIRECTORY_MODEL_ID) &&
1089 !(ud_child->flags & UNIT_DIRECTORY_MODEL_ID))
1090 {
1091 ud_child->flags |= UNIT_DIRECTORY_MODEL_ID;
1092 ud_child->model_id = ud->model_id;
1093 }
1094 if ((ud->flags & UNIT_DIRECTORY_SPECIFIER_ID) &&
1095 !(ud_child->flags & UNIT_DIRECTORY_SPECIFIER_ID))
1096 {
1097 ud_child->flags |= UNIT_DIRECTORY_SPECIFIER_ID;
1098 ud_child->specifier_id = ud->specifier_id;
1099 }
1100 if ((ud->flags & UNIT_DIRECTORY_VERSION) &&
1101 !(ud_child->flags & UNIT_DIRECTORY_VERSION))
1102 {
1103 ud_child->flags |= UNIT_DIRECTORY_VERSION;
1104 ud_child->version = ud->version;
1105 }
1106
1107 /* register the child unit */
1108 ud_child->flags |= UNIT_DIRECTORY_LUN_DIRECTORY;
1109 nodemgr_register_device(ne, ud_child, &ud->device);
1110 }
1111
1112 break;
1113
d7794c86
SR
1114 case CSR1212_KV_ID_DIRECTORY_ID:
1115 ud->directory_id = kv->value.immediate;
1116 break;
1117
1da177e4
LT
1118 default:
1119 break;
1120 }
1121 last_key_id = kv->key.id;
1122 }
1123
1124 /* do not process child units here and only if not already registered */
1125 if (!parent && ud->device.bus != &ieee1394_bus_type)
1126 nodemgr_register_device(ne, ud, &ne->device);
1127
1128 return ud;
1129
1130unit_directory_error:
616b859f 1131 kfree(ud);
1da177e4
LT
1132 return NULL;
1133}
1134
1135
11305c3e 1136static void nodemgr_process_root_directory(struct node_entry *ne)
1da177e4
LT
1137{
1138 unsigned int ud_id = 0;
1139 struct csr1212_dentry *dentry;
638d5bb8 1140 struct csr1212_keyval *kv, *vendor_name_kv = NULL;
1da177e4
LT
1141 u8 last_key_id = 0;
1142
6848408a 1143 ne->needs_probe = false;
1da177e4
LT
1144
1145 csr1212_for_each_dir_entry(ne->csr, kv, ne->csr->root_kv, dentry) {
1146 switch (kv->key.id) {
1147 case CSR1212_KV_ID_VENDOR:
1148 ne->vendor_id = kv->value.immediate;
1da177e4
LT
1149 break;
1150
1151 case CSR1212_KV_ID_NODE_CAPABILITIES:
1152 ne->capabilities = kv->value.immediate;
1153 break;
1154
1155 case CSR1212_KV_ID_UNIT:
11305c3e 1156 nodemgr_process_unit_directory(ne, kv, &ud_id, NULL);
1da177e4
LT
1157 break;
1158
1159 case CSR1212_KV_ID_DESCRIPTOR:
1160 if (last_key_id == CSR1212_KV_ID_VENDOR) {
1161 if (kv->key.type == CSR1212_KV_TYPE_LEAF &&
1162 CSR1212_DESCRIPTOR_LEAF_TYPE(kv) == 0 &&
1163 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv) == 0 &&
1164 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv) == 0 &&
1165 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv) == 0 &&
1166 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv) == 0) {
1da177e4 1167 csr1212_keep_keyval(kv);
638d5bb8 1168 vendor_name_kv = kv;
1da177e4
LT
1169 }
1170 }
1171 break;
1172 }
1173 last_key_id = kv->key.id;
1174 }
1175
93245472 1176 if (ne->vendor_name_kv) {
638d5bb8
SR
1177 kv = ne->vendor_name_kv;
1178 ne->vendor_name_kv = vendor_name_kv;
1179 csr1212_release_keyval(kv);
1180 } else if (vendor_name_kv) {
1181 ne->vendor_name_kv = vendor_name_kv;
1182 if (device_create_file(&ne->device,
1183 &dev_attr_ne_vendor_name_kv) != 0)
9be51c5d 1184 HPSB_ERR("Failed to add sysfs attribute");
93245472 1185 }
1da177e4
LT
1186}
1187
1188#ifdef CONFIG_HOTPLUG
1189
7eff2e7a 1190static int nodemgr_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4
LT
1191{
1192 struct unit_directory *ud;
bf62456e 1193 int retval = 0;
9b19d85a
OH
1194 /* ieee1394:venNmoNspNverN */
1195 char buf[8 + 1 + 3 + 8 + 2 + 8 + 2 + 8 + 3 + 8 + 1];
1da177e4 1196
dd7f2928 1197 if (!dev)
1da177e4
LT
1198 return -ENODEV;
1199
dd7f2928 1200 ud = container_of(dev, struct unit_directory, unit_dev);
1da177e4
LT
1201
1202 if (ud->ne->in_limbo || ud->ignore_driver)
1203 return -ENODEV;
1204
1205#define PUT_ENVP(fmt,val) \
1206do { \
7eff2e7a 1207 retval = add_uevent_var(env, fmt, val); \
bf62456e
ER
1208 if (retval) \
1209 return retval; \
1da177e4
LT
1210} while (0)
1211
1212 PUT_ENVP("VENDOR_ID=%06x", ud->vendor_id);
1213 PUT_ENVP("MODEL_ID=%06x", ud->model_id);
1214 PUT_ENVP("GUID=%016Lx", (unsigned long long)ud->ne->guid);
1215 PUT_ENVP("SPECIFIER_ID=%06x", ud->specifier_id);
1216 PUT_ENVP("VERSION=%06x", ud->version);
9b19d85a
OH
1217 snprintf(buf, sizeof(buf), "ieee1394:ven%08Xmo%08Xsp%08Xver%08X",
1218 ud->vendor_id,
1219 ud->model_id,
1220 ud->specifier_id,
1221 ud->version);
1222 PUT_ENVP("MODALIAS=%s", buf);
1da177e4
LT
1223
1224#undef PUT_ENVP
1225
1da177e4
LT
1226 return 0;
1227}
1228
1229#else
1230
7eff2e7a 1231static int nodemgr_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4
LT
1232{
1233 return -ENODEV;
1234}
1235
1236#endif /* CONFIG_HOTPLUG */
1237
1238
ed30c26e
BC
1239int __hpsb_register_protocol(struct hpsb_protocol_driver *drv,
1240 struct module *owner)
1da177e4 1241{
ed30c26e
BC
1242 int error;
1243
1244 drv->driver.bus = &ieee1394_bus_type;
1245 drv->driver.owner = owner;
1246 drv->driver.name = drv->name;
1247
1da177e4 1248 /* This will cause a probe for devices */
ed30c26e 1249 error = driver_register(&drv->driver);
7fdfc909 1250 if (!error)
ed30c26e 1251 nodemgr_create_drv_files(drv);
7fdfc909 1252 return error;
1da177e4
LT
1253}
1254
1255void hpsb_unregister_protocol(struct hpsb_protocol_driver *driver)
1256{
1257 nodemgr_remove_drv_files(driver);
1258 /* This will subsequently disconnect all devices that our driver
1259 * is attached to. */
1260 driver_unregister(&driver->driver);
1261}
1262
1263
1264/*
1265 * This function updates nodes that were present on the bus before the
1266 * reset and still are after the reset. The nodeid and the config rom
1267 * may have changed, and the drivers managing this device must be
1268 * informed that this device just went through a bus reset, to allow
1269 * the to take whatever actions required.
1270 */
1271static void nodemgr_update_node(struct node_entry *ne, struct csr1212_csr *csr,
11305c3e 1272 nodeid_t nodeid, unsigned int generation)
1da177e4
LT
1273{
1274 if (ne->nodeid != nodeid) {
1275 HPSB_DEBUG("Node changed: " NODE_BUS_FMT " -> " NODE_BUS_FMT,
1276 NODE_BUS_ARGS(ne->host, ne->nodeid),
1277 NODE_BUS_ARGS(ne->host, nodeid));
1278 ne->nodeid = nodeid;
1279 }
1280
1281 if (ne->busopt.generation != ((be32_to_cpu(csr->bus_info_data[2]) >> 4) & 0xf)) {
1282 kfree(ne->csr->private);
1283 csr1212_destroy_csr(ne->csr);
1284 ne->csr = csr;
1285
1286 /* If the node's configrom generation has changed, we
1287 * unregister all the unit directories. */
1288 nodemgr_remove_uds(ne);
1289
1290 nodemgr_update_bus_options(ne);
1291
1292 /* Mark the node as new, so it gets re-probed */
6848408a 1293 ne->needs_probe = true;
1da177e4
LT
1294 } else {
1295 /* old cache is valid, so update its generation */
1296 struct nodemgr_csr_info *ci = ne->csr->private;
1297 ci->generation = generation;
1298 /* free the partially filled now unneeded new cache */
1299 kfree(csr->private);
1300 csr1212_destroy_csr(csr);
1301 }
1302
1303 if (ne->in_limbo)
11305c3e 1304 nodemgr_reactivate_ne(ne);
1da177e4
LT
1305
1306 /* Mark the node current */
1307 ne->generation = generation;
1308}
1309
1310
1311
11305c3e 1312static void nodemgr_node_scan_one(struct hpsb_host *host,
1da177e4
LT
1313 nodeid_t nodeid, int generation)
1314{
1da177e4
LT
1315 struct node_entry *ne;
1316 octlet_t guid;
1317 struct csr1212_csr *csr;
1318 struct nodemgr_csr_info *ci;
d7530a1e 1319 u8 *speed;
1da177e4 1320
8551158a 1321 ci = kmalloc(sizeof(*ci), GFP_KERNEL);
1da177e4
LT
1322 if (!ci)
1323 return;
1324
1325 ci->host = host;
1326 ci->nodeid = nodeid;
1327 ci->generation = generation;
d7530a1e
SR
1328
1329 /* Prepare for speed probe which occurs when reading the ROM */
1330 speed = &(host->speed[NODEID_TO_NODE(nodeid)]);
1331 if (*speed > host->csr.lnk_spd)
1332 *speed = host->csr.lnk_spd;
1333 ci->speed_unverified = *speed > IEEE1394_SPEED_100;
1da177e4
LT
1334
1335 /* We need to detect when the ConfigROM's generation has changed,
1336 * so we only update the node's info when it needs to be. */
1337
1338 csr = csr1212_create_csr(&nodemgr_csr_ops, 5 * sizeof(quadlet_t), ci);
1339 if (!csr || csr1212_parse_csr(csr) != CSR1212_SUCCESS) {
1340 HPSB_ERR("Error parsing configrom for node " NODE_BUS_FMT,
1341 NODE_BUS_ARGS(host, nodeid));
1342 if (csr)
1343 csr1212_destroy_csr(csr);
1344 kfree(ci);
1345 return;
1346 }
1347
1348 if (csr->bus_info_data[1] != IEEE1394_BUSID_MAGIC) {
1349 /* This isn't a 1394 device, but we let it slide. There
1350 * was a report of a device with broken firmware which
1351 * reported '2394' instead of '1394', which is obviously a
1352 * mistake. One would hope that a non-1394 device never
1353 * gets connected to Firewire bus. If someone does, we
1354 * shouldn't be held responsible, so we'll allow it with a
1355 * warning. */
1356 HPSB_WARN("Node " NODE_BUS_FMT " has invalid busID magic [0x%08x]",
1357 NODE_BUS_ARGS(host, nodeid), csr->bus_info_data[1]);
1358 }
1359
1360 guid = ((u64)be32_to_cpu(csr->bus_info_data[3]) << 32) | be32_to_cpu(csr->bus_info_data[4]);
1361 ne = find_entry_by_guid(guid);
1362
1363 if (ne && ne->host != host && ne->in_limbo) {
1364 /* Must have moved this device from one host to another */
1365 nodemgr_remove_ne(ne);
1366 ne = NULL;
1367 }
1368
1369 if (!ne)
11305c3e 1370 nodemgr_create_node(guid, csr, host, nodeid, generation);
1da177e4 1371 else
11305c3e 1372 nodemgr_update_node(ne, csr, nodeid, generation);
1da177e4
LT
1373}
1374
1375
11305c3e 1376static void nodemgr_node_scan(struct hpsb_host *host, int generation)
1da177e4 1377{
d41bba2d 1378 int count;
d41bba2d
SR
1379 struct selfid *sid = (struct selfid *)host->topology_map;
1380 nodeid_t nodeid = LOCAL_BUS;
1da177e4 1381
d41bba2d
SR
1382 /* Scan each node on the bus */
1383 for (count = host->selfid_count; count; count--, sid++) {
1384 if (sid->extended)
1385 continue;
1da177e4 1386
d41bba2d
SR
1387 if (!sid->link_active) {
1388 nodeid++;
1389 continue;
1390 }
11305c3e 1391 nodemgr_node_scan_one(host, nodeid++, generation);
d41bba2d 1392 }
1da177e4
LT
1393}
1394
11305c3e 1395static int pause_ne(struct device *dev, void *data)
1da177e4 1396{
1da177e4 1397 struct unit_directory *ud;
a0e857ee 1398 struct device_driver *drv;
11305c3e 1399 struct node_entry *ne = data;
a0e857ee 1400 int error;
1da177e4 1401
73cf6023
DY
1402 ud = container_of(dev, struct unit_directory, unit_dev);
1403 if (ud->ne == ne) {
1404 drv = get_driver(ud->device.driver);
1405 if (drv) {
1406 error = 1; /* release if suspend is not implemented */
1407 if (drv->suspend) {
1408 down(&ud->device.sem);
1409 error = drv->suspend(&ud->device, PMSG_SUSPEND);
1410 up(&ud->device.sem);
1411 }
1412 if (error)
1413 device_release_driver(&ud->device);
1414 put_driver(drv);
1415 }
1416 }
1da177e4 1417
73cf6023
DY
1418 return 0;
1419}
1da177e4 1420
11305c3e
SR
1421static void nodemgr_pause_ne(struct node_entry *ne)
1422{
1423 HPSB_DEBUG("Node suspended: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
1424 NODE_BUS_ARGS(ne->host, ne->nodeid),
1425 (unsigned long long)ne->guid);
1426
1427 ne->in_limbo = 1;
1428 WARN_ON(device_create_file(&ne->device, &dev_attr_ne_in_limbo));
1429
1430 class_for_each_device(&nodemgr_ud_class, NULL, ne, pause_ne);
1431}
1432
1433static int reactivate_ne(struct device *dev, void *data)
73cf6023
DY
1434{
1435 struct unit_directory *ud;
1436 struct device_driver *drv;
11305c3e 1437 struct node_entry *ne = data;
1da177e4 1438
73cf6023
DY
1439 ud = container_of(dev, struct unit_directory, unit_dev);
1440 if (ud->ne == ne) {
a0e857ee 1441 drv = get_driver(ud->device.driver);
73cf6023
DY
1442 if (drv) {
1443 if (drv->resume) {
1444 down(&ud->device.sem);
1445 drv->resume(&ud->device);
1446 up(&ud->device.sem);
1447 }
1448 put_driver(drv);
a0e857ee 1449 }
1da177e4 1450 }
1da177e4 1451
73cf6023
DY
1452 return 0;
1453}
1da177e4 1454
11305c3e 1455static void nodemgr_reactivate_ne(struct node_entry *ne)
73cf6023
DY
1456{
1457 ne->in_limbo = 0;
1458 device_remove_file(&ne->device, &dev_attr_ne_in_limbo);
1da177e4 1459
11305c3e 1460 class_for_each_device(&nodemgr_ud_class, NULL, ne, reactivate_ne);
1da177e4 1461 HPSB_DEBUG("Node resumed: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
11305c3e
SR
1462 NODE_BUS_ARGS(ne->host, ne->nodeid),
1463 (unsigned long long)ne->guid);
1da177e4
LT
1464}
1465
11305c3e 1466static int update_pdrv(struct device *dev, void *data)
1da177e4
LT
1467{
1468 struct unit_directory *ud;
a0e857ee 1469 struct device_driver *drv;
1da177e4 1470 struct hpsb_protocol_driver *pdrv;
11305c3e 1471 struct node_entry *ne = data;
a0e857ee 1472 int error;
1da177e4 1473
73cf6023
DY
1474 ud = container_of(dev, struct unit_directory, unit_dev);
1475 if (ud->ne == ne) {
a0e857ee 1476 drv = get_driver(ud->device.driver);
73cf6023
DY
1477 if (drv) {
1478 error = 0;
1479 pdrv = container_of(drv, struct hpsb_protocol_driver,
1480 driver);
1481 if (pdrv->update) {
1482 down(&ud->device.sem);
1483 error = pdrv->update(ud);
1484 up(&ud->device.sem);
1485 }
1486 if (error)
1487 device_release_driver(&ud->device);
1488 put_driver(drv);
1da177e4
LT
1489 }
1490 }
73cf6023
DY
1491
1492 return 0;
1493}
1494
1495static void nodemgr_update_pdrv(struct node_entry *ne)
1496{
11305c3e 1497 class_for_each_device(&nodemgr_ud_class, NULL, ne, update_pdrv);
1da177e4
LT
1498}
1499
1500
61c7f775
SR
1501/* Write the BROADCAST_CHANNEL as per IEEE1394a 8.3.2.3.11 and 8.4.2.3. This
1502 * seems like an optional service but in the end it is practically mandatory
1503 * as a consequence of these clauses.
1504 *
1505 * Note that we cannot do a broadcast write to all nodes at once because some
1506 * pre-1394a devices would hang. */
1507static void nodemgr_irm_write_bc(struct node_entry *ne, int generation)
1508{
1509 const u64 bc_addr = (CSR_REGISTER_BASE | CSR_BROADCAST_CHANNEL);
1510 quadlet_t bc_remote, bc_local;
7fdfc909 1511 int error;
61c7f775
SR
1512
1513 if (!ne->host->is_irm || ne->generation != generation ||
1514 ne->nodeid == ne->host->node_id)
1515 return;
1516
1517 bc_local = cpu_to_be32(ne->host->csr.broadcast_channel);
1518
1519 /* Check if the register is implemented and 1394a compliant. */
7fdfc909
SR
1520 error = hpsb_read(ne->host, ne->nodeid, generation, bc_addr, &bc_remote,
1521 sizeof(bc_remote));
1522 if (!error && bc_remote & cpu_to_be32(0x80000000) &&
61c7f775
SR
1523 bc_remote != bc_local)
1524 hpsb_node_write(ne, bc_addr, &bc_local, sizeof(bc_local));
1525}
1526
1527
11305c3e
SR
1528static void nodemgr_probe_ne(struct hpsb_host *host, struct node_entry *ne,
1529 int generation)
1da177e4
LT
1530{
1531 struct device *dev;
1532
11305c3e 1533 if (ne->host != host || ne->in_limbo)
1da177e4
LT
1534 return;
1535
1536 dev = get_device(&ne->device);
1537 if (!dev)
1538 return;
1539
61c7f775
SR
1540 nodemgr_irm_write_bc(ne, generation);
1541
1da177e4
LT
1542 /* If "needs_probe", then this is either a new or changed node we
1543 * rescan totally. If the generation matches for an existing node
1544 * (one that existed prior to the bus reset) we send update calls
1545 * down to the drivers. Otherwise, this is a dead node and we
1546 * suspend it. */
1547 if (ne->needs_probe)
11305c3e 1548 nodemgr_process_root_directory(ne);
1da177e4
LT
1549 else if (ne->generation == generation)
1550 nodemgr_update_pdrv(ne);
1551 else
11305c3e 1552 nodemgr_pause_ne(ne);
1da177e4
LT
1553
1554 put_device(dev);
1555}
1556
11305c3e
SR
1557struct node_probe_parameter {
1558 struct hpsb_host *host;
73cf6023 1559 int generation;
6848408a 1560 bool probe_now;
73cf6023
DY
1561};
1562
6848408a 1563static int node_probe(struct device *dev, void *data)
73cf6023 1564{
11305c3e 1565 struct node_probe_parameter *p = data;
73cf6023
DY
1566 struct node_entry *ne;
1567
11305c3e 1568 if (p->generation != get_hpsb_generation(p->host))
c921a974
SR
1569 return -EAGAIN;
1570
73cf6023 1571 ne = container_of(dev, struct node_entry, node_dev);
6848408a 1572 if (ne->needs_probe == p->probe_now)
11305c3e 1573 nodemgr_probe_ne(p->host, ne, p->generation);
73cf6023
DY
1574 return 0;
1575}
1da177e4 1576
11305c3e 1577static void nodemgr_node_probe(struct hpsb_host *host, int generation)
1da177e4 1578{
11305c3e 1579 struct node_probe_parameter p;
1da177e4 1580
11305c3e 1581 p.host = host;
6848408a 1582 p.generation = generation;
c921a974
SR
1583 /*
1584 * Do some processing of the nodes we've probed. This pulls them
1da177e4
LT
1585 * into the sysfs layer if needed, and can result in processing of
1586 * unit-directories, or just updating the node and it's
51c1d80e
SR
1587 * unit-directories.
1588 *
1589 * Run updates before probes. Usually, updates are time-critical
c921a974
SR
1590 * while probes are time-consuming.
1591 *
1592 * Meanwhile, another bus reset may have happened. In this case we
1593 * skip everything here and let the next bus scan handle it.
1594 * Otherwise we may prematurely remove nodes which are still there.
1595 */
6848408a 1596 p.probe_now = false;
c921a974
SR
1597 if (class_for_each_device(&nodemgr_ne_class, NULL, &p, node_probe) != 0)
1598 return;
1da177e4 1599
c921a974
SR
1600 p.probe_now = true;
1601 if (class_for_each_device(&nodemgr_ne_class, NULL, &p, node_probe) != 0)
1602 return;
1603 /*
1da177e4
LT
1604 * Now let's tell the bus to rescan our devices. This may seem
1605 * like overhead, but the driver-model core will only scan a
1606 * device for a driver when either the device is added, or when a
1607 * new driver is added. A bus reset is a good reason to rescan
1608 * devices that were there before. For example, an sbp2 device
1609 * may become available for login, if the host that held it was
c921a974
SR
1610 * just removed.
1611 */
1612 if (bus_rescan_devices(&ieee1394_bus_type) != 0)
1613 HPSB_DEBUG("bus_rescan_devices had an error");
1da177e4
LT
1614}
1615
14c0fa24
SR
1616static int nodemgr_send_resume_packet(struct hpsb_host *host)
1617{
1618 struct hpsb_packet *packet;
7fdfc909 1619 int error = -ENOMEM;
14c0fa24
SR
1620
1621 packet = hpsb_make_phypacket(host,
d7758461
SR
1622 EXTPHYPACKET_TYPE_RESUME |
1623 NODEID_TO_NODE(host->node_id) << PHYPACKET_PORT_SHIFT);
14c0fa24
SR
1624 if (packet) {
1625 packet->no_waiter = 1;
1626 packet->generation = get_hpsb_generation(host);
7fdfc909 1627 error = hpsb_send_packet(packet);
14c0fa24 1628 }
7fdfc909 1629 if (error)
14c0fa24
SR
1630 HPSB_WARN("fw-host%d: Failed to broadcast resume packet",
1631 host->id);
7fdfc909 1632 return error;
14c0fa24
SR
1633}
1634
61c7f775 1635/* Perform a few high-level IRM responsibilities. */
1da177e4
LT
1636static int nodemgr_do_irm_duties(struct hpsb_host *host, int cycles)
1637{
1638 quadlet_t bc;
1639
1640 /* if irm_id == -1 then there is no IRM on this bus */
1641 if (!host->is_irm || host->irm_id == (nodeid_t)-1)
1642 return 1;
1643
61c7f775
SR
1644 /* We are a 1394a-2000 compliant IRM. Set the validity bit. */
1645 host->csr.broadcast_channel |= 0x40000000;
1da177e4
LT
1646
1647 /* If there is no bus manager then we should set the root node's
1648 * force_root bit to promote bus stability per the 1394
1649 * spec. (8.4.2.6) */
1650 if (host->busmgr_id == 0xffff && host->node_count > 1)
1651 {
1652 u16 root_node = host->node_count - 1;
1da177e4 1653
328699bf
JM
1654 /* get cycle master capability flag from root node */
1655 if (host->is_cycmst ||
1656 (!hpsb_read(host, LOCAL_BUS | root_node, get_hpsb_generation(host),
1657 (CSR_REGISTER_BASE + CSR_CONFIG_ROM + 2 * sizeof(quadlet_t)),
1658 &bc, sizeof(quadlet_t)) &&
1659 be32_to_cpu(bc) & 1 << CSR_CMC_SHIFT))
1da177e4
LT
1660 hpsb_send_phy_config(host, root_node, -1);
1661 else {
1662 HPSB_DEBUG("The root node is not cycle master capable; "
1663 "selecting a new root node and resetting...");
1664
1665 if (cycles >= 5) {
1666 /* Oh screw it! Just leave the bus as it is */
1667 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1668 return 1;
1669 }
1670
1671 hpsb_send_phy_config(host, NODEID_TO_NODE(host->node_id), -1);
1672 hpsb_reset_bus(host, LONG_RESET_FORCE_ROOT);
1673
1674 return 0;
1675 }
1676 }
1677
14c0fa24
SR
1678 /* Some devices suspend their ports while being connected to an inactive
1679 * host adapter, i.e. if connected before the low-level driver is
1680 * loaded. They become visible either when physically unplugged and
1681 * replugged, or when receiving a resume packet. Send one once. */
1682 if (!host->resume_packet_sent && !nodemgr_send_resume_packet(host))
1683 host->resume_packet_sent = 1;
1684
1da177e4
LT
1685 return 1;
1686}
1687
1688/* We need to ensure that if we are not the IRM, that the IRM node is capable of
1689 * everything we can do, otherwise issue a bus reset and try to become the IRM
1690 * ourselves. */
1691static int nodemgr_check_irm_capability(struct hpsb_host *host, int cycles)
1692{
1693 quadlet_t bc;
1694 int status;
1695
1696 if (hpsb_disable_irm || host->is_irm)
1697 return 1;
1698
1699 status = hpsb_read(host, LOCAL_BUS | (host->irm_id),
1700 get_hpsb_generation(host),
1701 (CSR_REGISTER_BASE | CSR_BROADCAST_CHANNEL),
1702 &bc, sizeof(quadlet_t));
1703
1704 if (status < 0 || !(be32_to_cpu(bc) & 0x80000000)) {
1705 /* The current irm node does not have a valid BROADCAST_CHANNEL
1706 * register and we do, so reset the bus with force_root set */
1707 HPSB_DEBUG("Current remote IRM is not 1394a-2000 compliant, resetting...");
1708
1709 if (cycles >= 5) {
1710 /* Oh screw it! Just leave the bus as it is */
1711 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1712 return 1;
1713 }
1714
1715 hpsb_send_phy_config(host, NODEID_TO_NODE(host->node_id), -1);
1716 hpsb_reset_bus(host, LONG_RESET_FORCE_ROOT);
1717
1718 return 0;
1719 }
1720
1721 return 1;
1722}
1723
11305c3e 1724static int nodemgr_host_thread(void *data)
1da177e4 1725{
11305c3e 1726 struct hpsb_host *host = data;
b7a7179d 1727 unsigned int g, generation = 0;
d2f119fe 1728 int i, reset_cycles = 0;
1da177e4 1729
83144186 1730 set_freezable();
1da177e4
LT
1731 /* Setup our device-model entries */
1732 nodemgr_create_host_dev_files(host);
1733
d2f119fe
SR
1734 for (;;) {
1735 /* Sleep until next bus reset */
1736 set_current_state(TASK_INTERRUPTIBLE);
a65421ea
SR
1737 if (get_hpsb_generation(host) == generation &&
1738 !kthread_should_stop())
d2f119fe
SR
1739 schedule();
1740 __set_current_state(TASK_RUNNING);
1741
1742 /* Thread may have been woken up to freeze or to exit */
1743 if (try_to_freeze())
1744 continue;
1745 if (kthread_should_stop())
1746 goto exit;
1da177e4 1747
1da177e4
LT
1748 /* Pause for 1/4 second in 1/16 second intervals,
1749 * to make sure things settle down. */
d2f119fe 1750 g = get_hpsb_generation(host);
1da177e4 1751 for (i = 0; i < 4 ; i++) {
69e2b602
SS
1752 msleep_interruptible(63);
1753 if (kthread_should_stop())
a0e857ee 1754 goto exit;
1da177e4
LT
1755
1756 /* Now get the generation in which the node ID's we collect
1757 * are valid. During the bus scan we will use this generation
1758 * for the read transactions, so that if another reset occurs
1759 * during the scan the transactions will fail instead of
1760 * returning bogus data. */
1761 generation = get_hpsb_generation(host);
1762
1763 /* If we get a reset before we are done waiting, then
59c51591 1764 * start the waiting over again */
d2f119fe
SR
1765 if (generation != g)
1766 g = generation, i = 0;
1da177e4
LT
1767 }
1768
328699bf
JM
1769 if (!nodemgr_check_irm_capability(host, reset_cycles) ||
1770 !nodemgr_do_irm_duties(host, reset_cycles)) {
1da177e4 1771 reset_cycles++;
1da177e4
LT
1772 continue;
1773 }
328699bf 1774 reset_cycles = 0;
1da177e4
LT
1775
1776 /* Scan our nodes to get the bus options and create node
1777 * entries. This does not do the sysfs stuff, since that
312c004d
KS
1778 * would trigger uevents and such, which is a bad idea at
1779 * this point. */
11305c3e 1780 nodemgr_node_scan(host, generation);
1da177e4
LT
1781
1782 /* This actually does the full probe, with sysfs
1783 * registration. */
11305c3e 1784 nodemgr_node_probe(host, generation);
1da177e4
LT
1785
1786 /* Update some of our sysfs symlinks */
1787 nodemgr_update_host_dev_links(host);
1da177e4 1788 }
d2f119fe 1789exit:
1da177e4 1790 HPSB_VERBOSE("NodeMgr: Exiting thread");
d2f119fe 1791 return 0;
1da177e4
LT
1792}
1793
11305c3e 1794struct per_host_parameter {
73cf6023
DY
1795 void *data;
1796 int (*cb)(struct hpsb_host *, void *);
1797};
1798
11305c3e 1799static int per_host(struct device *dev, void *data)
73cf6023
DY
1800{
1801 struct hpsb_host *host;
11305c3e 1802 struct per_host_parameter *p = data;
73cf6023
DY
1803
1804 host = container_of(dev, struct hpsb_host, host_dev);
11305c3e 1805 return p->cb(host, p->data);
73cf6023 1806}
11305c3e 1807
afd6546d
SR
1808/**
1809 * nodemgr_for_each_host - call a function for each IEEE 1394 host
1810 * @data: an address to supply to the callback
1811 * @cb: function to call for each host
1812 *
1813 * Iterate the hosts, calling a given function with supplied data for each host.
1814 * If the callback fails on a host, i.e. if it returns a non-zero value, the
1815 * iteration is stopped.
1816 *
1817 * Return value: 0 on success, non-zero on failure (same as returned by last run
1818 * of the callback).
1819 */
1820int nodemgr_for_each_host(void *data, int (*cb)(struct hpsb_host *, void *))
1da177e4 1821{
11305c3e 1822 struct per_host_parameter p;
1da177e4 1823
11305c3e
SR
1824 p.cb = cb;
1825 p.data = data;
1826 return class_for_each_device(&hpsb_host_class, NULL, &p, per_host);
1da177e4
LT
1827}
1828
ef815334 1829/* The following two convenience functions use a struct node_entry
1da177e4
LT
1830 * for addressing a node on the bus. They are intended for use by any
1831 * process context, not just the nodemgr thread, so we need to be a
1832 * little careful when reading out the node ID and generation. The
1833 * thing that can go wrong is that we get the node ID, then a bus
1834 * reset occurs, and then we read the generation. The node ID is
1835 * possibly invalid, but the generation is current, and we end up
1836 * sending a packet to a the wrong node.
1837 *
1838 * The solution is to make sure we read the generation first, so that
1839 * if a reset occurs in the process, we end up with a stale generation
1840 * and the transactions will fail instead of silently using wrong node
1841 * ID's.
1842 */
1843
afd6546d
SR
1844/**
1845 * hpsb_node_fill_packet - fill some destination information into a packet
1846 * @ne: destination node
1847 * @packet: packet to fill in
1848 *
1849 * This will fill in the given, pre-initialised hpsb_packet with the current
1850 * information from the node entry (host, node ID, bus generation number).
1851 */
1852void hpsb_node_fill_packet(struct node_entry *ne, struct hpsb_packet *packet)
1da177e4 1853{
afd6546d
SR
1854 packet->host = ne->host;
1855 packet->generation = ne->generation;
1da177e4 1856 barrier();
afd6546d 1857 packet->node_id = ne->nodeid;
1da177e4
LT
1858}
1859
1860int hpsb_node_write(struct node_entry *ne, u64 addr,
1861 quadlet_t *buffer, size_t length)
1862{
1863 unsigned int generation = ne->generation;
1864
1865 barrier();
1866 return hpsb_write(ne->host, ne->nodeid, generation,
1867 addr, buffer, length);
1868}
1869
1870static void nodemgr_add_host(struct hpsb_host *host)
1871{
1872 struct host_info *hi;
1873
1874 hi = hpsb_create_hostinfo(&nodemgr_highlevel, host, sizeof(*hi));
1da177e4 1875 if (!hi) {
d2f119fe 1876 HPSB_ERR("NodeMgr: out of memory in add host");
1da177e4
LT
1877 return;
1878 }
1da177e4 1879 hi->host = host;
11305c3e 1880 hi->thread = kthread_run(nodemgr_host_thread, host, "knodemgrd_%d",
d2f119fe
SR
1881 host->id);
1882 if (IS_ERR(hi->thread)) {
1883 HPSB_ERR("NodeMgr: cannot start thread for host %d", host->id);
1da177e4 1884 hpsb_destroy_hostinfo(&nodemgr_highlevel, host);
1da177e4 1885 }
1da177e4
LT
1886}
1887
1888static void nodemgr_host_reset(struct hpsb_host *host)
1889{
1890 struct host_info *hi = hpsb_get_hostinfo(&nodemgr_highlevel, host);
1891
d2f119fe
SR
1892 if (hi) {
1893 HPSB_VERBOSE("NodeMgr: Processing reset for host %d", host->id);
1894 wake_up_process(hi->thread);
1895 }
1da177e4
LT
1896}
1897
1898static void nodemgr_remove_host(struct hpsb_host *host)
1899{
1900 struct host_info *hi = hpsb_get_hostinfo(&nodemgr_highlevel, host);
1901
1902 if (hi) {
d2f119fe
SR
1903 kthread_stop(hi->thread);
1904 nodemgr_remove_host_dev(&host->device);
1905 }
1da177e4
LT
1906}
1907
1908static struct hpsb_highlevel nodemgr_highlevel = {
1909 .name = "Node manager",
1910 .add_host = nodemgr_add_host,
1911 .host_reset = nodemgr_host_reset,
1912 .remove_host = nodemgr_remove_host,
1913};
1914
1915int init_ieee1394_nodemgr(void)
1916{
7fdfc909 1917 int error;
1da177e4 1918
7fdfc909
SR
1919 error = class_register(&nodemgr_ne_class);
1920 if (error)
91efa462 1921 goto fail_ne;
7fdfc909 1922 error = class_register(&nodemgr_ud_class);
91efa462
SR
1923 if (error)
1924 goto fail_ud;
8252bbb1 1925 error = driver_register(&nodemgr_mid_layer_driver);
91efa462
SR
1926 if (error)
1927 goto fail_ml;
1928 /* This driver is not used if nodemgr is off (disable_nodemgr=1). */
1929 nodemgr_dev_template_host.driver = &nodemgr_mid_layer_driver;
1930
1da177e4 1931 hpsb_register_highlevel(&nodemgr_highlevel);
1da177e4 1932 return 0;
91efa462
SR
1933
1934fail_ml:
1935 class_unregister(&nodemgr_ud_class);
1936fail_ud:
1937 class_unregister(&nodemgr_ne_class);
1938fail_ne:
1939 return error;
1da177e4
LT
1940}
1941
1942void cleanup_ieee1394_nodemgr(void)
1943{
d41bba2d 1944 hpsb_unregister_highlevel(&nodemgr_highlevel);
91efa462 1945 driver_unregister(&nodemgr_mid_layer_driver);
1da177e4
LT
1946 class_unregister(&nodemgr_ud_class);
1947 class_unregister(&nodemgr_ne_class);
1948}
This page took 0.581674 seconds and 5 git commands to generate.