2 * Node information (ConfigROM) collection and management.
4 * Copyright (C) 2000 Andreas E. Bombe
5 * 2001-2003 Ben Collins <bcollins@debian.net>
7 * This code is licensed under the GPL. See the file COPYING in the root
8 * directory of the kernel sources for details.
11 #include <linux/bitmap.h>
12 #include <linux/kernel.h>
13 #include <linux/kmemcheck.h>
14 #include <linux/list.h>
15 #include <linux/slab.h>
16 #include <linux/delay.h>
17 #include <linux/kthread.h>
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #include <linux/mutex.h>
21 #include <linux/freezer.h>
22 #include <linux/semaphore.h>
23 #include <asm/atomic.h>
26 #include "highlevel.h"
29 #include "ieee1394_core.h"
30 #include "ieee1394_hotplug.h"
31 #include "ieee1394_types.h"
32 #include "ieee1394_transactions.h"
35 static int ignore_drivers
;
36 module_param(ignore_drivers
, int, S_IRUGO
| S_IWUSR
);
37 MODULE_PARM_DESC(ignore_drivers
, "Disable automatic probing for drivers.");
39 struct nodemgr_csr_info
{
40 struct hpsb_host
*host
;
42 unsigned int generation
;
44 kmemcheck_bitfield_begin(flags
);
45 unsigned int speed_unverified
:1;
46 kmemcheck_bitfield_end(flags
);
51 * Correct the speed map entry. This is necessary
52 * - for nodes with link speed < phy speed,
53 * - for 1394b nodes with negotiated phy port speed < IEEE1394_SPEED_MAX.
54 * A possible speed is determined by trial and error, using quadlet reads.
56 static int nodemgr_check_speed(struct nodemgr_csr_info
*ci
, u64 addr
,
60 u8 i
, *speed
, old_speed
, good_speed
;
63 speed
= &(ci
->host
->speed
[NODEID_TO_NODE(ci
->nodeid
)]);
65 good_speed
= IEEE1394_SPEED_MAX
+ 1;
67 /* Try every speed from S100 to old_speed.
68 * If we did it the other way around, a too low speed could be caught
69 * if the retry succeeded for some other reason, e.g. because the link
70 * just finished its initialization. */
71 for (i
= IEEE1394_SPEED_100
; i
<= old_speed
; i
++) {
73 error
= hpsb_read(ci
->host
, ci
->nodeid
, ci
->generation
, addr
,
80 if (good_speed
<= IEEE1394_SPEED_MAX
) {
81 HPSB_DEBUG("Speed probe of node " NODE_BUS_FMT
" yields %s",
82 NODE_BUS_ARGS(ci
->host
, ci
->nodeid
),
83 hpsb_speedto_str
[good_speed
]);
85 ci
->speed_unverified
= 0;
92 static int nodemgr_bus_read(struct csr1212_csr
*csr
, u64 addr
,
93 void *buffer
, void *__ci
)
95 struct nodemgr_csr_info
*ci
= (struct nodemgr_csr_info
*)__ci
;
99 error
= hpsb_read(ci
->host
, ci
->nodeid
, ci
->generation
, addr
,
102 ci
->speed_unverified
= 0;
105 /* Give up after 3rd failure. */
109 /* The ieee1394_core guessed the node's speed capability from
110 * the self ID. Check whether a lower speed works. */
111 if (ci
->speed_unverified
) {
112 error
= nodemgr_check_speed(ci
, addr
, buffer
);
116 if (msleep_interruptible(334))
122 static struct csr1212_bus_ops nodemgr_csr_ops
= {
123 .bus_read
= nodemgr_bus_read
,
128 * Basically what we do here is start off retrieving the bus_info block.
129 * From there will fill in some info about the node, verify it is of IEEE
130 * 1394 type, and that the crc checks out ok. After that we start off with
131 * the root directory, and subdirectories. To do this, we retrieve the
132 * quadlet header for a directory, find out the length, and retrieve the
133 * complete directory entry (be it a leaf or a directory). We then process
134 * it and add the info to our structure for that particular node.
136 * We verify CRC's along the way for each directory/block/leaf. The entire
137 * node structure is generic, and simply stores the information in a way
138 * that's easy to parse by the protocol interface.
142 * The nodemgr relies heavily on the Driver Model for device callbacks and
143 * driver/device mappings. The old nodemgr used to handle all this itself,
144 * but now we are much simpler because of the LDM.
148 struct hpsb_host
*host
;
149 struct list_head list
;
150 struct task_struct
*thread
;
153 static int nodemgr_bus_match(struct device
* dev
, struct device_driver
* drv
);
154 static int nodemgr_uevent(struct device
*dev
, struct kobj_uevent_env
*env
);
156 struct bus_type ieee1394_bus_type
= {
158 .match
= nodemgr_bus_match
,
161 static void host_cls_release(struct device
*dev
)
163 put_device(&container_of((dev
), struct hpsb_host
, host_dev
)->device
);
166 struct class hpsb_host_class
= {
167 .name
= "ieee1394_host",
168 .dev_release
= host_cls_release
,
171 static void ne_cls_release(struct device
*dev
)
173 put_device(&container_of((dev
), struct node_entry
, node_dev
)->device
);
176 static struct class nodemgr_ne_class
= {
177 .name
= "ieee1394_node",
178 .dev_release
= ne_cls_release
,
181 static void ud_cls_release(struct device
*dev
)
183 put_device(&container_of((dev
), struct unit_directory
, unit_dev
)->device
);
186 /* The name here is only so that unit directory hotplug works with old
187 * style hotplug, which only ever did unit directories anyway.
189 static struct class nodemgr_ud_class
= {
191 .dev_release
= ud_cls_release
,
192 .dev_uevent
= nodemgr_uevent
,
195 static struct hpsb_highlevel nodemgr_highlevel
;
198 static void nodemgr_release_ud(struct device
*dev
)
200 struct unit_directory
*ud
= container_of(dev
, struct unit_directory
, device
);
202 if (ud
->vendor_name_kv
)
203 csr1212_release_keyval(ud
->vendor_name_kv
);
204 if (ud
->model_name_kv
)
205 csr1212_release_keyval(ud
->model_name_kv
);
210 static void nodemgr_release_ne(struct device
*dev
)
212 struct node_entry
*ne
= container_of(dev
, struct node_entry
, device
);
214 if (ne
->vendor_name_kv
)
215 csr1212_release_keyval(ne
->vendor_name_kv
);
221 static void nodemgr_release_host(struct device
*dev
)
223 struct hpsb_host
*host
= container_of(dev
, struct hpsb_host
, device
);
225 csr1212_destroy_csr(host
->csr
.rom
);
230 static int nodemgr_ud_platform_data
;
232 static struct device nodemgr_dev_template_ud
= {
233 .bus
= &ieee1394_bus_type
,
234 .release
= nodemgr_release_ud
,
235 .platform_data
= &nodemgr_ud_platform_data
,
238 static struct device nodemgr_dev_template_ne
= {
239 .bus
= &ieee1394_bus_type
,
240 .release
= nodemgr_release_ne
,
243 /* This dummy driver prevents the host devices from being scanned. We have no
244 * useful drivers for them yet, and there would be a deadlock possible if the
245 * driver core scans the host device while the host's low-level driver (i.e.
246 * the host's parent device) is being removed. */
247 static struct device_driver nodemgr_mid_layer_driver
= {
248 .bus
= &ieee1394_bus_type
,
250 .owner
= THIS_MODULE
,
253 struct device nodemgr_dev_template_host
= {
254 .bus
= &ieee1394_bus_type
,
255 .release
= nodemgr_release_host
,
259 #define fw_attr(class, class_type, field, type, format_string) \
260 static ssize_t fw_show_##class##_##field (struct device *dev, struct device_attribute *attr, char *buf)\
263 class = container_of(dev, class_type, device); \
264 return sprintf(buf, format_string, (type)class->field); \
266 static struct device_attribute dev_attr_##class##_##field = { \
267 .attr = {.name = __stringify(field), .mode = S_IRUGO }, \
268 .show = fw_show_##class##_##field, \
271 #define fw_attr_td(class, class_type, td_kv) \
272 static ssize_t fw_show_##class##_##td_kv (struct device *dev, struct device_attribute *attr, char *buf)\
275 class_type *class = container_of(dev, class_type, device); \
276 len = (class->td_kv->value.leaf.len - 2) * sizeof(quadlet_t); \
278 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_DATA(class->td_kv), \
280 while (buf[len - 1] == '\0') \
286 static struct device_attribute dev_attr_##class##_##td_kv = { \
287 .attr = {.name = __stringify(td_kv), .mode = S_IRUGO }, \
288 .show = fw_show_##class##_##td_kv, \
292 #define fw_drv_attr(field, type, format_string) \
293 static ssize_t fw_drv_show_##field (struct device_driver *drv, char *buf) \
295 struct hpsb_protocol_driver *driver; \
296 driver = container_of(drv, struct hpsb_protocol_driver, driver); \
297 return sprintf(buf, format_string, (type)driver->field);\
299 static struct driver_attribute driver_attr_drv_##field = { \
300 .attr = {.name = __stringify(field), .mode = S_IRUGO }, \
301 .show = fw_drv_show_##field, \
305 static ssize_t
fw_show_ne_bus_options(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
307 struct node_entry
*ne
= container_of(dev
, struct node_entry
, device
);
309 return sprintf(buf
, "IRMC(%d) CMC(%d) ISC(%d) BMC(%d) PMC(%d) GEN(%d) "
310 "LSPD(%d) MAX_REC(%d) MAX_ROM(%d) CYC_CLK_ACC(%d)\n",
312 ne
->busopt
.cmc
, ne
->busopt
.isc
, ne
->busopt
.bmc
,
313 ne
->busopt
.pmc
, ne
->busopt
.generation
, ne
->busopt
.lnkspd
,
316 ne
->busopt
.cyc_clk_acc
);
318 static DEVICE_ATTR(bus_options
,S_IRUGO
,fw_show_ne_bus_options
,NULL
);
321 #ifdef HPSB_DEBUG_TLABELS
322 static ssize_t
fw_show_ne_tlabels_free(struct device
*dev
,
323 struct device_attribute
*attr
, char *buf
)
325 struct node_entry
*ne
= container_of(dev
, struct node_entry
, device
);
327 unsigned long *tp
= ne
->host
->tl_pool
[NODEID_TO_NODE(ne
->nodeid
)].map
;
330 spin_lock_irqsave(&hpsb_tlabel_lock
, flags
);
331 tf
= 64 - bitmap_weight(tp
, 64);
332 spin_unlock_irqrestore(&hpsb_tlabel_lock
, flags
);
334 return sprintf(buf
, "%d\n", tf
);
336 static DEVICE_ATTR(tlabels_free
,S_IRUGO
,fw_show_ne_tlabels_free
,NULL
);
339 static ssize_t
fw_show_ne_tlabels_mask(struct device
*dev
,
340 struct device_attribute
*attr
, char *buf
)
342 struct node_entry
*ne
= container_of(dev
, struct node_entry
, device
);
344 unsigned long *tp
= ne
->host
->tl_pool
[NODEID_TO_NODE(ne
->nodeid
)].map
;
347 spin_lock_irqsave(&hpsb_tlabel_lock
, flags
);
348 #if (BITS_PER_LONG <= 32)
349 tm
= ((u64
)tp
[0] << 32) + tp
[1];
353 spin_unlock_irqrestore(&hpsb_tlabel_lock
, flags
);
355 return sprintf(buf
, "0x%016llx\n", (unsigned long long)tm
);
357 static DEVICE_ATTR(tlabels_mask
, S_IRUGO
, fw_show_ne_tlabels_mask
, NULL
);
358 #endif /* HPSB_DEBUG_TLABELS */
361 static ssize_t
fw_set_ignore_driver(struct device
*dev
, struct device_attribute
*attr
, const char *buf
, size_t count
)
363 struct unit_directory
*ud
= container_of(dev
, struct unit_directory
, device
);
364 int state
= simple_strtoul(buf
, NULL
, 10);
367 ud
->ignore_driver
= 1;
368 device_release_driver(dev
);
369 } else if (state
== 0)
370 ud
->ignore_driver
= 0;
374 static ssize_t
fw_get_ignore_driver(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
376 struct unit_directory
*ud
= container_of(dev
, struct unit_directory
, device
);
378 return sprintf(buf
, "%d\n", ud
->ignore_driver
);
380 static DEVICE_ATTR(ignore_driver
, S_IWUSR
| S_IRUGO
, fw_get_ignore_driver
, fw_set_ignore_driver
);
383 static ssize_t
fw_set_rescan(struct bus_type
*bus
, const char *buf
,
388 if (simple_strtoul(buf
, NULL
, 10) == 1)
389 error
= bus_rescan_devices(&ieee1394_bus_type
);
390 return error
? error
: count
;
392 static ssize_t
fw_get_rescan(struct bus_type
*bus
, char *buf
)
394 return sprintf(buf
, "You can force a rescan of the bus for "
395 "drivers by writing a 1 to this file\n");
397 static BUS_ATTR(rescan
, S_IWUSR
| S_IRUGO
, fw_get_rescan
, fw_set_rescan
);
400 static ssize_t
fw_set_ignore_drivers(struct bus_type
*bus
, const char *buf
, size_t count
)
402 int state
= simple_strtoul(buf
, NULL
, 10);
411 static ssize_t
fw_get_ignore_drivers(struct bus_type
*bus
, char *buf
)
413 return sprintf(buf
, "%d\n", ignore_drivers
);
415 static BUS_ATTR(ignore_drivers
, S_IWUSR
| S_IRUGO
, fw_get_ignore_drivers
, fw_set_ignore_drivers
);
418 struct bus_attribute
*const fw_bus_attrs
[] = {
420 &bus_attr_ignore_drivers
,
425 fw_attr(ne
, struct node_entry
, capabilities
, unsigned int, "0x%06x\n")
426 fw_attr(ne
, struct node_entry
, nodeid
, unsigned int, "0x%04x\n")
428 fw_attr(ne
, struct node_entry
, vendor_id
, unsigned int, "0x%06x\n")
429 fw_attr_td(ne
, struct node_entry
, vendor_name_kv
)
431 fw_attr(ne
, struct node_entry
, guid
, unsigned long long, "0x%016Lx\n")
432 fw_attr(ne
, struct node_entry
, guid_vendor_id
, unsigned int, "0x%06x\n")
433 fw_attr(ne
, struct node_entry
, in_limbo
, int, "%d\n");
435 static struct device_attribute
*const fw_ne_attrs
[] = {
437 &dev_attr_ne_guid_vendor_id
,
438 &dev_attr_ne_capabilities
,
439 &dev_attr_ne_vendor_id
,
441 &dev_attr_bus_options
,
442 #ifdef HPSB_DEBUG_TLABELS
443 &dev_attr_tlabels_free
,
444 &dev_attr_tlabels_mask
,
450 fw_attr(ud
, struct unit_directory
, address
, unsigned long long, "0x%016Lx\n")
451 fw_attr(ud
, struct unit_directory
, length
, int, "%d\n")
452 /* These are all dependent on the value being provided */
453 fw_attr(ud
, struct unit_directory
, vendor_id
, unsigned int, "0x%06x\n")
454 fw_attr(ud
, struct unit_directory
, model_id
, unsigned int, "0x%06x\n")
455 fw_attr(ud
, struct unit_directory
, specifier_id
, unsigned int, "0x%06x\n")
456 fw_attr(ud
, struct unit_directory
, version
, unsigned int, "0x%06x\n")
457 fw_attr_td(ud
, struct unit_directory
, vendor_name_kv
)
458 fw_attr_td(ud
, struct unit_directory
, model_name_kv
)
460 static struct device_attribute
*const fw_ud_attrs
[] = {
461 &dev_attr_ud_address
,
463 &dev_attr_ignore_driver
,
467 fw_attr(host
, struct hpsb_host
, node_count
, int, "%d\n")
468 fw_attr(host
, struct hpsb_host
, selfid_count
, int, "%d\n")
469 fw_attr(host
, struct hpsb_host
, nodes_active
, int, "%d\n")
470 fw_attr(host
, struct hpsb_host
, in_bus_reset
, int, "%d\n")
471 fw_attr(host
, struct hpsb_host
, is_root
, int, "%d\n")
472 fw_attr(host
, struct hpsb_host
, is_cycmst
, int, "%d\n")
473 fw_attr(host
, struct hpsb_host
, is_irm
, int, "%d\n")
474 fw_attr(host
, struct hpsb_host
, is_busmgr
, int, "%d\n")
476 static struct device_attribute
*const fw_host_attrs
[] = {
477 &dev_attr_host_node_count
,
478 &dev_attr_host_selfid_count
,
479 &dev_attr_host_nodes_active
,
480 &dev_attr_host_in_bus_reset
,
481 &dev_attr_host_is_root
,
482 &dev_attr_host_is_cycmst
,
483 &dev_attr_host_is_irm
,
484 &dev_attr_host_is_busmgr
,
488 static ssize_t
fw_show_drv_device_ids(struct device_driver
*drv
, char *buf
)
490 struct hpsb_protocol_driver
*driver
;
491 const struct ieee1394_device_id
*id
;
495 driver
= container_of(drv
, struct hpsb_protocol_driver
, driver
);
496 id
= driver
->id_table
;
500 for (; id
->match_flags
!= 0; id
++) {
503 if (id
->match_flags
& IEEE1394_MATCH_VENDOR_ID
) {
504 length
+= sprintf(scratch
, "vendor_id=0x%06x", id
->vendor_id
);
505 scratch
= buf
+ length
;
509 if (id
->match_flags
& IEEE1394_MATCH_MODEL_ID
) {
510 length
+= sprintf(scratch
, "%smodel_id=0x%06x",
511 need_coma
++ ? "," : "",
513 scratch
= buf
+ length
;
516 if (id
->match_flags
& IEEE1394_MATCH_SPECIFIER_ID
) {
517 length
+= sprintf(scratch
, "%sspecifier_id=0x%06x",
518 need_coma
++ ? "," : "",
520 scratch
= buf
+ length
;
523 if (id
->match_flags
& IEEE1394_MATCH_VERSION
) {
524 length
+= sprintf(scratch
, "%sversion=0x%06x",
525 need_coma
++ ? "," : "",
527 scratch
= buf
+ length
;
538 static DRIVER_ATTR(device_ids
,S_IRUGO
,fw_show_drv_device_ids
,NULL
);
541 fw_drv_attr(name
, const char *, "%s\n")
543 static struct driver_attribute
*const fw_drv_attrs
[] = {
544 &driver_attr_drv_name
,
545 &driver_attr_device_ids
,
549 static void nodemgr_create_drv_files(struct hpsb_protocol_driver
*driver
)
551 struct device_driver
*drv
= &driver
->driver
;
554 for (i
= 0; i
< ARRAY_SIZE(fw_drv_attrs
); i
++)
555 if (driver_create_file(drv
, fw_drv_attrs
[i
]))
559 HPSB_ERR("Failed to add sysfs attribute");
563 static void nodemgr_remove_drv_files(struct hpsb_protocol_driver
*driver
)
565 struct device_driver
*drv
= &driver
->driver
;
568 for (i
= 0; i
< ARRAY_SIZE(fw_drv_attrs
); i
++)
569 driver_remove_file(drv
, fw_drv_attrs
[i
]);
573 static void nodemgr_create_ne_dev_files(struct node_entry
*ne
)
575 struct device
*dev
= &ne
->device
;
578 for (i
= 0; i
< ARRAY_SIZE(fw_ne_attrs
); i
++)
579 if (device_create_file(dev
, fw_ne_attrs
[i
]))
583 HPSB_ERR("Failed to add sysfs attribute");
587 static void nodemgr_create_host_dev_files(struct hpsb_host
*host
)
589 struct device
*dev
= &host
->device
;
592 for (i
= 0; i
< ARRAY_SIZE(fw_host_attrs
); i
++)
593 if (device_create_file(dev
, fw_host_attrs
[i
]))
597 HPSB_ERR("Failed to add sysfs attribute");
601 static struct node_entry
*find_entry_by_nodeid(struct hpsb_host
*host
,
604 static void nodemgr_update_host_dev_links(struct hpsb_host
*host
)
606 struct device
*dev
= &host
->device
;
607 struct node_entry
*ne
;
609 sysfs_remove_link(&dev
->kobj
, "irm_id");
610 sysfs_remove_link(&dev
->kobj
, "busmgr_id");
611 sysfs_remove_link(&dev
->kobj
, "host_id");
613 if ((ne
= find_entry_by_nodeid(host
, host
->irm_id
)) &&
614 sysfs_create_link(&dev
->kobj
, &ne
->device
.kobj
, "irm_id"))
616 if ((ne
= find_entry_by_nodeid(host
, host
->busmgr_id
)) &&
617 sysfs_create_link(&dev
->kobj
, &ne
->device
.kobj
, "busmgr_id"))
619 if ((ne
= find_entry_by_nodeid(host
, host
->node_id
)) &&
620 sysfs_create_link(&dev
->kobj
, &ne
->device
.kobj
, "host_id"))
624 HPSB_ERR("Failed to update sysfs attributes for host %d", host
->id
);
627 static void nodemgr_create_ud_dev_files(struct unit_directory
*ud
)
629 struct device
*dev
= &ud
->device
;
632 for (i
= 0; i
< ARRAY_SIZE(fw_ud_attrs
); i
++)
633 if (device_create_file(dev
, fw_ud_attrs
[i
]))
635 if (ud
->flags
& UNIT_DIRECTORY_SPECIFIER_ID
)
636 if (device_create_file(dev
, &dev_attr_ud_specifier_id
))
638 if (ud
->flags
& UNIT_DIRECTORY_VERSION
)
639 if (device_create_file(dev
, &dev_attr_ud_version
))
641 if (ud
->flags
& UNIT_DIRECTORY_VENDOR_ID
) {
642 if (device_create_file(dev
, &dev_attr_ud_vendor_id
))
644 if (ud
->vendor_name_kv
&&
645 device_create_file(dev
, &dev_attr_ud_vendor_name_kv
))
648 if (ud
->flags
& UNIT_DIRECTORY_MODEL_ID
) {
649 if (device_create_file(dev
, &dev_attr_ud_model_id
))
651 if (ud
->model_name_kv
&&
652 device_create_file(dev
, &dev_attr_ud_model_name_kv
))
657 HPSB_ERR("Failed to add sysfs attribute");
661 static int nodemgr_bus_match(struct device
* dev
, struct device_driver
* drv
)
663 struct hpsb_protocol_driver
*driver
;
664 struct unit_directory
*ud
;
665 const struct ieee1394_device_id
*id
;
667 /* We only match unit directories */
668 if (dev
->platform_data
!= &nodemgr_ud_platform_data
)
671 ud
= container_of(dev
, struct unit_directory
, device
);
672 if (ud
->ne
->in_limbo
|| ud
->ignore_driver
)
675 /* We only match drivers of type hpsb_protocol_driver */
676 if (drv
== &nodemgr_mid_layer_driver
)
679 driver
= container_of(drv
, struct hpsb_protocol_driver
, driver
);
680 id
= driver
->id_table
;
684 for (; id
->match_flags
!= 0; id
++) {
685 if ((id
->match_flags
& IEEE1394_MATCH_VENDOR_ID
) &&
686 id
->vendor_id
!= ud
->vendor_id
)
689 if ((id
->match_flags
& IEEE1394_MATCH_MODEL_ID
) &&
690 id
->model_id
!= ud
->model_id
)
693 if ((id
->match_flags
& IEEE1394_MATCH_SPECIFIER_ID
) &&
694 id
->specifier_id
!= ud
->specifier_id
)
697 if ((id
->match_flags
& IEEE1394_MATCH_VERSION
) &&
698 id
->version
!= ud
->version
)
708 static DEFINE_MUTEX(nodemgr_serialize_remove_uds
);
710 static int match_ne(struct device
*dev
, void *data
)
712 struct unit_directory
*ud
;
713 struct node_entry
*ne
= data
;
715 ud
= container_of(dev
, struct unit_directory
, unit_dev
);
719 static void nodemgr_remove_uds(struct node_entry
*ne
)
722 struct unit_directory
*ud
;
724 /* Use class_find device to iterate the devices. Since this code
725 * may be called from other contexts besides the knodemgrds,
726 * protect it by nodemgr_serialize_remove_uds.
728 mutex_lock(&nodemgr_serialize_remove_uds
);
730 dev
= class_find_device(&nodemgr_ud_class
, NULL
, ne
, match_ne
);
733 ud
= container_of(dev
, struct unit_directory
, unit_dev
);
735 device_unregister(&ud
->unit_dev
);
736 device_unregister(&ud
->device
);
738 mutex_unlock(&nodemgr_serialize_remove_uds
);
742 static void nodemgr_remove_ne(struct node_entry
*ne
)
746 dev
= get_device(&ne
->device
);
750 HPSB_DEBUG("Node removed: ID:BUS[" NODE_BUS_FMT
"] GUID[%016Lx]",
751 NODE_BUS_ARGS(ne
->host
, ne
->nodeid
), (unsigned long long)ne
->guid
);
752 nodemgr_remove_uds(ne
);
754 device_unregister(&ne
->node_dev
);
755 device_unregister(dev
);
760 static int remove_host_dev(struct device
*dev
, void *data
)
762 if (dev
->bus
== &ieee1394_bus_type
)
763 nodemgr_remove_ne(container_of(dev
, struct node_entry
,
768 static void nodemgr_remove_host_dev(struct device
*dev
)
770 device_for_each_child(dev
, NULL
, remove_host_dev
);
771 sysfs_remove_link(&dev
->kobj
, "irm_id");
772 sysfs_remove_link(&dev
->kobj
, "busmgr_id");
773 sysfs_remove_link(&dev
->kobj
, "host_id");
777 static void nodemgr_update_bus_options(struct node_entry
*ne
)
779 #ifdef CONFIG_IEEE1394_VERBOSEDEBUG
780 static const u16 mr
[] = { 4, 64, 1024, 0};
782 quadlet_t busoptions
= be32_to_cpu(ne
->csr
->bus_info_data
[2]);
784 ne
->busopt
.irmc
= (busoptions
>> 31) & 1;
785 ne
->busopt
.cmc
= (busoptions
>> 30) & 1;
786 ne
->busopt
.isc
= (busoptions
>> 29) & 1;
787 ne
->busopt
.bmc
= (busoptions
>> 28) & 1;
788 ne
->busopt
.pmc
= (busoptions
>> 27) & 1;
789 ne
->busopt
.cyc_clk_acc
= (busoptions
>> 16) & 0xff;
790 ne
->busopt
.max_rec
= 1 << (((busoptions
>> 12) & 0xf) + 1);
791 ne
->busopt
.max_rom
= (busoptions
>> 8) & 0x3;
792 ne
->busopt
.generation
= (busoptions
>> 4) & 0xf;
793 ne
->busopt
.lnkspd
= busoptions
& 0x7;
795 HPSB_VERBOSE("NodeMgr: raw=0x%08x irmc=%d cmc=%d isc=%d bmc=%d pmc=%d "
796 "cyc_clk_acc=%d max_rec=%d max_rom=%d gen=%d lspd=%d",
797 busoptions
, ne
->busopt
.irmc
, ne
->busopt
.cmc
,
798 ne
->busopt
.isc
, ne
->busopt
.bmc
, ne
->busopt
.pmc
,
799 ne
->busopt
.cyc_clk_acc
, ne
->busopt
.max_rec
,
800 mr
[ne
->busopt
.max_rom
],
801 ne
->busopt
.generation
, ne
->busopt
.lnkspd
);
805 static struct node_entry
*nodemgr_create_node(octlet_t guid
,
806 struct csr1212_csr
*csr
, struct hpsb_host
*host
,
807 nodeid_t nodeid
, unsigned int generation
)
809 struct node_entry
*ne
;
811 ne
= kzalloc(sizeof(*ne
), GFP_KERNEL
);
817 ne
->generation
= generation
;
818 ne
->needs_probe
= true;
821 ne
->guid_vendor_id
= (guid
>> 40) & 0xffffff;
824 memcpy(&ne
->device
, &nodemgr_dev_template_ne
,
826 ne
->device
.parent
= &host
->device
;
827 dev_set_name(&ne
->device
, "%016Lx", (unsigned long long)(ne
->guid
));
829 ne
->node_dev
.parent
= &ne
->device
;
830 ne
->node_dev
.class = &nodemgr_ne_class
;
831 dev_set_name(&ne
->node_dev
, "%016Lx", (unsigned long long)(ne
->guid
));
833 if (device_register(&ne
->device
))
835 if (device_register(&ne
->node_dev
))
836 goto fail_classdevreg
;
837 get_device(&ne
->device
);
839 nodemgr_create_ne_dev_files(ne
);
841 nodemgr_update_bus_options(ne
);
843 HPSB_DEBUG("%s added: ID:BUS[" NODE_BUS_FMT
"] GUID[%016Lx]",
844 (host
->node_id
== nodeid
) ? "Host" : "Node",
845 NODE_BUS_ARGS(host
, nodeid
), (unsigned long long)guid
);
850 device_unregister(&ne
->device
);
854 HPSB_ERR("Failed to create node ID:BUS[" NODE_BUS_FMT
"] GUID[%016Lx]",
855 NODE_BUS_ARGS(host
, nodeid
), (unsigned long long)guid
);
860 static int match_ne_guid(struct device
*dev
, void *data
)
862 struct node_entry
*ne
;
865 ne
= container_of(dev
, struct node_entry
, node_dev
);
866 return ne
->guid
== *guid
;
869 static struct node_entry
*find_entry_by_guid(u64 guid
)
872 struct node_entry
*ne
;
874 dev
= class_find_device(&nodemgr_ne_class
, NULL
, &guid
, match_ne_guid
);
877 ne
= container_of(dev
, struct node_entry
, node_dev
);
883 struct match_nodeid_parameter
{
884 struct hpsb_host
*host
;
888 static int match_ne_nodeid(struct device
*dev
, void *data
)
891 struct node_entry
*ne
;
892 struct match_nodeid_parameter
*p
= data
;
896 ne
= container_of(dev
, struct node_entry
, node_dev
);
897 if (ne
->host
== p
->host
&& ne
->nodeid
== p
->nodeid
)
903 static struct node_entry
*find_entry_by_nodeid(struct hpsb_host
*host
,
907 struct node_entry
*ne
;
908 struct match_nodeid_parameter p
;
913 dev
= class_find_device(&nodemgr_ne_class
, NULL
, &p
, match_ne_nodeid
);
916 ne
= container_of(dev
, struct node_entry
, node_dev
);
923 static void nodemgr_register_device(struct node_entry
*ne
,
924 struct unit_directory
*ud
, struct device
*parent
)
926 memcpy(&ud
->device
, &nodemgr_dev_template_ud
,
929 ud
->device
.parent
= parent
;
931 dev_set_name(&ud
->device
, "%s-%u", dev_name(&ne
->device
), ud
->id
);
933 ud
->unit_dev
.parent
= &ud
->device
;
934 ud
->unit_dev
.class = &nodemgr_ud_class
;
935 dev_set_name(&ud
->unit_dev
, "%s-%u", dev_name(&ne
->device
), ud
->id
);
937 if (device_register(&ud
->device
))
939 if (device_register(&ud
->unit_dev
))
940 goto fail_classdevreg
;
941 get_device(&ud
->device
);
943 nodemgr_create_ud_dev_files(ud
);
948 device_unregister(&ud
->device
);
950 HPSB_ERR("Failed to create unit %s", dev_name(&ud
->device
));
954 /* This implementation currently only scans the config rom and its
955 * immediate unit directories looking for software_id and
956 * software_version entries, in order to get driver autoloading working. */
957 static struct unit_directory
*nodemgr_process_unit_directory
958 (struct node_entry
*ne
, struct csr1212_keyval
*ud_kv
,
959 unsigned int *id
, struct unit_directory
*parent
)
961 struct unit_directory
*ud
;
962 struct unit_directory
*ud_child
= NULL
;
963 struct csr1212_dentry
*dentry
;
964 struct csr1212_keyval
*kv
;
967 ud
= kzalloc(sizeof(*ud
), GFP_KERNEL
);
969 goto unit_directory_error
;
972 ud
->ignore_driver
= ignore_drivers
;
973 ud
->address
= ud_kv
->offset
+ CSR1212_REGISTER_SPACE_BASE
;
974 ud
->directory_id
= ud
->address
& 0xffffff;
978 /* inherit vendor_id from root directory if none exists in unit dir */
979 ud
->vendor_id
= ne
->vendor_id
;
981 csr1212_for_each_dir_entry(ne
->csr
, kv
, ud_kv
, dentry
) {
982 switch (kv
->key
.id
) {
983 case CSR1212_KV_ID_VENDOR
:
984 if (kv
->key
.type
== CSR1212_KV_TYPE_IMMEDIATE
) {
985 ud
->vendor_id
= kv
->value
.immediate
;
986 ud
->flags
|= UNIT_DIRECTORY_VENDOR_ID
;
990 case CSR1212_KV_ID_MODEL
:
991 ud
->model_id
= kv
->value
.immediate
;
992 ud
->flags
|= UNIT_DIRECTORY_MODEL_ID
;
995 case CSR1212_KV_ID_SPECIFIER_ID
:
996 ud
->specifier_id
= kv
->value
.immediate
;
997 ud
->flags
|= UNIT_DIRECTORY_SPECIFIER_ID
;
1000 case CSR1212_KV_ID_VERSION
:
1001 ud
->version
= kv
->value
.immediate
;
1002 ud
->flags
|= UNIT_DIRECTORY_VERSION
;
1005 case CSR1212_KV_ID_DESCRIPTOR
:
1006 if (kv
->key
.type
== CSR1212_KV_TYPE_LEAF
&&
1007 CSR1212_DESCRIPTOR_LEAF_TYPE(kv
) == 0 &&
1008 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv
) == 0 &&
1009 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv
) == 0 &&
1010 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv
) == 0 &&
1011 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv
) == 0) {
1012 switch (last_key_id
) {
1013 case CSR1212_KV_ID_VENDOR
:
1014 csr1212_keep_keyval(kv
);
1015 ud
->vendor_name_kv
= kv
;
1018 case CSR1212_KV_ID_MODEL
:
1019 csr1212_keep_keyval(kv
);
1020 ud
->model_name_kv
= kv
;
1024 } /* else if (kv->key.type == CSR1212_KV_TYPE_DIRECTORY) ... */
1027 case CSR1212_KV_ID_DEPENDENT_INFO
:
1028 /* Logical Unit Number */
1029 if (kv
->key
.type
== CSR1212_KV_TYPE_IMMEDIATE
) {
1030 if (ud
->flags
& UNIT_DIRECTORY_HAS_LUN
) {
1031 ud_child
= kmemdup(ud
, sizeof(*ud_child
), GFP_KERNEL
);
1033 goto unit_directory_error
;
1034 nodemgr_register_device(ne
, ud_child
, &ne
->device
);
1039 ud
->lun
= kv
->value
.immediate
;
1040 ud
->flags
|= UNIT_DIRECTORY_HAS_LUN
;
1042 /* Logical Unit Directory */
1043 } else if (kv
->key
.type
== CSR1212_KV_TYPE_DIRECTORY
) {
1044 /* This should really be done in SBP2 as this is
1045 * doing SBP2 specific parsing.
1048 /* first register the parent unit */
1049 ud
->flags
|= UNIT_DIRECTORY_HAS_LUN_DIRECTORY
;
1050 if (ud
->device
.bus
!= &ieee1394_bus_type
)
1051 nodemgr_register_device(ne
, ud
, &ne
->device
);
1053 /* process the child unit */
1054 ud_child
= nodemgr_process_unit_directory(ne
, kv
, id
, ud
);
1056 if (ud_child
== NULL
)
1059 /* inherit unspecified values, the driver core picks it up */
1060 if ((ud
->flags
& UNIT_DIRECTORY_MODEL_ID
) &&
1061 !(ud_child
->flags
& UNIT_DIRECTORY_MODEL_ID
))
1063 ud_child
->flags
|= UNIT_DIRECTORY_MODEL_ID
;
1064 ud_child
->model_id
= ud
->model_id
;
1066 if ((ud
->flags
& UNIT_DIRECTORY_SPECIFIER_ID
) &&
1067 !(ud_child
->flags
& UNIT_DIRECTORY_SPECIFIER_ID
))
1069 ud_child
->flags
|= UNIT_DIRECTORY_SPECIFIER_ID
;
1070 ud_child
->specifier_id
= ud
->specifier_id
;
1072 if ((ud
->flags
& UNIT_DIRECTORY_VERSION
) &&
1073 !(ud_child
->flags
& UNIT_DIRECTORY_VERSION
))
1075 ud_child
->flags
|= UNIT_DIRECTORY_VERSION
;
1076 ud_child
->version
= ud
->version
;
1079 /* register the child unit */
1080 ud_child
->flags
|= UNIT_DIRECTORY_LUN_DIRECTORY
;
1081 nodemgr_register_device(ne
, ud_child
, &ud
->device
);
1086 case CSR1212_KV_ID_DIRECTORY_ID
:
1087 ud
->directory_id
= kv
->value
.immediate
;
1093 last_key_id
= kv
->key
.id
;
1096 /* do not process child units here and only if not already registered */
1097 if (!parent
&& ud
->device
.bus
!= &ieee1394_bus_type
)
1098 nodemgr_register_device(ne
, ud
, &ne
->device
);
1102 unit_directory_error
:
1108 static void nodemgr_process_root_directory(struct node_entry
*ne
)
1110 unsigned int ud_id
= 0;
1111 struct csr1212_dentry
*dentry
;
1112 struct csr1212_keyval
*kv
, *vendor_name_kv
= NULL
;
1115 ne
->needs_probe
= false;
1117 csr1212_for_each_dir_entry(ne
->csr
, kv
, ne
->csr
->root_kv
, dentry
) {
1118 switch (kv
->key
.id
) {
1119 case CSR1212_KV_ID_VENDOR
:
1120 ne
->vendor_id
= kv
->value
.immediate
;
1123 case CSR1212_KV_ID_NODE_CAPABILITIES
:
1124 ne
->capabilities
= kv
->value
.immediate
;
1127 case CSR1212_KV_ID_UNIT
:
1128 nodemgr_process_unit_directory(ne
, kv
, &ud_id
, NULL
);
1131 case CSR1212_KV_ID_DESCRIPTOR
:
1132 if (last_key_id
== CSR1212_KV_ID_VENDOR
) {
1133 if (kv
->key
.type
== CSR1212_KV_TYPE_LEAF
&&
1134 CSR1212_DESCRIPTOR_LEAF_TYPE(kv
) == 0 &&
1135 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv
) == 0 &&
1136 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv
) == 0 &&
1137 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv
) == 0 &&
1138 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv
) == 0) {
1139 csr1212_keep_keyval(kv
);
1140 vendor_name_kv
= kv
;
1145 last_key_id
= kv
->key
.id
;
1148 if (ne
->vendor_name_kv
) {
1149 kv
= ne
->vendor_name_kv
;
1150 ne
->vendor_name_kv
= vendor_name_kv
;
1151 csr1212_release_keyval(kv
);
1152 } else if (vendor_name_kv
) {
1153 ne
->vendor_name_kv
= vendor_name_kv
;
1154 if (device_create_file(&ne
->device
,
1155 &dev_attr_ne_vendor_name_kv
) != 0)
1156 HPSB_ERR("Failed to add sysfs attribute");
1160 #ifdef CONFIG_HOTPLUG
1162 static int nodemgr_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
1164 struct unit_directory
*ud
;
1166 /* ieee1394:venNmoNspNverN */
1167 char buf
[8 + 1 + 3 + 8 + 2 + 8 + 2 + 8 + 3 + 8 + 1];
1172 ud
= container_of(dev
, struct unit_directory
, unit_dev
);
1174 if (ud
->ne
->in_limbo
|| ud
->ignore_driver
)
1177 #define PUT_ENVP(fmt,val) \
1179 retval = add_uevent_var(env, fmt, val); \
1184 PUT_ENVP("VENDOR_ID=%06x", ud
->vendor_id
);
1185 PUT_ENVP("MODEL_ID=%06x", ud
->model_id
);
1186 PUT_ENVP("GUID=%016Lx", (unsigned long long)ud
->ne
->guid
);
1187 PUT_ENVP("SPECIFIER_ID=%06x", ud
->specifier_id
);
1188 PUT_ENVP("VERSION=%06x", ud
->version
);
1189 snprintf(buf
, sizeof(buf
), "ieee1394:ven%08Xmo%08Xsp%08Xver%08X",
1194 PUT_ENVP("MODALIAS=%s", buf
);
1203 static int nodemgr_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
1208 #endif /* CONFIG_HOTPLUG */
1211 int __hpsb_register_protocol(struct hpsb_protocol_driver
*drv
,
1212 struct module
*owner
)
1216 drv
->driver
.bus
= &ieee1394_bus_type
;
1217 drv
->driver
.owner
= owner
;
1218 drv
->driver
.name
= drv
->name
;
1220 /* This will cause a probe for devices */
1221 error
= driver_register(&drv
->driver
);
1223 nodemgr_create_drv_files(drv
);
1227 void hpsb_unregister_protocol(struct hpsb_protocol_driver
*driver
)
1229 nodemgr_remove_drv_files(driver
);
1230 /* This will subsequently disconnect all devices that our driver
1231 * is attached to. */
1232 driver_unregister(&driver
->driver
);
1237 * This function updates nodes that were present on the bus before the
1238 * reset and still are after the reset. The nodeid and the config rom
1239 * may have changed, and the drivers managing this device must be
1240 * informed that this device just went through a bus reset, to allow
1241 * the to take whatever actions required.
1243 static void nodemgr_update_node(struct node_entry
*ne
, struct csr1212_csr
*csr
,
1244 nodeid_t nodeid
, unsigned int generation
)
1246 if (ne
->nodeid
!= nodeid
) {
1247 HPSB_DEBUG("Node changed: " NODE_BUS_FMT
" -> " NODE_BUS_FMT
,
1248 NODE_BUS_ARGS(ne
->host
, ne
->nodeid
),
1249 NODE_BUS_ARGS(ne
->host
, nodeid
));
1250 ne
->nodeid
= nodeid
;
1253 if (ne
->busopt
.generation
!= ((be32_to_cpu(csr
->bus_info_data
[2]) >> 4) & 0xf)) {
1254 kfree(ne
->csr
->private);
1255 csr1212_destroy_csr(ne
->csr
);
1258 /* If the node's configrom generation has changed, we
1259 * unregister all the unit directories. */
1260 nodemgr_remove_uds(ne
);
1262 nodemgr_update_bus_options(ne
);
1264 /* Mark the node as new, so it gets re-probed */
1265 ne
->needs_probe
= true;
1267 /* old cache is valid, so update its generation */
1268 struct nodemgr_csr_info
*ci
= ne
->csr
->private;
1269 ci
->generation
= generation
;
1270 /* free the partially filled now unneeded new cache */
1271 kfree(csr
->private);
1272 csr1212_destroy_csr(csr
);
1275 /* Finally, mark the node current */
1277 ne
->generation
= generation
;
1280 device_remove_file(&ne
->device
, &dev_attr_ne_in_limbo
);
1281 ne
->in_limbo
= false;
1283 HPSB_DEBUG("Node reactivated: "
1284 "ID:BUS[" NODE_BUS_FMT
"] GUID[%016Lx]",
1285 NODE_BUS_ARGS(ne
->host
, ne
->nodeid
),
1286 (unsigned long long)ne
->guid
);
1290 static void nodemgr_node_scan_one(struct hpsb_host
*host
,
1291 nodeid_t nodeid
, int generation
)
1293 struct node_entry
*ne
;
1295 struct csr1212_csr
*csr
;
1296 struct nodemgr_csr_info
*ci
;
1299 ci
= kmalloc(sizeof(*ci
), GFP_KERNEL
);
1300 kmemcheck_annotate_bitfield(ci
, flags
);
1305 ci
->nodeid
= nodeid
;
1306 ci
->generation
= generation
;
1308 /* Prepare for speed probe which occurs when reading the ROM */
1309 speed
= &(host
->speed
[NODEID_TO_NODE(nodeid
)]);
1310 if (*speed
> host
->csr
.lnk_spd
)
1311 *speed
= host
->csr
.lnk_spd
;
1312 ci
->speed_unverified
= *speed
> IEEE1394_SPEED_100
;
1314 /* We need to detect when the ConfigROM's generation has changed,
1315 * so we only update the node's info when it needs to be. */
1317 csr
= csr1212_create_csr(&nodemgr_csr_ops
, 5 * sizeof(quadlet_t
), ci
);
1318 if (!csr
|| csr1212_parse_csr(csr
) != CSR1212_SUCCESS
) {
1319 HPSB_ERR("Error parsing configrom for node " NODE_BUS_FMT
,
1320 NODE_BUS_ARGS(host
, nodeid
));
1322 csr1212_destroy_csr(csr
);
1327 if (csr
->bus_info_data
[1] != IEEE1394_BUSID_MAGIC
) {
1328 /* This isn't a 1394 device, but we let it slide. There
1329 * was a report of a device with broken firmware which
1330 * reported '2394' instead of '1394', which is obviously a
1331 * mistake. One would hope that a non-1394 device never
1332 * gets connected to Firewire bus. If someone does, we
1333 * shouldn't be held responsible, so we'll allow it with a
1335 HPSB_WARN("Node " NODE_BUS_FMT
" has invalid busID magic [0x%08x]",
1336 NODE_BUS_ARGS(host
, nodeid
), csr
->bus_info_data
[1]);
1339 guid
= ((u64
)be32_to_cpu(csr
->bus_info_data
[3]) << 32) | be32_to_cpu(csr
->bus_info_data
[4]);
1340 ne
= find_entry_by_guid(guid
);
1342 if (ne
&& ne
->host
!= host
&& ne
->in_limbo
) {
1343 /* Must have moved this device from one host to another */
1344 nodemgr_remove_ne(ne
);
1349 nodemgr_create_node(guid
, csr
, host
, nodeid
, generation
);
1351 nodemgr_update_node(ne
, csr
, nodeid
, generation
);
1355 static void nodemgr_node_scan(struct hpsb_host
*host
, int generation
)
1358 struct selfid
*sid
= (struct selfid
*)host
->topology_map
;
1359 nodeid_t nodeid
= LOCAL_BUS
;
1361 /* Scan each node on the bus */
1362 for (count
= host
->selfid_count
; count
; count
--, sid
++) {
1366 if (!sid
->link_active
) {
1370 nodemgr_node_scan_one(host
, nodeid
++, generation
);
1374 static void nodemgr_pause_ne(struct node_entry
*ne
)
1376 HPSB_DEBUG("Node paused: ID:BUS[" NODE_BUS_FMT
"] GUID[%016Lx]",
1377 NODE_BUS_ARGS(ne
->host
, ne
->nodeid
),
1378 (unsigned long long)ne
->guid
);
1380 ne
->in_limbo
= true;
1381 WARN_ON(device_create_file(&ne
->device
, &dev_attr_ne_in_limbo
));
1384 static int update_pdrv(struct device
*dev
, void *data
)
1386 struct unit_directory
*ud
;
1387 struct device_driver
*drv
;
1388 struct hpsb_protocol_driver
*pdrv
;
1389 struct node_entry
*ne
= data
;
1392 ud
= container_of(dev
, struct unit_directory
, unit_dev
);
1394 drv
= get_driver(ud
->device
.driver
);
1397 pdrv
= container_of(drv
, struct hpsb_protocol_driver
,
1400 down(&ud
->device
.sem
);
1401 error
= pdrv
->update(ud
);
1402 up(&ud
->device
.sem
);
1405 device_release_driver(&ud
->device
);
1413 static void nodemgr_update_pdrv(struct node_entry
*ne
)
1415 class_for_each_device(&nodemgr_ud_class
, NULL
, ne
, update_pdrv
);
1418 /* Write the BROADCAST_CHANNEL as per IEEE1394a 8.3.2.3.11 and 8.4.2.3. This
1419 * seems like an optional service but in the end it is practically mandatory
1420 * as a consequence of these clauses.
1422 * Note that we cannot do a broadcast write to all nodes at once because some
1423 * pre-1394a devices would hang. */
1424 static void nodemgr_irm_write_bc(struct node_entry
*ne
, int generation
)
1426 const u64 bc_addr
= (CSR_REGISTER_BASE
| CSR_BROADCAST_CHANNEL
);
1427 quadlet_t bc_remote
, bc_local
;
1430 if (!ne
->host
->is_irm
|| ne
->generation
!= generation
||
1431 ne
->nodeid
== ne
->host
->node_id
)
1434 bc_local
= cpu_to_be32(ne
->host
->csr
.broadcast_channel
);
1436 /* Check if the register is implemented and 1394a compliant. */
1437 error
= hpsb_read(ne
->host
, ne
->nodeid
, generation
, bc_addr
, &bc_remote
,
1439 if (!error
&& bc_remote
& cpu_to_be32(0x80000000) &&
1440 bc_remote
!= bc_local
)
1441 hpsb_node_write(ne
, bc_addr
, &bc_local
, sizeof(bc_local
));
1445 static void nodemgr_probe_ne(struct hpsb_host
*host
, struct node_entry
*ne
,
1450 if (ne
->host
!= host
|| ne
->in_limbo
)
1453 dev
= get_device(&ne
->device
);
1457 nodemgr_irm_write_bc(ne
, generation
);
1459 /* If "needs_probe", then this is either a new or changed node we
1460 * rescan totally. If the generation matches for an existing node
1461 * (one that existed prior to the bus reset) we send update calls
1462 * down to the drivers. Otherwise, this is a dead node and we
1464 if (ne
->needs_probe
)
1465 nodemgr_process_root_directory(ne
);
1466 else if (ne
->generation
== generation
)
1467 nodemgr_update_pdrv(ne
);
1469 nodemgr_pause_ne(ne
);
1474 struct node_probe_parameter
{
1475 struct hpsb_host
*host
;
1480 static int node_probe(struct device
*dev
, void *data
)
1482 struct node_probe_parameter
*p
= data
;
1483 struct node_entry
*ne
;
1485 if (p
->generation
!= get_hpsb_generation(p
->host
))
1488 ne
= container_of(dev
, struct node_entry
, node_dev
);
1489 if (ne
->needs_probe
== p
->probe_now
)
1490 nodemgr_probe_ne(p
->host
, ne
, p
->generation
);
1494 static int nodemgr_node_probe(struct hpsb_host
*host
, int generation
)
1496 struct node_probe_parameter p
;
1499 p
.generation
= generation
;
1501 * Do some processing of the nodes we've probed. This pulls them
1502 * into the sysfs layer if needed, and can result in processing of
1503 * unit-directories, or just updating the node and it's
1506 * Run updates before probes. Usually, updates are time-critical
1507 * while probes are time-consuming.
1509 * Meanwhile, another bus reset may have happened. In this case we
1510 * skip everything here and let the next bus scan handle it.
1511 * Otherwise we may prematurely remove nodes which are still there.
1513 p
.probe_now
= false;
1514 if (class_for_each_device(&nodemgr_ne_class
, NULL
, &p
, node_probe
) != 0)
1518 if (class_for_each_device(&nodemgr_ne_class
, NULL
, &p
, node_probe
) != 0)
1521 * Now let's tell the bus to rescan our devices. This may seem
1522 * like overhead, but the driver-model core will only scan a
1523 * device for a driver when either the device is added, or when a
1524 * new driver is added. A bus reset is a good reason to rescan
1525 * devices that were there before. For example, an sbp2 device
1526 * may become available for login, if the host that held it was
1529 if (bus_rescan_devices(&ieee1394_bus_type
) != 0)
1530 HPSB_DEBUG("bus_rescan_devices had an error");
1535 static int remove_nodes_in_limbo(struct device
*dev
, void *data
)
1537 struct node_entry
*ne
;
1539 if (dev
->bus
!= &ieee1394_bus_type
)
1542 ne
= container_of(dev
, struct node_entry
, device
);
1544 nodemgr_remove_ne(ne
);
1549 static void nodemgr_remove_nodes_in_limbo(struct hpsb_host
*host
)
1551 device_for_each_child(&host
->device
, NULL
, remove_nodes_in_limbo
);
1554 static int nodemgr_send_resume_packet(struct hpsb_host
*host
)
1556 struct hpsb_packet
*packet
;
1557 int error
= -ENOMEM
;
1559 packet
= hpsb_make_phypacket(host
,
1560 EXTPHYPACKET_TYPE_RESUME
|
1561 NODEID_TO_NODE(host
->node_id
) << PHYPACKET_PORT_SHIFT
);
1563 packet
->no_waiter
= 1;
1564 packet
->generation
= get_hpsb_generation(host
);
1565 error
= hpsb_send_packet(packet
);
1568 HPSB_WARN("fw-host%d: Failed to broadcast resume packet",
1573 /* Perform a few high-level IRM responsibilities. */
1574 static int nodemgr_do_irm_duties(struct hpsb_host
*host
, int cycles
)
1578 /* if irm_id == -1 then there is no IRM on this bus */
1579 if (!host
->is_irm
|| host
->irm_id
== (nodeid_t
)-1)
1582 /* We are a 1394a-2000 compliant IRM. Set the validity bit. */
1583 host
->csr
.broadcast_channel
|= 0x40000000;
1585 /* If there is no bus manager then we should set the root node's
1586 * force_root bit to promote bus stability per the 1394
1587 * spec. (8.4.2.6) */
1588 if (host
->busmgr_id
== 0xffff && host
->node_count
> 1)
1590 u16 root_node
= host
->node_count
- 1;
1592 /* get cycle master capability flag from root node */
1593 if (host
->is_cycmst
||
1594 (!hpsb_read(host
, LOCAL_BUS
| root_node
, get_hpsb_generation(host
),
1595 (CSR_REGISTER_BASE
+ CSR_CONFIG_ROM
+ 2 * sizeof(quadlet_t
)),
1596 &bc
, sizeof(quadlet_t
)) &&
1597 be32_to_cpu(bc
) & 1 << CSR_CMC_SHIFT
))
1598 hpsb_send_phy_config(host
, root_node
, -1);
1600 HPSB_DEBUG("The root node is not cycle master capable; "
1601 "selecting a new root node and resetting...");
1604 /* Oh screw it! Just leave the bus as it is */
1605 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1609 hpsb_send_phy_config(host
, NODEID_TO_NODE(host
->node_id
), -1);
1610 hpsb_reset_bus(host
, LONG_RESET_FORCE_ROOT
);
1616 /* Some devices suspend their ports while being connected to an inactive
1617 * host adapter, i.e. if connected before the low-level driver is
1618 * loaded. They become visible either when physically unplugged and
1619 * replugged, or when receiving a resume packet. Send one once. */
1620 if (!host
->resume_packet_sent
&& !nodemgr_send_resume_packet(host
))
1621 host
->resume_packet_sent
= 1;
1626 /* We need to ensure that if we are not the IRM, that the IRM node is capable of
1627 * everything we can do, otherwise issue a bus reset and try to become the IRM
1629 static int nodemgr_check_irm_capability(struct hpsb_host
*host
, int cycles
)
1634 if (hpsb_disable_irm
|| host
->is_irm
)
1637 status
= hpsb_read(host
, LOCAL_BUS
| (host
->irm_id
),
1638 get_hpsb_generation(host
),
1639 (CSR_REGISTER_BASE
| CSR_BROADCAST_CHANNEL
),
1640 &bc
, sizeof(quadlet_t
));
1642 if (status
< 0 || !(be32_to_cpu(bc
) & 0x80000000)) {
1643 /* The current irm node does not have a valid BROADCAST_CHANNEL
1644 * register and we do, so reset the bus with force_root set */
1645 HPSB_DEBUG("Current remote IRM is not 1394a-2000 compliant, resetting...");
1648 /* Oh screw it! Just leave the bus as it is */
1649 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1653 hpsb_send_phy_config(host
, NODEID_TO_NODE(host
->node_id
), -1);
1654 hpsb_reset_bus(host
, LONG_RESET_FORCE_ROOT
);
1662 static int nodemgr_host_thread(void *data
)
1664 struct hpsb_host
*host
= data
;
1665 unsigned int g
, generation
= 0;
1666 int i
, reset_cycles
= 0;
1669 /* Setup our device-model entries */
1670 nodemgr_create_host_dev_files(host
);
1673 /* Sleep until next bus reset */
1674 set_current_state(TASK_INTERRUPTIBLE
);
1675 if (get_hpsb_generation(host
) == generation
&&
1676 !kthread_should_stop())
1678 __set_current_state(TASK_RUNNING
);
1680 /* Thread may have been woken up to freeze or to exit */
1681 if (try_to_freeze())
1683 if (kthread_should_stop())
1686 /* Pause for 1/4 second in 1/16 second intervals,
1687 * to make sure things settle down. */
1688 g
= get_hpsb_generation(host
);
1689 for (i
= 0; i
< 4 ; i
++) {
1690 msleep_interruptible(63);
1692 if (kthread_should_stop())
1695 /* Now get the generation in which the node ID's we collect
1696 * are valid. During the bus scan we will use this generation
1697 * for the read transactions, so that if another reset occurs
1698 * during the scan the transactions will fail instead of
1699 * returning bogus data. */
1700 generation
= get_hpsb_generation(host
);
1702 /* If we get a reset before we are done waiting, then
1703 * start the waiting over again */
1704 if (generation
!= g
)
1705 g
= generation
, i
= 0;
1708 if (!nodemgr_check_irm_capability(host
, reset_cycles
) ||
1709 !nodemgr_do_irm_duties(host
, reset_cycles
)) {
1715 /* Scan our nodes to get the bus options and create node
1716 * entries. This does not do the sysfs stuff, since that
1717 * would trigger uevents and such, which is a bad idea at
1719 nodemgr_node_scan(host
, generation
);
1721 /* This actually does the full probe, with sysfs
1723 if (!nodemgr_node_probe(host
, generation
))
1726 /* Update some of our sysfs symlinks */
1727 nodemgr_update_host_dev_links(host
);
1729 /* Sleep 3 seconds */
1730 for (i
= 3000/200; i
; i
--) {
1731 msleep_interruptible(200);
1733 if (kthread_should_stop())
1736 if (generation
!= get_hpsb_generation(host
))
1739 /* Remove nodes which are gone, unless a bus reset happened */
1741 nodemgr_remove_nodes_in_limbo(host
);
1744 HPSB_VERBOSE("NodeMgr: Exiting thread");
1748 struct per_host_parameter
{
1750 int (*cb
)(struct hpsb_host
*, void *);
1753 static int per_host(struct device
*dev
, void *data
)
1755 struct hpsb_host
*host
;
1756 struct per_host_parameter
*p
= data
;
1758 host
= container_of(dev
, struct hpsb_host
, host_dev
);
1759 return p
->cb(host
, p
->data
);
1763 * nodemgr_for_each_host - call a function for each IEEE 1394 host
1764 * @data: an address to supply to the callback
1765 * @cb: function to call for each host
1767 * Iterate the hosts, calling a given function with supplied data for each host.
1768 * If the callback fails on a host, i.e. if it returns a non-zero value, the
1769 * iteration is stopped.
1771 * Return value: 0 on success, non-zero on failure (same as returned by last run
1774 int nodemgr_for_each_host(void *data
, int (*cb
)(struct hpsb_host
*, void *))
1776 struct per_host_parameter p
;
1780 return class_for_each_device(&hpsb_host_class
, NULL
, &p
, per_host
);
1783 /* The following two convenience functions use a struct node_entry
1784 * for addressing a node on the bus. They are intended for use by any
1785 * process context, not just the nodemgr thread, so we need to be a
1786 * little careful when reading out the node ID and generation. The
1787 * thing that can go wrong is that we get the node ID, then a bus
1788 * reset occurs, and then we read the generation. The node ID is
1789 * possibly invalid, but the generation is current, and we end up
1790 * sending a packet to a the wrong node.
1792 * The solution is to make sure we read the generation first, so that
1793 * if a reset occurs in the process, we end up with a stale generation
1794 * and the transactions will fail instead of silently using wrong node
1799 * hpsb_node_fill_packet - fill some destination information into a packet
1800 * @ne: destination node
1801 * @packet: packet to fill in
1803 * This will fill in the given, pre-initialised hpsb_packet with the current
1804 * information from the node entry (host, node ID, bus generation number).
1806 void hpsb_node_fill_packet(struct node_entry
*ne
, struct hpsb_packet
*packet
)
1808 packet
->host
= ne
->host
;
1809 packet
->generation
= ne
->generation
;
1811 packet
->node_id
= ne
->nodeid
;
1814 int hpsb_node_write(struct node_entry
*ne
, u64 addr
,
1815 quadlet_t
*buffer
, size_t length
)
1817 unsigned int generation
= ne
->generation
;
1820 return hpsb_write(ne
->host
, ne
->nodeid
, generation
,
1821 addr
, buffer
, length
);
1824 static void nodemgr_add_host(struct hpsb_host
*host
)
1826 struct host_info
*hi
;
1828 hi
= hpsb_create_hostinfo(&nodemgr_highlevel
, host
, sizeof(*hi
));
1830 HPSB_ERR("NodeMgr: out of memory in add host");
1834 hi
->thread
= kthread_run(nodemgr_host_thread
, host
, "knodemgrd_%d",
1836 if (IS_ERR(hi
->thread
)) {
1837 HPSB_ERR("NodeMgr: cannot start thread for host %d", host
->id
);
1838 hpsb_destroy_hostinfo(&nodemgr_highlevel
, host
);
1842 static void nodemgr_host_reset(struct hpsb_host
*host
)
1844 struct host_info
*hi
= hpsb_get_hostinfo(&nodemgr_highlevel
, host
);
1847 HPSB_VERBOSE("NodeMgr: Processing reset for host %d", host
->id
);
1848 wake_up_process(hi
->thread
);
1852 static void nodemgr_remove_host(struct hpsb_host
*host
)
1854 struct host_info
*hi
= hpsb_get_hostinfo(&nodemgr_highlevel
, host
);
1857 kthread_stop(hi
->thread
);
1858 nodemgr_remove_host_dev(&host
->device
);
1862 static struct hpsb_highlevel nodemgr_highlevel
= {
1863 .name
= "Node manager",
1864 .add_host
= nodemgr_add_host
,
1865 .host_reset
= nodemgr_host_reset
,
1866 .remove_host
= nodemgr_remove_host
,
1869 int init_ieee1394_nodemgr(void)
1873 error
= class_register(&nodemgr_ne_class
);
1876 error
= class_register(&nodemgr_ud_class
);
1879 error
= driver_register(&nodemgr_mid_layer_driver
);
1882 /* This driver is not used if nodemgr is off (disable_nodemgr=1). */
1883 nodemgr_dev_template_host
.driver
= &nodemgr_mid_layer_driver
;
1885 hpsb_register_highlevel(&nodemgr_highlevel
);
1889 class_unregister(&nodemgr_ud_class
);
1891 class_unregister(&nodemgr_ne_class
);
1896 void cleanup_ieee1394_nodemgr(void)
1898 hpsb_unregister_highlevel(&nodemgr_highlevel
);
1899 driver_unregister(&nodemgr_mid_layer_driver
);
1900 class_unregister(&nodemgr_ud_class
);
1901 class_unregister(&nodemgr_ne_class
);