]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/ieee1394/nodemgr.c
ieee1394: be*_add_cpu conversion
[mirror_ubuntu-bionic-kernel.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>
1da177e4 21#include <asm/atomic.h>
a0e857ee 22#include <asm/semaphore.h>
1da177e4 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);
1da177e4
LT
157static void nodemgr_resume_ne(struct node_entry *ne);
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);
1da177e4
LT
523
524 for (id = driver->id_table; id->match_flags != 0; id++) {
525 int need_coma = 0;
526
527 if (id->match_flags & IEEE1394_MATCH_VENDOR_ID) {
528 length += sprintf(scratch, "vendor_id=0x%06x", id->vendor_id);
529 scratch = buf + length;
530 need_coma++;
531 }
532
533 if (id->match_flags & IEEE1394_MATCH_MODEL_ID) {
534 length += sprintf(scratch, "%smodel_id=0x%06x",
535 need_coma++ ? "," : "",
536 id->model_id);
537 scratch = buf + length;
538 }
539
540 if (id->match_flags & IEEE1394_MATCH_SPECIFIER_ID) {
541 length += sprintf(scratch, "%sspecifier_id=0x%06x",
542 need_coma++ ? "," : "",
543 id->specifier_id);
544 scratch = buf + length;
545 }
546
547 if (id->match_flags & IEEE1394_MATCH_VERSION) {
548 length += sprintf(scratch, "%sversion=0x%06x",
549 need_coma++ ? "," : "",
550 id->version);
551 scratch = buf + length;
552 }
553
554 if (need_coma) {
555 *scratch++ = '\n';
556 length++;
557 }
558 }
559
560 return length;
561}
562static DRIVER_ATTR(device_ids,S_IRUGO,fw_show_drv_device_ids,NULL);
563
564
565fw_drv_attr(name, const char *, "%s\n")
566
567static struct driver_attribute *const fw_drv_attrs[] = {
568 &driver_attr_drv_name,
569 &driver_attr_device_ids,
570};
571
572
573static void nodemgr_create_drv_files(struct hpsb_protocol_driver *driver)
574{
575 struct device_driver *drv = &driver->driver;
576 int i;
577
578 for (i = 0; i < ARRAY_SIZE(fw_drv_attrs); i++)
c1c9c7cd
SR
579 if (driver_create_file(drv, fw_drv_attrs[i]))
580 goto fail;
581 return;
582fail:
9be51c5d 583 HPSB_ERR("Failed to add sysfs attribute");
1da177e4
LT
584}
585
586
587static void nodemgr_remove_drv_files(struct hpsb_protocol_driver *driver)
588{
589 struct device_driver *drv = &driver->driver;
590 int i;
591
592 for (i = 0; i < ARRAY_SIZE(fw_drv_attrs); i++)
593 driver_remove_file(drv, fw_drv_attrs[i]);
594}
595
596
597static void nodemgr_create_ne_dev_files(struct node_entry *ne)
598{
599 struct device *dev = &ne->device;
600 int i;
601
602 for (i = 0; i < ARRAY_SIZE(fw_ne_attrs); i++)
c1c9c7cd
SR
603 if (device_create_file(dev, fw_ne_attrs[i]))
604 goto fail;
605 return;
606fail:
9be51c5d 607 HPSB_ERR("Failed to add sysfs attribute");
1da177e4
LT
608}
609
610
611static void nodemgr_create_host_dev_files(struct hpsb_host *host)
612{
613 struct device *dev = &host->device;
614 int i;
615
616 for (i = 0; i < ARRAY_SIZE(fw_host_attrs); i++)
c1c9c7cd
SR
617 if (device_create_file(dev, fw_host_attrs[i]))
618 goto fail;
619 return;
620fail:
9be51c5d 621 HPSB_ERR("Failed to add sysfs attribute");
1da177e4
LT
622}
623
624
c1c9c7cd
SR
625static struct node_entry *find_entry_by_nodeid(struct hpsb_host *host,
626 nodeid_t nodeid);
1da177e4
LT
627
628static void nodemgr_update_host_dev_links(struct hpsb_host *host)
629{
630 struct device *dev = &host->device;
631 struct node_entry *ne;
632
633 sysfs_remove_link(&dev->kobj, "irm_id");
634 sysfs_remove_link(&dev->kobj, "busmgr_id");
635 sysfs_remove_link(&dev->kobj, "host_id");
636
c1c9c7cd
SR
637 if ((ne = find_entry_by_nodeid(host, host->irm_id)) &&
638 sysfs_create_link(&dev->kobj, &ne->device.kobj, "irm_id"))
639 goto fail;
640 if ((ne = find_entry_by_nodeid(host, host->busmgr_id)) &&
641 sysfs_create_link(&dev->kobj, &ne->device.kobj, "busmgr_id"))
642 goto fail;
643 if ((ne = find_entry_by_nodeid(host, host->node_id)) &&
644 sysfs_create_link(&dev->kobj, &ne->device.kobj, "host_id"))
645 goto fail;
646 return;
647fail:
648 HPSB_ERR("Failed to update sysfs attributes for host %d", host->id);
1da177e4
LT
649}
650
651static void nodemgr_create_ud_dev_files(struct unit_directory *ud)
652{
653 struct device *dev = &ud->device;
654 int i;
655
656 for (i = 0; i < ARRAY_SIZE(fw_ud_attrs); i++)
c1c9c7cd
SR
657 if (device_create_file(dev, fw_ud_attrs[i]))
658 goto fail;
1da177e4 659 if (ud->flags & UNIT_DIRECTORY_SPECIFIER_ID)
c1c9c7cd
SR
660 if (device_create_file(dev, &dev_attr_ud_specifier_id))
661 goto fail;
1da177e4 662 if (ud->flags & UNIT_DIRECTORY_VERSION)
c1c9c7cd
SR
663 if (device_create_file(dev, &dev_attr_ud_version))
664 goto fail;
1da177e4 665 if (ud->flags & UNIT_DIRECTORY_VENDOR_ID) {
c1c9c7cd
SR
666 if (device_create_file(dev, &dev_attr_ud_vendor_id))
667 goto fail;
668 if (ud->vendor_name_kv &&
669 device_create_file(dev, &dev_attr_ud_vendor_name_kv))
670 goto fail;
1da177e4 671 }
1da177e4 672 if (ud->flags & UNIT_DIRECTORY_MODEL_ID) {
c1c9c7cd
SR
673 if (device_create_file(dev, &dev_attr_ud_model_id))
674 goto fail;
675 if (ud->model_name_kv &&
676 device_create_file(dev, &dev_attr_ud_model_name_kv))
677 goto fail;
1da177e4 678 }
c1c9c7cd
SR
679 return;
680fail:
9be51c5d 681 HPSB_ERR("Failed to add sysfs attribute");
1da177e4
LT
682}
683
684
685static int nodemgr_bus_match(struct device * dev, struct device_driver * drv)
686{
d41bba2d
SR
687 struct hpsb_protocol_driver *driver;
688 struct unit_directory *ud;
1da177e4
LT
689 struct ieee1394_device_id *id;
690
691 /* We only match unit directories */
692 if (dev->platform_data != &nodemgr_ud_platform_data)
693 return 0;
694
695 ud = container_of(dev, struct unit_directory, device);
1da177e4
LT
696 if (ud->ne->in_limbo || ud->ignore_driver)
697 return 0;
698
8252bbb1
SR
699 /* We only match drivers of type hpsb_protocol_driver */
700 if (drv == &nodemgr_mid_layer_driver)
701 return 0;
702
703 driver = container_of(drv, struct hpsb_protocol_driver, driver);
d41bba2d
SR
704 for (id = driver->id_table; id->match_flags != 0; id++) {
705 if ((id->match_flags & IEEE1394_MATCH_VENDOR_ID) &&
706 id->vendor_id != ud->vendor_id)
707 continue;
1da177e4 708
d41bba2d
SR
709 if ((id->match_flags & IEEE1394_MATCH_MODEL_ID) &&
710 id->model_id != ud->model_id)
711 continue;
1da177e4 712
d41bba2d
SR
713 if ((id->match_flags & IEEE1394_MATCH_SPECIFIER_ID) &&
714 id->specifier_id != ud->specifier_id)
715 continue;
1da177e4 716
d41bba2d
SR
717 if ((id->match_flags & IEEE1394_MATCH_VERSION) &&
718 id->version != ud->version)
719 continue;
1da177e4
LT
720
721 return 1;
d41bba2d 722 }
1da177e4
LT
723
724 return 0;
725}
726
727
b07375b1
SR
728static DEFINE_MUTEX(nodemgr_serialize_remove_uds);
729
73cf6023
DY
730static int __match_ne(struct device *dev, void *data)
731{
732 struct unit_directory *ud;
733 struct node_entry *ne = (struct node_entry *)data;
734
735 ud = container_of(dev, struct unit_directory, unit_dev);
736 return ud->ne == ne;
737}
738
1da177e4
LT
739static void nodemgr_remove_uds(struct node_entry *ne)
740{
dd7f2928 741 struct device *dev;
73cf6023
DY
742 struct unit_directory *ud;
743
744 /* Use class_find device to iterate the devices. Since this code
745 * may be called from other contexts besides the knodemgrds,
746 * protect it by nodemgr_serialize_remove_uds.
b07375b1 747 */
b07375b1 748 mutex_lock(&nodemgr_serialize_remove_uds);
1e4f7bc8 749 for (;;) {
73cf6023
DY
750 dev = class_find_device(&nodemgr_ud_class, ne, __match_ne);
751 if (!dev)
1e4f7bc8 752 break;
73cf6023
DY
753 ud = container_of(dev, struct unit_directory, unit_dev);
754 put_device(dev);
dd7f2928 755 device_unregister(&ud->unit_dev);
1e4f7bc8 756 device_unregister(&ud->device);
b07375b1 757 }
b07375b1 758 mutex_unlock(&nodemgr_serialize_remove_uds);
1da177e4
LT
759}
760
761
762static void nodemgr_remove_ne(struct node_entry *ne)
763{
cec1a311 764 struct device *dev;
1da177e4
LT
765
766 dev = get_device(&ne->device);
767 if (!dev)
768 return;
769
770 HPSB_DEBUG("Node removed: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
771 NODE_BUS_ARGS(ne->host, ne->nodeid), (unsigned long long)ne->guid);
1da177e4
LT
772 nodemgr_remove_uds(ne);
773
dd7f2928 774 device_unregister(&ne->node_dev);
1da177e4
LT
775 device_unregister(dev);
776
777 put_device(dev);
778}
779
64360322
GKH
780static int __nodemgr_remove_host_dev(struct device *dev, void *data)
781{
dd7f2928
KS
782 if (dev->bus == &ieee1394_bus_type)
783 nodemgr_remove_ne(container_of(dev, struct node_entry,
784 device));
64360322
GKH
785 return 0;
786}
1da177e4
LT
787
788static void nodemgr_remove_host_dev(struct device *dev)
789{
c1c9c7cd 790 WARN_ON(device_for_each_child(dev, NULL, __nodemgr_remove_host_dev));
1da177e4
LT
791 sysfs_remove_link(&dev->kobj, "irm_id");
792 sysfs_remove_link(&dev->kobj, "busmgr_id");
793 sysfs_remove_link(&dev->kobj, "host_id");
794}
795
796
797static void nodemgr_update_bus_options(struct node_entry *ne)
798{
799#ifdef CONFIG_IEEE1394_VERBOSEDEBUG
800 static const u16 mr[] = { 4, 64, 1024, 0};
801#endif
802 quadlet_t busoptions = be32_to_cpu(ne->csr->bus_info_data[2]);
803
d41bba2d
SR
804 ne->busopt.irmc = (busoptions >> 31) & 1;
805 ne->busopt.cmc = (busoptions >> 30) & 1;
806 ne->busopt.isc = (busoptions >> 29) & 1;
807 ne->busopt.bmc = (busoptions >> 28) & 1;
808 ne->busopt.pmc = (busoptions >> 27) & 1;
809 ne->busopt.cyc_clk_acc = (busoptions >> 16) & 0xff;
810 ne->busopt.max_rec = 1 << (((busoptions >> 12) & 0xf) + 1);
1da177e4 811 ne->busopt.max_rom = (busoptions >> 8) & 0x3;
d41bba2d
SR
812 ne->busopt.generation = (busoptions >> 4) & 0xf;
813 ne->busopt.lnkspd = busoptions & 0x7;
1da177e4
LT
814
815 HPSB_VERBOSE("NodeMgr: raw=0x%08x irmc=%d cmc=%d isc=%d bmc=%d pmc=%d "
816 "cyc_clk_acc=%d max_rec=%d max_rom=%d gen=%d lspd=%d",
817 busoptions, ne->busopt.irmc, ne->busopt.cmc,
818 ne->busopt.isc, ne->busopt.bmc, ne->busopt.pmc,
819 ne->busopt.cyc_clk_acc, ne->busopt.max_rec,
820 mr[ne->busopt.max_rom],
821 ne->busopt.generation, ne->busopt.lnkspd);
822}
823
824
825static struct node_entry *nodemgr_create_node(octlet_t guid, struct csr1212_csr *csr,
826 struct host_info *hi, nodeid_t nodeid,
827 unsigned int generation)
828{
829 struct hpsb_host *host = hi->host;
8551158a 830 struct node_entry *ne;
1da177e4 831
8551158a
SR
832 ne = kzalloc(sizeof(*ne), GFP_KERNEL);
833 if (!ne)
c1c9c7cd 834 goto fail_alloc;
1da177e4 835
8551158a
SR
836 ne->host = host;
837 ne->nodeid = nodeid;
1da177e4
LT
838 ne->generation = generation;
839 ne->needs_probe = 1;
840
8551158a 841 ne->guid = guid;
1da177e4 842 ne->guid_vendor_id = (guid >> 40) & 0xffffff;
1da177e4
LT
843 ne->csr = csr;
844
845 memcpy(&ne->device, &nodemgr_dev_template_ne,
846 sizeof(ne->device));
847 ne->device.parent = &host->device;
848 snprintf(ne->device.bus_id, BUS_ID_SIZE, "%016Lx",
849 (unsigned long long)(ne->guid));
850
dd7f2928
KS
851 ne->node_dev.parent = &ne->device;
852 ne->node_dev.class = &nodemgr_ne_class;
853 snprintf(ne->node_dev.bus_id, BUS_ID_SIZE, "%016Lx",
854 (unsigned long long)(ne->guid));
1da177e4 855
c1c9c7cd
SR
856 if (device_register(&ne->device))
857 goto fail_devreg;
dd7f2928 858 if (device_register(&ne->node_dev))
c1c9c7cd 859 goto fail_classdevreg;
1da177e4
LT
860 get_device(&ne->device);
861
1da177e4
LT
862 nodemgr_create_ne_dev_files(ne);
863
864 nodemgr_update_bus_options(ne);
865
866 HPSB_DEBUG("%s added: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
867 (host->node_id == nodeid) ? "Host" : "Node",
868 NODE_BUS_ARGS(host, nodeid), (unsigned long long)guid);
869
8551158a 870 return ne;
c1c9c7cd 871
c1c9c7cd
SR
872fail_classdevreg:
873 device_unregister(&ne->device);
874fail_devreg:
875 kfree(ne);
876fail_alloc:
877 HPSB_ERR("Failed to create node ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
878 NODE_BUS_ARGS(host, nodeid), (unsigned long long)guid);
879
880 return NULL;
1da177e4
LT
881}
882
73cf6023
DY
883static int __match_ne_guid(struct device *dev, void *data)
884{
885 struct node_entry *ne;
886 u64 *guid = (u64 *)data;
887
888 ne = container_of(dev, struct node_entry, node_dev);
889 return ne->guid == *guid;
890}
1da177e4
LT
891
892static struct node_entry *find_entry_by_guid(u64 guid)
893{
dd7f2928 894 struct device *dev;
73cf6023 895 struct node_entry *ne;
1da177e4 896
73cf6023
DY
897 dev = class_find_device(&nodemgr_ne_class, &guid, __match_ne_guid);
898 if (!dev)
899 return NULL;
900 ne = container_of(dev, struct node_entry, node_dev);
901 put_device(dev);
1da177e4 902
73cf6023 903 return ne;
1da177e4
LT
904}
905
73cf6023
DY
906struct match_nodeid_param {
907 struct hpsb_host *host;
908 nodeid_t nodeid;
909};
910
911static int __match_ne_nodeid(struct device *dev, void *data)
912{
913 int found = 0;
914 struct node_entry *ne;
915 struct match_nodeid_param *param = (struct match_nodeid_param *)data;
916
917 if (!dev)
918 goto ret;
919 ne = container_of(dev, struct node_entry, node_dev);
920 if (ne->host == param->host && ne->nodeid == param->nodeid)
921 found = 1;
922ret:
923 return found;
924}
1da177e4 925
b07375b1
SR
926static struct node_entry *find_entry_by_nodeid(struct hpsb_host *host,
927 nodeid_t nodeid)
1da177e4 928{
dd7f2928 929 struct device *dev;
73cf6023
DY
930 struct node_entry *ne;
931 struct match_nodeid_param param;
1da177e4 932
73cf6023
DY
933 param.host = host;
934 param.nodeid = nodeid;
1da177e4 935
73cf6023
DY
936 dev = class_find_device(&nodemgr_ne_class, &param, __match_ne_nodeid);
937 if (!dev)
938 return NULL;
939 ne = container_of(dev, struct node_entry, node_dev);
940 put_device(dev);
1da177e4 941
73cf6023 942 return ne;
1da177e4
LT
943}
944
945
946static void nodemgr_register_device(struct node_entry *ne,
947 struct unit_directory *ud, struct device *parent)
948{
949 memcpy(&ud->device, &nodemgr_dev_template_ud,
950 sizeof(ud->device));
951
952 ud->device.parent = parent;
953
954 snprintf(ud->device.bus_id, BUS_ID_SIZE, "%s-%u",
955 ne->device.bus_id, ud->id);
956
dd7f2928
KS
957 ud->unit_dev.parent = &ud->device;
958 ud->unit_dev.class = &nodemgr_ud_class;
959 snprintf(ud->unit_dev.bus_id, BUS_ID_SIZE, "%s-%u",
1da177e4
LT
960 ne->device.bus_id, ud->id);
961
c1c9c7cd
SR
962 if (device_register(&ud->device))
963 goto fail_devreg;
dd7f2928 964 if (device_register(&ud->unit_dev))
c1c9c7cd 965 goto fail_classdevreg;
1da177e4
LT
966 get_device(&ud->device);
967
1da177e4 968 nodemgr_create_ud_dev_files(ud);
c1c9c7cd
SR
969
970 return;
971
c1c9c7cd
SR
972fail_classdevreg:
973 device_unregister(&ud->device);
974fail_devreg:
975 HPSB_ERR("Failed to create unit %s", ud->device.bus_id);
1da177e4
LT
976}
977
978
979/* This implementation currently only scans the config rom and its
980 * immediate unit directories looking for software_id and
981 * software_version entries, in order to get driver autoloading working. */
982static struct unit_directory *nodemgr_process_unit_directory
983 (struct host_info *hi, struct node_entry *ne, struct csr1212_keyval *ud_kv,
984 unsigned int *id, struct unit_directory *parent)
985{
986 struct unit_directory *ud;
987 struct unit_directory *ud_child = NULL;
988 struct csr1212_dentry *dentry;
989 struct csr1212_keyval *kv;
990 u8 last_key_id = 0;
991
8551158a 992 ud = kzalloc(sizeof(*ud), GFP_KERNEL);
1da177e4
LT
993 if (!ud)
994 goto unit_directory_error;
995
1da177e4
LT
996 ud->ne = ne;
997 ud->ignore_driver = ignore_drivers;
a52938f3 998 ud->address = ud_kv->offset + CSR1212_REGISTER_SPACE_BASE;
d7794c86 999 ud->directory_id = ud->address & 0xffffff;
1da177e4
LT
1000 ud->ud_kv = ud_kv;
1001 ud->id = (*id)++;
1002
1003 csr1212_for_each_dir_entry(ne->csr, kv, ud_kv, dentry) {
1004 switch (kv->key.id) {
1005 case CSR1212_KV_ID_VENDOR:
1006 if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
1007 ud->vendor_id = kv->value.immediate;
1008 ud->flags |= UNIT_DIRECTORY_VENDOR_ID;
1da177e4
LT
1009 }
1010 break;
1011
1012 case CSR1212_KV_ID_MODEL:
1013 ud->model_id = kv->value.immediate;
1014 ud->flags |= UNIT_DIRECTORY_MODEL_ID;
1015 break;
1016
1017 case CSR1212_KV_ID_SPECIFIER_ID:
1018 ud->specifier_id = kv->value.immediate;
1019 ud->flags |= UNIT_DIRECTORY_SPECIFIER_ID;
1020 break;
1021
1022 case CSR1212_KV_ID_VERSION:
1023 ud->version = kv->value.immediate;
1024 ud->flags |= UNIT_DIRECTORY_VERSION;
1025 break;
1026
1027 case CSR1212_KV_ID_DESCRIPTOR:
1028 if (kv->key.type == CSR1212_KV_TYPE_LEAF &&
1029 CSR1212_DESCRIPTOR_LEAF_TYPE(kv) == 0 &&
1030 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv) == 0 &&
1031 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv) == 0 &&
1032 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv) == 0 &&
1033 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv) == 0) {
1034 switch (last_key_id) {
1035 case CSR1212_KV_ID_VENDOR:
1da177e4 1036 csr1212_keep_keyval(kv);
17a19b79 1037 ud->vendor_name_kv = kv;
1da177e4
LT
1038 break;
1039
1040 case CSR1212_KV_ID_MODEL:
1da177e4 1041 csr1212_keep_keyval(kv);
17a19b79 1042 ud->model_name_kv = kv;
1da177e4
LT
1043 break;
1044
1045 }
1046 } /* else if (kv->key.type == CSR1212_KV_TYPE_DIRECTORY) ... */
1047 break;
1048
1049 case CSR1212_KV_ID_DEPENDENT_INFO:
1050 /* Logical Unit Number */
1051 if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
1052 if (ud->flags & UNIT_DIRECTORY_HAS_LUN) {
bfe89d72 1053 ud_child = kmemdup(ud, sizeof(*ud_child), GFP_KERNEL);
1da177e4
LT
1054 if (!ud_child)
1055 goto unit_directory_error;
1da177e4
LT
1056 nodemgr_register_device(ne, ud_child, &ne->device);
1057 ud_child = NULL;
1058
1059 ud->id = (*id)++;
1060 }
1061 ud->lun = kv->value.immediate;
1062 ud->flags |= UNIT_DIRECTORY_HAS_LUN;
1063
1064 /* Logical Unit Directory */
1065 } else if (kv->key.type == CSR1212_KV_TYPE_DIRECTORY) {
1066 /* This should really be done in SBP2 as this is
1067 * doing SBP2 specific parsing.
1068 */
1069
1070 /* first register the parent unit */
1071 ud->flags |= UNIT_DIRECTORY_HAS_LUN_DIRECTORY;
1072 if (ud->device.bus != &ieee1394_bus_type)
1073 nodemgr_register_device(ne, ud, &ne->device);
1074
1075 /* process the child unit */
1076 ud_child = nodemgr_process_unit_directory(hi, ne, kv, id, ud);
1077
1078 if (ud_child == NULL)
1079 break;
1080
312c004d 1081 /* inherit unspecified values, the driver core picks it up */
1da177e4
LT
1082 if ((ud->flags & UNIT_DIRECTORY_MODEL_ID) &&
1083 !(ud_child->flags & UNIT_DIRECTORY_MODEL_ID))
1084 {
1085 ud_child->flags |= UNIT_DIRECTORY_MODEL_ID;
1086 ud_child->model_id = ud->model_id;
1087 }
1088 if ((ud->flags & UNIT_DIRECTORY_SPECIFIER_ID) &&
1089 !(ud_child->flags & UNIT_DIRECTORY_SPECIFIER_ID))
1090 {
1091 ud_child->flags |= UNIT_DIRECTORY_SPECIFIER_ID;
1092 ud_child->specifier_id = ud->specifier_id;
1093 }
1094 if ((ud->flags & UNIT_DIRECTORY_VERSION) &&
1095 !(ud_child->flags & UNIT_DIRECTORY_VERSION))
1096 {
1097 ud_child->flags |= UNIT_DIRECTORY_VERSION;
1098 ud_child->version = ud->version;
1099 }
1100
1101 /* register the child unit */
1102 ud_child->flags |= UNIT_DIRECTORY_LUN_DIRECTORY;
1103 nodemgr_register_device(ne, ud_child, &ud->device);
1104 }
1105
1106 break;
1107
d7794c86
SR
1108 case CSR1212_KV_ID_DIRECTORY_ID:
1109 ud->directory_id = kv->value.immediate;
1110 break;
1111
1da177e4
LT
1112 default:
1113 break;
1114 }
1115 last_key_id = kv->key.id;
1116 }
1117
1118 /* do not process child units here and only if not already registered */
1119 if (!parent && ud->device.bus != &ieee1394_bus_type)
1120 nodemgr_register_device(ne, ud, &ne->device);
1121
1122 return ud;
1123
1124unit_directory_error:
616b859f 1125 kfree(ud);
1da177e4
LT
1126 return NULL;
1127}
1128
1129
1130static void nodemgr_process_root_directory(struct host_info *hi, struct node_entry *ne)
1131{
1132 unsigned int ud_id = 0;
1133 struct csr1212_dentry *dentry;
638d5bb8 1134 struct csr1212_keyval *kv, *vendor_name_kv = NULL;
1da177e4
LT
1135 u8 last_key_id = 0;
1136
1137 ne->needs_probe = 0;
1138
1139 csr1212_for_each_dir_entry(ne->csr, kv, ne->csr->root_kv, dentry) {
1140 switch (kv->key.id) {
1141 case CSR1212_KV_ID_VENDOR:
1142 ne->vendor_id = kv->value.immediate;
1da177e4
LT
1143 break;
1144
1145 case CSR1212_KV_ID_NODE_CAPABILITIES:
1146 ne->capabilities = kv->value.immediate;
1147 break;
1148
1149 case CSR1212_KV_ID_UNIT:
1150 nodemgr_process_unit_directory(hi, ne, kv, &ud_id, NULL);
1151 break;
1152
1153 case CSR1212_KV_ID_DESCRIPTOR:
1154 if (last_key_id == CSR1212_KV_ID_VENDOR) {
1155 if (kv->key.type == CSR1212_KV_TYPE_LEAF &&
1156 CSR1212_DESCRIPTOR_LEAF_TYPE(kv) == 0 &&
1157 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv) == 0 &&
1158 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv) == 0 &&
1159 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv) == 0 &&
1160 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv) == 0) {
1da177e4 1161 csr1212_keep_keyval(kv);
638d5bb8 1162 vendor_name_kv = kv;
1da177e4
LT
1163 }
1164 }
1165 break;
1166 }
1167 last_key_id = kv->key.id;
1168 }
1169
93245472 1170 if (ne->vendor_name_kv) {
638d5bb8
SR
1171 kv = ne->vendor_name_kv;
1172 ne->vendor_name_kv = vendor_name_kv;
1173 csr1212_release_keyval(kv);
1174 } else if (vendor_name_kv) {
1175 ne->vendor_name_kv = vendor_name_kv;
1176 if (device_create_file(&ne->device,
1177 &dev_attr_ne_vendor_name_kv) != 0)
9be51c5d 1178 HPSB_ERR("Failed to add sysfs attribute");
93245472 1179 }
1da177e4
LT
1180}
1181
1182#ifdef CONFIG_HOTPLUG
1183
7eff2e7a 1184static int nodemgr_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4
LT
1185{
1186 struct unit_directory *ud;
bf62456e 1187 int retval = 0;
9b19d85a
OH
1188 /* ieee1394:venNmoNspNverN */
1189 char buf[8 + 1 + 3 + 8 + 2 + 8 + 2 + 8 + 3 + 8 + 1];
1da177e4 1190
dd7f2928 1191 if (!dev)
1da177e4
LT
1192 return -ENODEV;
1193
dd7f2928 1194 ud = container_of(dev, struct unit_directory, unit_dev);
1da177e4
LT
1195
1196 if (ud->ne->in_limbo || ud->ignore_driver)
1197 return -ENODEV;
1198
1199#define PUT_ENVP(fmt,val) \
1200do { \
7eff2e7a 1201 retval = add_uevent_var(env, fmt, val); \
bf62456e
ER
1202 if (retval) \
1203 return retval; \
1da177e4
LT
1204} while (0)
1205
1206 PUT_ENVP("VENDOR_ID=%06x", ud->vendor_id);
1207 PUT_ENVP("MODEL_ID=%06x", ud->model_id);
1208 PUT_ENVP("GUID=%016Lx", (unsigned long long)ud->ne->guid);
1209 PUT_ENVP("SPECIFIER_ID=%06x", ud->specifier_id);
1210 PUT_ENVP("VERSION=%06x", ud->version);
9b19d85a
OH
1211 snprintf(buf, sizeof(buf), "ieee1394:ven%08Xmo%08Xsp%08Xver%08X",
1212 ud->vendor_id,
1213 ud->model_id,
1214 ud->specifier_id,
1215 ud->version);
1216 PUT_ENVP("MODALIAS=%s", buf);
1da177e4
LT
1217
1218#undef PUT_ENVP
1219
1da177e4
LT
1220 return 0;
1221}
1222
1223#else
1224
7eff2e7a 1225static int nodemgr_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4
LT
1226{
1227 return -ENODEV;
1228}
1229
1230#endif /* CONFIG_HOTPLUG */
1231
1232
ed30c26e
BC
1233int __hpsb_register_protocol(struct hpsb_protocol_driver *drv,
1234 struct module *owner)
1da177e4 1235{
ed30c26e
BC
1236 int error;
1237
1238 drv->driver.bus = &ieee1394_bus_type;
1239 drv->driver.owner = owner;
1240 drv->driver.name = drv->name;
1241
1da177e4 1242 /* This will cause a probe for devices */
ed30c26e 1243 error = driver_register(&drv->driver);
7fdfc909 1244 if (!error)
ed30c26e 1245 nodemgr_create_drv_files(drv);
7fdfc909 1246 return error;
1da177e4
LT
1247}
1248
1249void hpsb_unregister_protocol(struct hpsb_protocol_driver *driver)
1250{
1251 nodemgr_remove_drv_files(driver);
1252 /* This will subsequently disconnect all devices that our driver
1253 * is attached to. */
1254 driver_unregister(&driver->driver);
1255}
1256
1257
1258/*
1259 * This function updates nodes that were present on the bus before the
1260 * reset and still are after the reset. The nodeid and the config rom
1261 * may have changed, and the drivers managing this device must be
1262 * informed that this device just went through a bus reset, to allow
1263 * the to take whatever actions required.
1264 */
1265static void nodemgr_update_node(struct node_entry *ne, struct csr1212_csr *csr,
1266 struct host_info *hi, nodeid_t nodeid,
1267 unsigned int generation)
1268{
1269 if (ne->nodeid != nodeid) {
1270 HPSB_DEBUG("Node changed: " NODE_BUS_FMT " -> " NODE_BUS_FMT,
1271 NODE_BUS_ARGS(ne->host, ne->nodeid),
1272 NODE_BUS_ARGS(ne->host, nodeid));
1273 ne->nodeid = nodeid;
1274 }
1275
1276 if (ne->busopt.generation != ((be32_to_cpu(csr->bus_info_data[2]) >> 4) & 0xf)) {
1277 kfree(ne->csr->private);
1278 csr1212_destroy_csr(ne->csr);
1279 ne->csr = csr;
1280
1281 /* If the node's configrom generation has changed, we
1282 * unregister all the unit directories. */
1283 nodemgr_remove_uds(ne);
1284
1285 nodemgr_update_bus_options(ne);
1286
1287 /* Mark the node as new, so it gets re-probed */
1288 ne->needs_probe = 1;
1289 } else {
1290 /* old cache is valid, so update its generation */
1291 struct nodemgr_csr_info *ci = ne->csr->private;
1292 ci->generation = generation;
1293 /* free the partially filled now unneeded new cache */
1294 kfree(csr->private);
1295 csr1212_destroy_csr(csr);
1296 }
1297
1298 if (ne->in_limbo)
1299 nodemgr_resume_ne(ne);
1300
1301 /* Mark the node current */
1302 ne->generation = generation;
1303}
1304
1305
1306
1307static void nodemgr_node_scan_one(struct host_info *hi,
1308 nodeid_t nodeid, int generation)
1309{
1310 struct hpsb_host *host = hi->host;
1311 struct node_entry *ne;
1312 octlet_t guid;
1313 struct csr1212_csr *csr;
1314 struct nodemgr_csr_info *ci;
d7530a1e 1315 u8 *speed;
1da177e4 1316
8551158a 1317 ci = kmalloc(sizeof(*ci), GFP_KERNEL);
1da177e4
LT
1318 if (!ci)
1319 return;
1320
1321 ci->host = host;
1322 ci->nodeid = nodeid;
1323 ci->generation = generation;
d7530a1e
SR
1324
1325 /* Prepare for speed probe which occurs when reading the ROM */
1326 speed = &(host->speed[NODEID_TO_NODE(nodeid)]);
1327 if (*speed > host->csr.lnk_spd)
1328 *speed = host->csr.lnk_spd;
1329 ci->speed_unverified = *speed > IEEE1394_SPEED_100;
1da177e4
LT
1330
1331 /* We need to detect when the ConfigROM's generation has changed,
1332 * so we only update the node's info when it needs to be. */
1333
1334 csr = csr1212_create_csr(&nodemgr_csr_ops, 5 * sizeof(quadlet_t), ci);
1335 if (!csr || csr1212_parse_csr(csr) != CSR1212_SUCCESS) {
1336 HPSB_ERR("Error parsing configrom for node " NODE_BUS_FMT,
1337 NODE_BUS_ARGS(host, nodeid));
1338 if (csr)
1339 csr1212_destroy_csr(csr);
1340 kfree(ci);
1341 return;
1342 }
1343
1344 if (csr->bus_info_data[1] != IEEE1394_BUSID_MAGIC) {
1345 /* This isn't a 1394 device, but we let it slide. There
1346 * was a report of a device with broken firmware which
1347 * reported '2394' instead of '1394', which is obviously a
1348 * mistake. One would hope that a non-1394 device never
1349 * gets connected to Firewire bus. If someone does, we
1350 * shouldn't be held responsible, so we'll allow it with a
1351 * warning. */
1352 HPSB_WARN("Node " NODE_BUS_FMT " has invalid busID magic [0x%08x]",
1353 NODE_BUS_ARGS(host, nodeid), csr->bus_info_data[1]);
1354 }
1355
1356 guid = ((u64)be32_to_cpu(csr->bus_info_data[3]) << 32) | be32_to_cpu(csr->bus_info_data[4]);
1357 ne = find_entry_by_guid(guid);
1358
1359 if (ne && ne->host != host && ne->in_limbo) {
1360 /* Must have moved this device from one host to another */
1361 nodemgr_remove_ne(ne);
1362 ne = NULL;
1363 }
1364
1365 if (!ne)
1366 nodemgr_create_node(guid, csr, hi, nodeid, generation);
1367 else
1368 nodemgr_update_node(ne, csr, hi, nodeid, generation);
1da177e4
LT
1369}
1370
1371
1372static void nodemgr_node_scan(struct host_info *hi, int generation)
1373{
d41bba2d
SR
1374 int count;
1375 struct hpsb_host *host = hi->host;
1376 struct selfid *sid = (struct selfid *)host->topology_map;
1377 nodeid_t nodeid = LOCAL_BUS;
1da177e4 1378
d41bba2d
SR
1379 /* Scan each node on the bus */
1380 for (count = host->selfid_count; count; count--, sid++) {
1381 if (sid->extended)
1382 continue;
1da177e4 1383
d41bba2d
SR
1384 if (!sid->link_active) {
1385 nodeid++;
1386 continue;
1387 }
1388 nodemgr_node_scan_one(hi, nodeid++, generation);
1389 }
1da177e4
LT
1390}
1391
73cf6023 1392static int __nodemgr_driver_suspend(struct device *dev, void *data)
1da177e4 1393{
1da177e4 1394 struct unit_directory *ud;
a0e857ee 1395 struct device_driver *drv;
73cf6023 1396 struct node_entry *ne = (struct node_entry *)data;
a0e857ee 1397 int error;
1da177e4 1398
73cf6023
DY
1399 ud = container_of(dev, struct unit_directory, unit_dev);
1400 if (ud->ne == ne) {
1401 drv = get_driver(ud->device.driver);
1402 if (drv) {
1403 error = 1; /* release if suspend is not implemented */
1404 if (drv->suspend) {
1405 down(&ud->device.sem);
1406 error = drv->suspend(&ud->device, PMSG_SUSPEND);
1407 up(&ud->device.sem);
1408 }
1409 if (error)
1410 device_release_driver(&ud->device);
1411 put_driver(drv);
1412 }
1413 }
1da177e4 1414
73cf6023
DY
1415 return 0;
1416}
1da177e4 1417
73cf6023
DY
1418static int __nodemgr_driver_resume(struct device *dev, void *data)
1419{
1420 struct unit_directory *ud;
1421 struct device_driver *drv;
1422 struct node_entry *ne = (struct node_entry *)data;
1da177e4 1423
73cf6023
DY
1424 ud = container_of(dev, struct unit_directory, unit_dev);
1425 if (ud->ne == ne) {
a0e857ee 1426 drv = get_driver(ud->device.driver);
73cf6023
DY
1427 if (drv) {
1428 if (drv->resume) {
1429 down(&ud->device.sem);
1430 drv->resume(&ud->device);
1431 up(&ud->device.sem);
1432 }
1433 put_driver(drv);
a0e857ee 1434 }
1da177e4 1435 }
1da177e4 1436
73cf6023
DY
1437 return 0;
1438}
1da177e4 1439
73cf6023 1440static void nodemgr_suspend_ne(struct node_entry *ne)
1da177e4 1441{
73cf6023
DY
1442 HPSB_DEBUG("Node suspended: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
1443 NODE_BUS_ARGS(ne->host, ne->nodeid),
1444 (unsigned long long)ne->guid);
1da177e4 1445
73cf6023
DY
1446 ne->in_limbo = 1;
1447 WARN_ON(device_create_file(&ne->device, &dev_attr_ne_in_limbo));
1da177e4 1448
73cf6023
DY
1449 class_for_each_device(&nodemgr_ud_class, ne, __nodemgr_driver_suspend);
1450}
1da177e4 1451
a0e857ee 1452
73cf6023
DY
1453static void nodemgr_resume_ne(struct node_entry *ne)
1454{
1455 ne->in_limbo = 0;
1456 device_remove_file(&ne->device, &dev_attr_ne_in_limbo);
1da177e4 1457
73cf6023 1458 class_for_each_device(&nodemgr_ud_class, ne, __nodemgr_driver_resume);
1da177e4
LT
1459 HPSB_DEBUG("Node resumed: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
1460 NODE_BUS_ARGS(ne->host, ne->nodeid), (unsigned long long)ne->guid);
1461}
1462
73cf6023 1463static int __nodemgr_update_pdrv(struct device *dev, void *data)
1da177e4
LT
1464{
1465 struct unit_directory *ud;
a0e857ee 1466 struct device_driver *drv;
1da177e4 1467 struct hpsb_protocol_driver *pdrv;
73cf6023 1468 struct node_entry *ne = (struct node_entry *)data;
a0e857ee 1469 int error;
1da177e4 1470
73cf6023
DY
1471 ud = container_of(dev, struct unit_directory, unit_dev);
1472 if (ud->ne == ne) {
a0e857ee 1473 drv = get_driver(ud->device.driver);
73cf6023
DY
1474 if (drv) {
1475 error = 0;
1476 pdrv = container_of(drv, struct hpsb_protocol_driver,
1477 driver);
1478 if (pdrv->update) {
1479 down(&ud->device.sem);
1480 error = pdrv->update(ud);
1481 up(&ud->device.sem);
1482 }
1483 if (error)
1484 device_release_driver(&ud->device);
1485 put_driver(drv);
1da177e4
LT
1486 }
1487 }
73cf6023
DY
1488
1489 return 0;
1490}
1491
1492static void nodemgr_update_pdrv(struct node_entry *ne)
1493{
1494 class_for_each_device(&nodemgr_ud_class, ne, __nodemgr_update_pdrv);
1da177e4
LT
1495}
1496
1497
61c7f775
SR
1498/* Write the BROADCAST_CHANNEL as per IEEE1394a 8.3.2.3.11 and 8.4.2.3. This
1499 * seems like an optional service but in the end it is practically mandatory
1500 * as a consequence of these clauses.
1501 *
1502 * Note that we cannot do a broadcast write to all nodes at once because some
1503 * pre-1394a devices would hang. */
1504static void nodemgr_irm_write_bc(struct node_entry *ne, int generation)
1505{
1506 const u64 bc_addr = (CSR_REGISTER_BASE | CSR_BROADCAST_CHANNEL);
1507 quadlet_t bc_remote, bc_local;
7fdfc909 1508 int error;
61c7f775
SR
1509
1510 if (!ne->host->is_irm || ne->generation != generation ||
1511 ne->nodeid == ne->host->node_id)
1512 return;
1513
1514 bc_local = cpu_to_be32(ne->host->csr.broadcast_channel);
1515
1516 /* Check if the register is implemented and 1394a compliant. */
7fdfc909
SR
1517 error = hpsb_read(ne->host, ne->nodeid, generation, bc_addr, &bc_remote,
1518 sizeof(bc_remote));
1519 if (!error && bc_remote & cpu_to_be32(0x80000000) &&
61c7f775
SR
1520 bc_remote != bc_local)
1521 hpsb_node_write(ne, bc_addr, &bc_local, sizeof(bc_local));
1522}
1523
1524
1da177e4
LT
1525static void nodemgr_probe_ne(struct host_info *hi, struct node_entry *ne, int generation)
1526{
1527 struct device *dev;
1528
1529 if (ne->host != hi->host || ne->in_limbo)
1530 return;
1531
1532 dev = get_device(&ne->device);
1533 if (!dev)
1534 return;
1535
61c7f775
SR
1536 nodemgr_irm_write_bc(ne, generation);
1537
1da177e4
LT
1538 /* If "needs_probe", then this is either a new or changed node we
1539 * rescan totally. If the generation matches for an existing node
1540 * (one that existed prior to the bus reset) we send update calls
1541 * down to the drivers. Otherwise, this is a dead node and we
1542 * suspend it. */
1543 if (ne->needs_probe)
1544 nodemgr_process_root_directory(hi, ne);
1545 else if (ne->generation == generation)
1546 nodemgr_update_pdrv(ne);
1547 else
1548 nodemgr_suspend_ne(ne);
1549
1550 put_device(dev);
1551}
1552
73cf6023
DY
1553struct probe_param {
1554 struct host_info *hi;
1555 int generation;
1556};
1557
1558static int __nodemgr_node_probe(struct device *dev, void *data)
1559{
1560 struct probe_param *param = (struct probe_param *)data;
1561 struct node_entry *ne;
1562
1563 ne = container_of(dev, struct node_entry, node_dev);
1564 if (!ne->needs_probe)
1565 nodemgr_probe_ne(param->hi, ne, param->generation);
1566 if (ne->needs_probe)
1567 nodemgr_probe_ne(param->hi, ne, param->generation);
1568 return 0;
1569}
1da177e4
LT
1570
1571static void nodemgr_node_probe(struct host_info *hi, int generation)
1572{
1573 struct hpsb_host *host = hi->host;
73cf6023 1574 struct probe_param param;
1da177e4 1575
73cf6023
DY
1576 param.hi = hi;
1577 param.generation = generation;
1da177e4
LT
1578 /* Do some processing of the nodes we've probed. This pulls them
1579 * into the sysfs layer if needed, and can result in processing of
1580 * unit-directories, or just updating the node and it's
51c1d80e
SR
1581 * unit-directories.
1582 *
1583 * Run updates before probes. Usually, updates are time-critical
1584 * while probes are time-consuming. (Well, those probes need some
1585 * improvement...) */
1586
73cf6023 1587 class_for_each_device(&nodemgr_ne_class, &param, __nodemgr_node_probe);
1da177e4
LT
1588
1589 /* If we had a bus reset while we were scanning the bus, it is
1590 * possible that we did not probe all nodes. In that case, we
1591 * skip the clean up for now, since we could remove nodes that
d2f119fe
SR
1592 * were still on the bus. Another bus scan is pending which will
1593 * do the clean up eventually.
1da177e4
LT
1594 *
1595 * Now let's tell the bus to rescan our devices. This may seem
1596 * like overhead, but the driver-model core will only scan a
1597 * device for a driver when either the device is added, or when a
1598 * new driver is added. A bus reset is a good reason to rescan
1599 * devices that were there before. For example, an sbp2 device
1600 * may become available for login, if the host that held it was
1601 * just removed. */
1602
1603 if (generation == get_hpsb_generation(host))
1f72cf52
SR
1604 if (bus_rescan_devices(&ieee1394_bus_type))
1605 HPSB_DEBUG("bus_rescan_devices had an error");
1da177e4
LT
1606}
1607
14c0fa24
SR
1608static int nodemgr_send_resume_packet(struct hpsb_host *host)
1609{
1610 struct hpsb_packet *packet;
7fdfc909 1611 int error = -ENOMEM;
14c0fa24
SR
1612
1613 packet = hpsb_make_phypacket(host,
d7758461
SR
1614 EXTPHYPACKET_TYPE_RESUME |
1615 NODEID_TO_NODE(host->node_id) << PHYPACKET_PORT_SHIFT);
14c0fa24
SR
1616 if (packet) {
1617 packet->no_waiter = 1;
1618 packet->generation = get_hpsb_generation(host);
7fdfc909 1619 error = hpsb_send_packet(packet);
14c0fa24 1620 }
7fdfc909 1621 if (error)
14c0fa24
SR
1622 HPSB_WARN("fw-host%d: Failed to broadcast resume packet",
1623 host->id);
7fdfc909 1624 return error;
14c0fa24
SR
1625}
1626
61c7f775 1627/* Perform a few high-level IRM responsibilities. */
1da177e4
LT
1628static int nodemgr_do_irm_duties(struct hpsb_host *host, int cycles)
1629{
1630 quadlet_t bc;
1631
1632 /* if irm_id == -1 then there is no IRM on this bus */
1633 if (!host->is_irm || host->irm_id == (nodeid_t)-1)
1634 return 1;
1635
61c7f775
SR
1636 /* We are a 1394a-2000 compliant IRM. Set the validity bit. */
1637 host->csr.broadcast_channel |= 0x40000000;
1da177e4
LT
1638
1639 /* If there is no bus manager then we should set the root node's
1640 * force_root bit to promote bus stability per the 1394
1641 * spec. (8.4.2.6) */
1642 if (host->busmgr_id == 0xffff && host->node_count > 1)
1643 {
1644 u16 root_node = host->node_count - 1;
1da177e4 1645
328699bf
JM
1646 /* get cycle master capability flag from root node */
1647 if (host->is_cycmst ||
1648 (!hpsb_read(host, LOCAL_BUS | root_node, get_hpsb_generation(host),
1649 (CSR_REGISTER_BASE + CSR_CONFIG_ROM + 2 * sizeof(quadlet_t)),
1650 &bc, sizeof(quadlet_t)) &&
1651 be32_to_cpu(bc) & 1 << CSR_CMC_SHIFT))
1da177e4
LT
1652 hpsb_send_phy_config(host, root_node, -1);
1653 else {
1654 HPSB_DEBUG("The root node is not cycle master capable; "
1655 "selecting a new root node and resetting...");
1656
1657 if (cycles >= 5) {
1658 /* Oh screw it! Just leave the bus as it is */
1659 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1660 return 1;
1661 }
1662
1663 hpsb_send_phy_config(host, NODEID_TO_NODE(host->node_id), -1);
1664 hpsb_reset_bus(host, LONG_RESET_FORCE_ROOT);
1665
1666 return 0;
1667 }
1668 }
1669
14c0fa24
SR
1670 /* Some devices suspend their ports while being connected to an inactive
1671 * host adapter, i.e. if connected before the low-level driver is
1672 * loaded. They become visible either when physically unplugged and
1673 * replugged, or when receiving a resume packet. Send one once. */
1674 if (!host->resume_packet_sent && !nodemgr_send_resume_packet(host))
1675 host->resume_packet_sent = 1;
1676
1da177e4
LT
1677 return 1;
1678}
1679
1680/* We need to ensure that if we are not the IRM, that the IRM node is capable of
1681 * everything we can do, otherwise issue a bus reset and try to become the IRM
1682 * ourselves. */
1683static int nodemgr_check_irm_capability(struct hpsb_host *host, int cycles)
1684{
1685 quadlet_t bc;
1686 int status;
1687
1688 if (hpsb_disable_irm || host->is_irm)
1689 return 1;
1690
1691 status = hpsb_read(host, LOCAL_BUS | (host->irm_id),
1692 get_hpsb_generation(host),
1693 (CSR_REGISTER_BASE | CSR_BROADCAST_CHANNEL),
1694 &bc, sizeof(quadlet_t));
1695
1696 if (status < 0 || !(be32_to_cpu(bc) & 0x80000000)) {
1697 /* The current irm node does not have a valid BROADCAST_CHANNEL
1698 * register and we do, so reset the bus with force_root set */
1699 HPSB_DEBUG("Current remote IRM is not 1394a-2000 compliant, resetting...");
1700
1701 if (cycles >= 5) {
1702 /* Oh screw it! Just leave the bus as it is */
1703 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1704 return 1;
1705 }
1706
1707 hpsb_send_phy_config(host, NODEID_TO_NODE(host->node_id), -1);
1708 hpsb_reset_bus(host, LONG_RESET_FORCE_ROOT);
1709
1710 return 0;
1711 }
1712
1713 return 1;
1714}
1715
1716static int nodemgr_host_thread(void *__hi)
1717{
1718 struct host_info *hi = (struct host_info *)__hi;
1719 struct hpsb_host *host = hi->host;
b7a7179d 1720 unsigned int g, generation = 0;
d2f119fe 1721 int i, reset_cycles = 0;
1da177e4 1722
83144186 1723 set_freezable();
1da177e4
LT
1724 /* Setup our device-model entries */
1725 nodemgr_create_host_dev_files(host);
1726
d2f119fe
SR
1727 for (;;) {
1728 /* Sleep until next bus reset */
1729 set_current_state(TASK_INTERRUPTIBLE);
a65421ea
SR
1730 if (get_hpsb_generation(host) == generation &&
1731 !kthread_should_stop())
d2f119fe
SR
1732 schedule();
1733 __set_current_state(TASK_RUNNING);
1734
1735 /* Thread may have been woken up to freeze or to exit */
1736 if (try_to_freeze())
1737 continue;
1738 if (kthread_should_stop())
1739 goto exit;
1da177e4 1740
1da177e4
LT
1741 /* Pause for 1/4 second in 1/16 second intervals,
1742 * to make sure things settle down. */
d2f119fe 1743 g = get_hpsb_generation(host);
1da177e4 1744 for (i = 0; i < 4 ; i++) {
69e2b602
SS
1745 msleep_interruptible(63);
1746 if (kthread_should_stop())
a0e857ee 1747 goto exit;
1da177e4
LT
1748
1749 /* Now get the generation in which the node ID's we collect
1750 * are valid. During the bus scan we will use this generation
1751 * for the read transactions, so that if another reset occurs
1752 * during the scan the transactions will fail instead of
1753 * returning bogus data. */
1754 generation = get_hpsb_generation(host);
1755
1756 /* If we get a reset before we are done waiting, then
59c51591 1757 * start the waiting over again */
d2f119fe
SR
1758 if (generation != g)
1759 g = generation, i = 0;
1da177e4
LT
1760 }
1761
328699bf
JM
1762 if (!nodemgr_check_irm_capability(host, reset_cycles) ||
1763 !nodemgr_do_irm_duties(host, reset_cycles)) {
1da177e4 1764 reset_cycles++;
1da177e4
LT
1765 continue;
1766 }
328699bf 1767 reset_cycles = 0;
1da177e4
LT
1768
1769 /* Scan our nodes to get the bus options and create node
1770 * entries. This does not do the sysfs stuff, since that
312c004d
KS
1771 * would trigger uevents and such, which is a bad idea at
1772 * this point. */
1da177e4 1773 nodemgr_node_scan(hi, generation);
1da177e4
LT
1774
1775 /* This actually does the full probe, with sysfs
1776 * registration. */
1777 nodemgr_node_probe(hi, generation);
1778
1779 /* Update some of our sysfs symlinks */
1780 nodemgr_update_host_dev_links(host);
1da177e4 1781 }
d2f119fe 1782exit:
1da177e4 1783 HPSB_VERBOSE("NodeMgr: Exiting thread");
d2f119fe 1784 return 0;
1da177e4
LT
1785}
1786
73cf6023
DY
1787struct host_iter_param {
1788 void *data;
1789 int (*cb)(struct hpsb_host *, void *);
1790};
1791
1792static int __nodemgr_for_each_host(struct device *dev, void *data)
1793{
1794 struct hpsb_host *host;
1795 struct host_iter_param *hip = (struct host_iter_param *)data;
1796 int error = 0;
1797
1798 host = container_of(dev, struct hpsb_host, host_dev);
1799 error = hip->cb(host, hip->data);
1800
1801 return error;
1802}
afd6546d
SR
1803/**
1804 * nodemgr_for_each_host - call a function for each IEEE 1394 host
1805 * @data: an address to supply to the callback
1806 * @cb: function to call for each host
1807 *
1808 * Iterate the hosts, calling a given function with supplied data for each host.
1809 * If the callback fails on a host, i.e. if it returns a non-zero value, the
1810 * iteration is stopped.
1811 *
1812 * Return value: 0 on success, non-zero on failure (same as returned by last run
1813 * of the callback).
1814 */
1815int nodemgr_for_each_host(void *data, int (*cb)(struct hpsb_host *, void *))
1da177e4 1816{
73cf6023
DY
1817 struct host_iter_param hip;
1818 int error;
1da177e4 1819
73cf6023
DY
1820 hip.cb = cb;
1821 hip.data = data;
1822 error = class_for_each_device(&hpsb_host_class, &hip,
1823 __nodemgr_for_each_host);
1da177e4
LT
1824
1825 return error;
1826}
1827
ef815334 1828/* The following two convenience functions use a struct node_entry
1da177e4
LT
1829 * for addressing a node on the bus. They are intended for use by any
1830 * process context, not just the nodemgr thread, so we need to be a
1831 * little careful when reading out the node ID and generation. The
1832 * thing that can go wrong is that we get the node ID, then a bus
1833 * reset occurs, and then we read the generation. The node ID is
1834 * possibly invalid, but the generation is current, and we end up
1835 * sending a packet to a the wrong node.
1836 *
1837 * The solution is to make sure we read the generation first, so that
1838 * if a reset occurs in the process, we end up with a stale generation
1839 * and the transactions will fail instead of silently using wrong node
1840 * ID's.
1841 */
1842
afd6546d
SR
1843/**
1844 * hpsb_node_fill_packet - fill some destination information into a packet
1845 * @ne: destination node
1846 * @packet: packet to fill in
1847 *
1848 * This will fill in the given, pre-initialised hpsb_packet with the current
1849 * information from the node entry (host, node ID, bus generation number).
1850 */
1851void hpsb_node_fill_packet(struct node_entry *ne, struct hpsb_packet *packet)
1da177e4 1852{
afd6546d
SR
1853 packet->host = ne->host;
1854 packet->generation = ne->generation;
1da177e4 1855 barrier();
afd6546d 1856 packet->node_id = ne->nodeid;
1da177e4
LT
1857}
1858
1859int hpsb_node_write(struct node_entry *ne, u64 addr,
1860 quadlet_t *buffer, size_t length)
1861{
1862 unsigned int generation = ne->generation;
1863
1864 barrier();
1865 return hpsb_write(ne->host, ne->nodeid, generation,
1866 addr, buffer, length);
1867}
1868
1869static void nodemgr_add_host(struct hpsb_host *host)
1870{
1871 struct host_info *hi;
1872
1873 hi = hpsb_create_hostinfo(&nodemgr_highlevel, host, sizeof(*hi));
1da177e4 1874 if (!hi) {
d2f119fe 1875 HPSB_ERR("NodeMgr: out of memory in add host");
1da177e4
LT
1876 return;
1877 }
1da177e4 1878 hi->host = host;
d2f119fe
SR
1879 hi->thread = kthread_run(nodemgr_host_thread, hi, "knodemgrd_%d",
1880 host->id);
1881 if (IS_ERR(hi->thread)) {
1882 HPSB_ERR("NodeMgr: cannot start thread for host %d", host->id);
1da177e4 1883 hpsb_destroy_hostinfo(&nodemgr_highlevel, host);
1da177e4 1884 }
1da177e4
LT
1885}
1886
1887static void nodemgr_host_reset(struct hpsb_host *host)
1888{
1889 struct host_info *hi = hpsb_get_hostinfo(&nodemgr_highlevel, host);
1890
d2f119fe
SR
1891 if (hi) {
1892 HPSB_VERBOSE("NodeMgr: Processing reset for host %d", host->id);
1893 wake_up_process(hi->thread);
1894 }
1da177e4
LT
1895}
1896
1897static void nodemgr_remove_host(struct hpsb_host *host)
1898{
1899 struct host_info *hi = hpsb_get_hostinfo(&nodemgr_highlevel, host);
1900
1901 if (hi) {
d2f119fe
SR
1902 kthread_stop(hi->thread);
1903 nodemgr_remove_host_dev(&host->device);
1904 }
1da177e4
LT
1905}
1906
1907static struct hpsb_highlevel nodemgr_highlevel = {
1908 .name = "Node manager",
1909 .add_host = nodemgr_add_host,
1910 .host_reset = nodemgr_host_reset,
1911 .remove_host = nodemgr_remove_host,
1912};
1913
1914int init_ieee1394_nodemgr(void)
1915{
7fdfc909 1916 int error;
1da177e4 1917
7fdfc909
SR
1918 error = class_register(&nodemgr_ne_class);
1919 if (error)
91efa462 1920 goto fail_ne;
7fdfc909 1921 error = class_register(&nodemgr_ud_class);
91efa462
SR
1922 if (error)
1923 goto fail_ud;
8252bbb1 1924 error = driver_register(&nodemgr_mid_layer_driver);
91efa462
SR
1925 if (error)
1926 goto fail_ml;
1927 /* This driver is not used if nodemgr is off (disable_nodemgr=1). */
1928 nodemgr_dev_template_host.driver = &nodemgr_mid_layer_driver;
1929
1da177e4 1930 hpsb_register_highlevel(&nodemgr_highlevel);
1da177e4 1931 return 0;
91efa462
SR
1932
1933fail_ml:
1934 class_unregister(&nodemgr_ud_class);
1935fail_ud:
1936 class_unregister(&nodemgr_ne_class);
1937fail_ne:
1938 return error;
1da177e4
LT
1939}
1940
1941void cleanup_ieee1394_nodemgr(void)
1942{
d41bba2d 1943 hpsb_unregister_highlevel(&nodemgr_highlevel);
91efa462 1944 driver_unregister(&nodemgr_mid_layer_driver);
1da177e4
LT
1945 class_unregister(&nodemgr_ud_class);
1946 class_unregister(&nodemgr_ne_class);
1947}