blob: 2953aebf4ef1ea49e3bc52fbacbf35718a2c5591 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Stefan Richter09a9a452006-06-25 05:46:44 -070011#include <linux/bitmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/list.h>
14#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/delay.h>
Stefan Richterd2f119f2006-07-03 12:02:35 -040016#include <linux/kthread.h>
Stefan Richter8252bbb2006-11-22 21:09:42 +010017#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/moduleparam.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080019#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/atomic.h>
21
Stefan Richterde4394f2006-07-03 12:02:29 -040022#include "csr.h"
23#include "highlevel.h"
24#include "hosts.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "ieee1394.h"
26#include "ieee1394_core.h"
Stefan Richterde4394f2006-07-03 12:02:29 -040027#include "ieee1394_hotplug.h"
28#include "ieee1394_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "ieee1394_transactions.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "nodemgr.h"
31
Ben Collins1934b8b2005-07-09 20:01:23 -040032static int ignore_drivers;
Stefan Richter3a632fe2006-07-03 12:02:35 -040033module_param(ignore_drivers, int, S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034MODULE_PARM_DESC(ignore_drivers, "Disable automatic probing for drivers.");
35
36struct nodemgr_csr_info {
37 struct hpsb_host *host;
38 nodeid_t nodeid;
39 unsigned int generation;
Ben Collins647dcb52006-06-12 18:12:37 -040040 unsigned int speed_unverified:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
43
44static char *nodemgr_find_oui_name(int oui)
45{
46#ifdef CONFIG_IEEE1394_OUI_DB
47 extern struct oui_list_struct {
48 int oui;
49 char *name;
50 } oui_list[];
51 int i;
52
53 for (i = 0; oui_list[i].name; i++)
54 if (oui_list[i].oui == oui)
55 return oui_list[i].name;
56#endif
57 return NULL;
58}
59
Ben Collins647dcb52006-06-12 18:12:37 -040060/*
61 * Correct the speed map entry. This is necessary
62 * - for nodes with link speed < phy speed,
63 * - for 1394b nodes with negotiated phy port speed < IEEE1394_SPEED_MAX.
64 * A possible speed is determined by trial and error, using quadlet reads.
65 */
66static int nodemgr_check_speed(struct nodemgr_csr_info *ci, u64 addr,
67 quadlet_t *buffer)
68{
69 quadlet_t q;
70 u8 i, *speed, old_speed, good_speed;
Stefan Richter7fdfc902006-10-21 01:23:56 +020071 int error;
Ben Collins647dcb52006-06-12 18:12:37 -040072
Stefan Richterd7530a12006-07-03 00:58:01 +020073 speed = &(ci->host->speed[NODEID_TO_NODE(ci->nodeid)]);
Ben Collins647dcb52006-06-12 18:12:37 -040074 old_speed = *speed;
75 good_speed = IEEE1394_SPEED_MAX + 1;
76
77 /* Try every speed from S100 to old_speed.
78 * If we did it the other way around, a too low speed could be caught
79 * if the retry succeeded for some other reason, e.g. because the link
80 * just finished its initialization. */
81 for (i = IEEE1394_SPEED_100; i <= old_speed; i++) {
82 *speed = i;
Stefan Richter7fdfc902006-10-21 01:23:56 +020083 error = hpsb_read(ci->host, ci->nodeid, ci->generation, addr,
84 &q, sizeof(quadlet_t));
85 if (error)
Ben Collins647dcb52006-06-12 18:12:37 -040086 break;
87 *buffer = q;
88 good_speed = i;
89 }
90 if (good_speed <= IEEE1394_SPEED_MAX) {
91 HPSB_DEBUG("Speed probe of node " NODE_BUS_FMT " yields %s",
92 NODE_BUS_ARGS(ci->host, ci->nodeid),
93 hpsb_speedto_str[good_speed]);
94 *speed = good_speed;
95 ci->speed_unverified = 0;
96 return 0;
97 }
98 *speed = old_speed;
Stefan Richter7fdfc902006-10-21 01:23:56 +020099 return error;
Ben Collins647dcb52006-06-12 18:12:37 -0400100}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102static int nodemgr_bus_read(struct csr1212_csr *csr, u64 addr, u16 length,
Stefan Richterd41bba22006-11-22 21:28:19 +0100103 void *buffer, void *__ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 struct nodemgr_csr_info *ci = (struct nodemgr_csr_info*)__ci;
Stefan Richter7fdfc902006-10-21 01:23:56 +0200106 int i, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Jody McIntyree31a1272005-09-30 11:59:09 -0700108 for (i = 1; ; i++) {
Stefan Richter7fdfc902006-10-21 01:23:56 +0200109 error = hpsb_read(ci->host, ci->nodeid, ci->generation, addr,
110 buffer, length);
111 if (!error) {
Ben Collins647dcb52006-06-12 18:12:37 -0400112 ci->speed_unverified = 0;
113 break;
114 }
115 /* Give up after 3rd failure. */
116 if (i == 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 break;
118
Ben Collins647dcb52006-06-12 18:12:37 -0400119 /* The ieee1394_core guessed the node's speed capability from
120 * the self ID. Check whether a lower speed works. */
121 if (ci->speed_unverified && length == sizeof(quadlet_t)) {
Stefan Richter7fdfc902006-10-21 01:23:56 +0200122 error = nodemgr_check_speed(ci, addr, buffer);
123 if (!error)
Ben Collins647dcb52006-06-12 18:12:37 -0400124 break;
125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (msleep_interruptible(334))
127 return -EINTR;
128 }
Stefan Richter7fdfc902006-10-21 01:23:56 +0200129 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132static int nodemgr_get_max_rom(quadlet_t *bus_info_data, void *__ci)
133{
134 return (CSR1212_BE32_TO_CPU(bus_info_data[2]) >> 8) & 0x3;
135}
136
137static struct csr1212_bus_ops nodemgr_csr_ops = {
138 .bus_read = nodemgr_bus_read,
139 .get_max_rom = nodemgr_get_max_rom
140};
141
142
143/*
144 * Basically what we do here is start off retrieving the bus_info block.
145 * From there will fill in some info about the node, verify it is of IEEE
146 * 1394 type, and that the crc checks out ok. After that we start off with
147 * the root directory, and subdirectories. To do this, we retrieve the
148 * quadlet header for a directory, find out the length, and retrieve the
149 * complete directory entry (be it a leaf or a directory). We then process
150 * it and add the info to our structure for that particular node.
151 *
152 * We verify CRC's along the way for each directory/block/leaf. The entire
153 * node structure is generic, and simply stores the information in a way
154 * that's easy to parse by the protocol interface.
155 */
156
157/*
158 * The nodemgr relies heavily on the Driver Model for device callbacks and
159 * driver/device mappings. The old nodemgr used to handle all this itself,
160 * but now we are much simpler because of the LDM.
161 */
162
Stefan Richtercab8d152006-07-03 12:02:36 -0400163static DEFINE_MUTEX(nodemgr_serialize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165struct host_info {
166 struct hpsb_host *host;
167 struct list_head list;
Stefan Richterd2f119f2006-07-03 12:02:35 -0400168 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169};
170
171static int nodemgr_bus_match(struct device * dev, struct device_driver * drv);
Kay Sievers312c0042005-11-16 09:00:00 +0100172static int nodemgr_uevent(struct class_device *cdev, char **envp, int num_envp,
173 char *buffer, int buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static void nodemgr_resume_ne(struct node_entry *ne);
175static void nodemgr_remove_ne(struct node_entry *ne);
176static struct node_entry *find_entry_by_guid(u64 guid);
177
178struct bus_type ieee1394_bus_type = {
179 .name = "ieee1394",
180 .match = nodemgr_bus_match,
181};
182
183static void host_cls_release(struct class_device *class_dev)
184{
185 put_device(&container_of((class_dev), struct hpsb_host, class_dev)->device);
186}
187
188struct class hpsb_host_class = {
189 .name = "ieee1394_host",
190 .release = host_cls_release,
191};
192
193static void ne_cls_release(struct class_device *class_dev)
194{
195 put_device(&container_of((class_dev), struct node_entry, class_dev)->device);
196}
197
198static struct class nodemgr_ne_class = {
199 .name = "ieee1394_node",
200 .release = ne_cls_release,
201};
202
203static void ud_cls_release(struct class_device *class_dev)
204{
205 put_device(&container_of((class_dev), struct unit_directory, class_dev)->device);
206}
207
208/* The name here is only so that unit directory hotplug works with old
209 * style hotplug, which only ever did unit directories anyway. */
210static struct class nodemgr_ud_class = {
211 .name = "ieee1394",
212 .release = ud_cls_release,
Kay Sievers312c0042005-11-16 09:00:00 +0100213 .uevent = nodemgr_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
216static struct hpsb_highlevel nodemgr_highlevel;
217
218
219static void nodemgr_release_ud(struct device *dev)
220{
221 struct unit_directory *ud = container_of(dev, struct unit_directory, device);
222
223 if (ud->vendor_name_kv)
224 csr1212_release_keyval(ud->vendor_name_kv);
225 if (ud->model_name_kv)
226 csr1212_release_keyval(ud->model_name_kv);
227
228 kfree(ud);
229}
230
231static void nodemgr_release_ne(struct device *dev)
232{
233 struct node_entry *ne = container_of(dev, struct node_entry, device);
234
235 if (ne->vendor_name_kv)
236 csr1212_release_keyval(ne->vendor_name_kv);
237
238 kfree(ne);
239}
240
241
242static void nodemgr_release_host(struct device *dev)
243{
244 struct hpsb_host *host = container_of(dev, struct hpsb_host, device);
245
246 csr1212_destroy_csr(host->csr.rom);
247
248 kfree(host);
249}
250
251static int nodemgr_ud_platform_data;
252
253static struct device nodemgr_dev_template_ud = {
254 .bus = &ieee1394_bus_type,
255 .release = nodemgr_release_ud,
256 .platform_data = &nodemgr_ud_platform_data,
257};
258
259static struct device nodemgr_dev_template_ne = {
260 .bus = &ieee1394_bus_type,
261 .release = nodemgr_release_ne,
262};
263
Stefan Richter8252bbb2006-11-22 21:09:42 +0100264/* This dummy driver prevents the host devices from being scanned. We have no
265 * useful drivers for them yet, and there would be a deadlock possible if the
266 * driver core scans the host device while the host's low-level driver (i.e.
267 * the host's parent device) is being removed. */
268static struct device_driver nodemgr_mid_layer_driver = {
269 .bus = &ieee1394_bus_type,
270 .name = "nodemgr",
271 .owner = THIS_MODULE,
272};
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274struct device nodemgr_dev_template_host = {
275 .bus = &ieee1394_bus_type,
276 .release = nodemgr_release_host,
Stefan Richter8252bbb2006-11-22 21:09:42 +0100277 .driver = &nodemgr_mid_layer_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278};
279
280
281#define fw_attr(class, class_type, field, type, format_string) \
Yani Ioannoue404e272005-05-17 06:42:58 -0400282static ssize_t fw_show_##class##_##field (struct device *dev, struct device_attribute *attr, char *buf)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{ \
284 class_type *class; \
285 class = container_of(dev, class_type, device); \
286 return sprintf(buf, format_string, (type)class->field); \
287} \
288static struct device_attribute dev_attr_##class##_##field = { \
289 .attr = {.name = __stringify(field), .mode = S_IRUGO }, \
290 .show = fw_show_##class##_##field, \
291};
292
293#define fw_attr_td(class, class_type, td_kv) \
Yani Ioannoue404e272005-05-17 06:42:58 -0400294static ssize_t fw_show_##class##_##td_kv (struct device *dev, struct device_attribute *attr, char *buf)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{ \
296 int len; \
297 class_type *class = container_of(dev, class_type, device); \
298 len = (class->td_kv->value.leaf.len - 2) * sizeof(quadlet_t); \
299 memcpy(buf, \
300 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_DATA(class->td_kv), \
301 len); \
302 while ((buf + len - 1) == '\0') \
303 len--; \
304 buf[len++] = '\n'; \
305 buf[len] = '\0'; \
306 return len; \
307} \
308static struct device_attribute dev_attr_##class##_##td_kv = { \
309 .attr = {.name = __stringify(td_kv), .mode = S_IRUGO }, \
310 .show = fw_show_##class##_##td_kv, \
311};
312
313
314#define fw_drv_attr(field, type, format_string) \
315static ssize_t fw_drv_show_##field (struct device_driver *drv, char *buf) \
316{ \
317 struct hpsb_protocol_driver *driver; \
318 driver = container_of(drv, struct hpsb_protocol_driver, driver); \
319 return sprintf(buf, format_string, (type)driver->field);\
320} \
321static struct driver_attribute driver_attr_drv_##field = { \
Stefan Richterd41bba22006-11-22 21:28:19 +0100322 .attr = {.name = __stringify(field), .mode = S_IRUGO }, \
323 .show = fw_drv_show_##field, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324};
325
326
Yani Ioannoue404e272005-05-17 06:42:58 -0400327static ssize_t fw_show_ne_bus_options(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct node_entry *ne = container_of(dev, struct node_entry, device);
330
331 return sprintf(buf, "IRMC(%d) CMC(%d) ISC(%d) BMC(%d) PMC(%d) GEN(%d) "
332 "LSPD(%d) MAX_REC(%d) MAX_ROM(%d) CYC_CLK_ACC(%d)\n",
333 ne->busopt.irmc,
334 ne->busopt.cmc, ne->busopt.isc, ne->busopt.bmc,
335 ne->busopt.pmc, ne->busopt.generation, ne->busopt.lnkspd,
336 ne->busopt.max_rec,
337 ne->busopt.max_rom,
338 ne->busopt.cyc_clk_acc);
339}
340static DEVICE_ATTR(bus_options,S_IRUGO,fw_show_ne_bus_options,NULL);
341
342
Stefan Richter99519032006-07-02 14:17:00 +0200343#ifdef HPSB_DEBUG_TLABELS
344static ssize_t fw_show_ne_tlabels_free(struct device *dev,
345 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 struct node_entry *ne = container_of(dev, struct node_entry, device);
Stefan Richter99519032006-07-02 14:17:00 +0200348 unsigned long flags;
349 unsigned long *tp = ne->host->tl_pool[NODEID_TO_NODE(ne->nodeid)].map;
350 int tf;
351
352 spin_lock_irqsave(&hpsb_tlabel_lock, flags);
353 tf = 64 - bitmap_weight(tp, 64);
354 spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
355
356 return sprintf(buf, "%d\n", tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358static DEVICE_ATTR(tlabels_free,S_IRUGO,fw_show_ne_tlabels_free,NULL);
359
360
Stefan Richter99519032006-07-02 14:17:00 +0200361static ssize_t fw_show_ne_tlabels_mask(struct device *dev,
362 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 struct node_entry *ne = container_of(dev, struct node_entry, device);
Stefan Richter99519032006-07-02 14:17:00 +0200365 unsigned long flags;
366 unsigned long *tp = ne->host->tl_pool[NODEID_TO_NODE(ne->nodeid)].map;
367 u64 tm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Stefan Richter99519032006-07-02 14:17:00 +0200369 spin_lock_irqsave(&hpsb_tlabel_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370#if (BITS_PER_LONG <= 32)
Stefan Richter99519032006-07-02 14:17:00 +0200371 tm = ((u64)tp[0] << 32) + tp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372#else
Stefan Richter99519032006-07-02 14:17:00 +0200373 tm = tp[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#endif
Stefan Richter99519032006-07-02 14:17:00 +0200375 spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
376
Randy Dunlap7f588032006-10-23 21:44:36 -0700377 return sprintf(buf, "0x%016llx\n", (unsigned long long)tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379static DEVICE_ATTR(tlabels_mask, S_IRUGO, fw_show_ne_tlabels_mask, NULL);
Stefan Richter99519032006-07-02 14:17:00 +0200380#endif /* HPSB_DEBUG_TLABELS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382
Yani Ioannoue404e272005-05-17 06:42:58 -0400383static ssize_t fw_set_ignore_driver(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 struct unit_directory *ud = container_of(dev, struct unit_directory, device);
386 int state = simple_strtoul(buf, NULL, 10);
387
388 if (state == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 ud->ignore_driver = 1;
Stefan Richterb07375b2006-10-22 16:16:27 +0200390 down_write(&ieee1394_bus_type.subsys.rwsem);
391 device_release_driver(dev);
392 up_write(&ieee1394_bus_type.subsys.rwsem);
393 } else if (state == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 ud->ignore_driver = 0;
395
396 return count;
397}
Yani Ioannoue404e272005-05-17 06:42:58 -0400398static ssize_t fw_get_ignore_driver(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 struct unit_directory *ud = container_of(dev, struct unit_directory, device);
401
402 return sprintf(buf, "%d\n", ud->ignore_driver);
403}
404static DEVICE_ATTR(ignore_driver, S_IWUSR | S_IRUGO, fw_get_ignore_driver, fw_set_ignore_driver);
405
406
407static ssize_t fw_set_destroy_node(struct bus_type *bus, const char *buf, size_t count)
408{
409 struct node_entry *ne;
410 u64 guid = (u64)simple_strtoull(buf, NULL, 16);
411
412 ne = find_entry_by_guid(guid);
413
414 if (ne == NULL || !ne->in_limbo)
415 return -EINVAL;
416
417 nodemgr_remove_ne(ne);
418
419 return count;
420}
421static ssize_t fw_get_destroy_node(struct bus_type *bus, char *buf)
422{
423 return sprintf(buf, "You can destroy in_limbo nodes by writing their GUID to this file\n");
424}
425static BUS_ATTR(destroy_node, S_IWUSR | S_IRUGO, fw_get_destroy_node, fw_set_destroy_node);
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200428static ssize_t fw_set_rescan(struct bus_type *bus, const char *buf,
429 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200431 int error = 0;
432
Stefan Richter40fd89c2006-07-03 12:02:34 -0400433 if (simple_strtoul(buf, NULL, 10) == 1)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200434 error = bus_rescan_devices(&ieee1394_bus_type);
435 return error ? error : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437static ssize_t fw_get_rescan(struct bus_type *bus, char *buf)
438{
439 return sprintf(buf, "You can force a rescan of the bus for "
440 "drivers by writing a 1 to this file\n");
441}
442static BUS_ATTR(rescan, S_IWUSR | S_IRUGO, fw_get_rescan, fw_set_rescan);
443
444
445static ssize_t fw_set_ignore_drivers(struct bus_type *bus, const char *buf, size_t count)
446{
447 int state = simple_strtoul(buf, NULL, 10);
448
449 if (state == 1)
450 ignore_drivers = 1;
Stefan Richterb07375b2006-10-22 16:16:27 +0200451 else if (state == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 ignore_drivers = 0;
453
454 return count;
455}
456static ssize_t fw_get_ignore_drivers(struct bus_type *bus, char *buf)
457{
458 return sprintf(buf, "%d\n", ignore_drivers);
459}
460static BUS_ATTR(ignore_drivers, S_IWUSR | S_IRUGO, fw_get_ignore_drivers, fw_set_ignore_drivers);
461
462
463struct bus_attribute *const fw_bus_attrs[] = {
464 &bus_attr_destroy_node,
465 &bus_attr_rescan,
466 &bus_attr_ignore_drivers,
467 NULL
468};
469
470
471fw_attr(ne, struct node_entry, capabilities, unsigned int, "0x%06x\n")
472fw_attr(ne, struct node_entry, nodeid, unsigned int, "0x%04x\n")
473
474fw_attr(ne, struct node_entry, vendor_id, unsigned int, "0x%06x\n")
475fw_attr_td(ne, struct node_entry, vendor_name_kv)
476fw_attr(ne, struct node_entry, vendor_oui, const char *, "%s\n")
477
478fw_attr(ne, struct node_entry, guid, unsigned long long, "0x%016Lx\n")
479fw_attr(ne, struct node_entry, guid_vendor_id, unsigned int, "0x%06x\n")
480fw_attr(ne, struct node_entry, guid_vendor_oui, const char *, "%s\n")
481fw_attr(ne, struct node_entry, in_limbo, int, "%d\n");
482
483static struct device_attribute *const fw_ne_attrs[] = {
484 &dev_attr_ne_guid,
485 &dev_attr_ne_guid_vendor_id,
486 &dev_attr_ne_capabilities,
487 &dev_attr_ne_vendor_id,
488 &dev_attr_ne_nodeid,
489 &dev_attr_bus_options,
Stefan Richter99519032006-07-02 14:17:00 +0200490#ifdef HPSB_DEBUG_TLABELS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 &dev_attr_tlabels_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 &dev_attr_tlabels_mask,
Stefan Richter99519032006-07-02 14:17:00 +0200493#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494};
495
496
497
498fw_attr(ud, struct unit_directory, address, unsigned long long, "0x%016Lx\n")
499fw_attr(ud, struct unit_directory, length, int, "%d\n")
500/* These are all dependent on the value being provided */
501fw_attr(ud, struct unit_directory, vendor_id, unsigned int, "0x%06x\n")
502fw_attr(ud, struct unit_directory, model_id, unsigned int, "0x%06x\n")
503fw_attr(ud, struct unit_directory, specifier_id, unsigned int, "0x%06x\n")
504fw_attr(ud, struct unit_directory, version, unsigned int, "0x%06x\n")
505fw_attr_td(ud, struct unit_directory, vendor_name_kv)
506fw_attr(ud, struct unit_directory, vendor_oui, const char *, "%s\n")
507fw_attr_td(ud, struct unit_directory, model_name_kv)
508
509static struct device_attribute *const fw_ud_attrs[] = {
510 &dev_attr_ud_address,
511 &dev_attr_ud_length,
512 &dev_attr_ignore_driver,
513};
514
515
516fw_attr(host, struct hpsb_host, node_count, int, "%d\n")
517fw_attr(host, struct hpsb_host, selfid_count, int, "%d\n")
518fw_attr(host, struct hpsb_host, nodes_active, int, "%d\n")
519fw_attr(host, struct hpsb_host, in_bus_reset, int, "%d\n")
520fw_attr(host, struct hpsb_host, is_root, int, "%d\n")
521fw_attr(host, struct hpsb_host, is_cycmst, int, "%d\n")
522fw_attr(host, struct hpsb_host, is_irm, int, "%d\n")
523fw_attr(host, struct hpsb_host, is_busmgr, int, "%d\n")
524
525static struct device_attribute *const fw_host_attrs[] = {
526 &dev_attr_host_node_count,
527 &dev_attr_host_selfid_count,
528 &dev_attr_host_nodes_active,
529 &dev_attr_host_in_bus_reset,
530 &dev_attr_host_is_root,
531 &dev_attr_host_is_cycmst,
532 &dev_attr_host_is_irm,
533 &dev_attr_host_is_busmgr,
534};
535
536
537static ssize_t fw_show_drv_device_ids(struct device_driver *drv, char *buf)
538{
539 struct hpsb_protocol_driver *driver;
540 struct ieee1394_device_id *id;
541 int length = 0;
542 char *scratch = buf;
543
Stefan Richterd41bba22006-11-22 21:28:19 +0100544 driver = container_of(drv, struct hpsb_protocol_driver, driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 for (id = driver->id_table; id->match_flags != 0; id++) {
547 int need_coma = 0;
548
549 if (id->match_flags & IEEE1394_MATCH_VENDOR_ID) {
550 length += sprintf(scratch, "vendor_id=0x%06x", id->vendor_id);
551 scratch = buf + length;
552 need_coma++;
553 }
554
555 if (id->match_flags & IEEE1394_MATCH_MODEL_ID) {
556 length += sprintf(scratch, "%smodel_id=0x%06x",
557 need_coma++ ? "," : "",
558 id->model_id);
559 scratch = buf + length;
560 }
561
562 if (id->match_flags & IEEE1394_MATCH_SPECIFIER_ID) {
563 length += sprintf(scratch, "%sspecifier_id=0x%06x",
564 need_coma++ ? "," : "",
565 id->specifier_id);
566 scratch = buf + length;
567 }
568
569 if (id->match_flags & IEEE1394_MATCH_VERSION) {
570 length += sprintf(scratch, "%sversion=0x%06x",
571 need_coma++ ? "," : "",
572 id->version);
573 scratch = buf + length;
574 }
575
576 if (need_coma) {
577 *scratch++ = '\n';
578 length++;
579 }
580 }
581
582 return length;
583}
584static DRIVER_ATTR(device_ids,S_IRUGO,fw_show_drv_device_ids,NULL);
585
586
587fw_drv_attr(name, const char *, "%s\n")
588
589static struct driver_attribute *const fw_drv_attrs[] = {
590 &driver_attr_drv_name,
591 &driver_attr_device_ids,
592};
593
594
595static void nodemgr_create_drv_files(struct hpsb_protocol_driver *driver)
596{
597 struct device_driver *drv = &driver->driver;
598 int i;
599
600 for (i = 0; i < ARRAY_SIZE(fw_drv_attrs); i++)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200601 if (driver_create_file(drv, fw_drv_attrs[i]))
602 goto fail;
603 return;
604fail:
605 HPSB_ERR("Failed to add sysfs attribute for driver %s", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608
609static void nodemgr_remove_drv_files(struct hpsb_protocol_driver *driver)
610{
611 struct device_driver *drv = &driver->driver;
612 int i;
613
614 for (i = 0; i < ARRAY_SIZE(fw_drv_attrs); i++)
615 driver_remove_file(drv, fw_drv_attrs[i]);
616}
617
618
619static void nodemgr_create_ne_dev_files(struct node_entry *ne)
620{
621 struct device *dev = &ne->device;
622 int i;
623
624 for (i = 0; i < ARRAY_SIZE(fw_ne_attrs); i++)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200625 if (device_create_file(dev, fw_ne_attrs[i]))
626 goto fail;
627 return;
628fail:
629 HPSB_ERR("Failed to add sysfs attribute for node %016Lx",
630 (unsigned long long)ne->guid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633
634static void nodemgr_create_host_dev_files(struct hpsb_host *host)
635{
636 struct device *dev = &host->device;
637 int i;
638
639 for (i = 0; i < ARRAY_SIZE(fw_host_attrs); i++)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200640 if (device_create_file(dev, fw_host_attrs[i]))
641 goto fail;
642 return;
643fail:
644 HPSB_ERR("Failed to add sysfs attribute for host %d", host->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200648static struct node_entry *find_entry_by_nodeid(struct hpsb_host *host,
649 nodeid_t nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651static void nodemgr_update_host_dev_links(struct hpsb_host *host)
652{
653 struct device *dev = &host->device;
654 struct node_entry *ne;
655
656 sysfs_remove_link(&dev->kobj, "irm_id");
657 sysfs_remove_link(&dev->kobj, "busmgr_id");
658 sysfs_remove_link(&dev->kobj, "host_id");
659
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200660 if ((ne = find_entry_by_nodeid(host, host->irm_id)) &&
661 sysfs_create_link(&dev->kobj, &ne->device.kobj, "irm_id"))
662 goto fail;
663 if ((ne = find_entry_by_nodeid(host, host->busmgr_id)) &&
664 sysfs_create_link(&dev->kobj, &ne->device.kobj, "busmgr_id"))
665 goto fail;
666 if ((ne = find_entry_by_nodeid(host, host->node_id)) &&
667 sysfs_create_link(&dev->kobj, &ne->device.kobj, "host_id"))
668 goto fail;
669 return;
670fail:
671 HPSB_ERR("Failed to update sysfs attributes for host %d", host->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
674static void nodemgr_create_ud_dev_files(struct unit_directory *ud)
675{
676 struct device *dev = &ud->device;
677 int i;
678
679 for (i = 0; i < ARRAY_SIZE(fw_ud_attrs); i++)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200680 if (device_create_file(dev, fw_ud_attrs[i]))
681 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (ud->flags & UNIT_DIRECTORY_SPECIFIER_ID)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200683 if (device_create_file(dev, &dev_attr_ud_specifier_id))
684 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (ud->flags & UNIT_DIRECTORY_VERSION)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200686 if (device_create_file(dev, &dev_attr_ud_version))
687 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (ud->flags & UNIT_DIRECTORY_VENDOR_ID) {
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200689 if (device_create_file(dev, &dev_attr_ud_vendor_id))
690 goto fail;
691 if (ud->vendor_name_kv &&
692 device_create_file(dev, &dev_attr_ud_vendor_name_kv))
693 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (ud->flags & UNIT_DIRECTORY_MODEL_ID) {
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200696 if (device_create_file(dev, &dev_attr_ud_model_id))
697 goto fail;
698 if (ud->model_name_kv &&
699 device_create_file(dev, &dev_attr_ud_model_name_kv))
700 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200702 return;
703fail:
704 HPSB_ERR("Failed to add sysfs attributes for unit %s",
705 ud->device.bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
708
709static int nodemgr_bus_match(struct device * dev, struct device_driver * drv)
710{
Stefan Richterd41bba22006-11-22 21:28:19 +0100711 struct hpsb_protocol_driver *driver;
712 struct unit_directory *ud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct ieee1394_device_id *id;
714
715 /* We only match unit directories */
716 if (dev->platform_data != &nodemgr_ud_platform_data)
717 return 0;
718
719 ud = container_of(dev, struct unit_directory, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (ud->ne->in_limbo || ud->ignore_driver)
721 return 0;
722
Stefan Richter8252bbb2006-11-22 21:09:42 +0100723 /* We only match drivers of type hpsb_protocol_driver */
724 if (drv == &nodemgr_mid_layer_driver)
725 return 0;
726
727 driver = container_of(drv, struct hpsb_protocol_driver, driver);
Stefan Richterd41bba22006-11-22 21:28:19 +0100728 for (id = driver->id_table; id->match_flags != 0; id++) {
729 if ((id->match_flags & IEEE1394_MATCH_VENDOR_ID) &&
730 id->vendor_id != ud->vendor_id)
731 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Stefan Richterd41bba22006-11-22 21:28:19 +0100733 if ((id->match_flags & IEEE1394_MATCH_MODEL_ID) &&
734 id->model_id != ud->model_id)
735 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Stefan Richterd41bba22006-11-22 21:28:19 +0100737 if ((id->match_flags & IEEE1394_MATCH_SPECIFIER_ID) &&
738 id->specifier_id != ud->specifier_id)
739 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Stefan Richterd41bba22006-11-22 21:28:19 +0100741 if ((id->match_flags & IEEE1394_MATCH_VERSION) &&
742 id->version != ud->version)
743 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 return 1;
Stefan Richterd41bba22006-11-22 21:28:19 +0100746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 return 0;
749}
750
751
Stefan Richterb07375b2006-10-22 16:16:27 +0200752static DEFINE_MUTEX(nodemgr_serialize_remove_uds);
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754static void nodemgr_remove_uds(struct node_entry *ne)
755{
Stefan Richterb07375b2006-10-22 16:16:27 +0200756 struct class_device *cdev;
757 struct unit_directory *ud, **unreg;
758 size_t i, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Stefan Richterb07375b2006-10-22 16:16:27 +0200760 /*
761 * This is awkward:
762 * Iteration over nodemgr_ud_class.children has to be protected by
763 * nodemgr_ud_class.sem, but class_device_unregister() will eventually
764 * take nodemgr_ud_class.sem too. Therefore store all uds to be
765 * unregistered in a temporary array, release the semaphore, and then
766 * unregister the uds.
767 *
768 * Since nodemgr_remove_uds can also run in other contexts than the
769 * knodemgrds (which are currently globally serialized), protect the
770 * gap after release of the semaphore by nodemgr_serialize_remove_uds.
771 */
772
773 mutex_lock(&nodemgr_serialize_remove_uds);
774
775 down(&nodemgr_ud_class.sem);
776 count = 0;
777 list_for_each_entry(cdev, &nodemgr_ud_class.children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 ud = container_of(cdev, struct unit_directory, class_dev);
Stefan Richterb07375b2006-10-22 16:16:27 +0200779 if (ud->ne == ne)
780 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Stefan Richterb07375b2006-10-22 16:16:27 +0200782 if (!count) {
783 up(&nodemgr_ud_class.sem);
784 mutex_unlock(&nodemgr_serialize_remove_uds);
785 return;
786 }
787 unreg = kcalloc(count, sizeof(*unreg), GFP_KERNEL);
788 if (!unreg) {
789 HPSB_ERR("NodeMgr: out of memory in nodemgr_remove_uds");
790 up(&nodemgr_ud_class.sem);
791 mutex_unlock(&nodemgr_serialize_remove_uds);
792 return;
793 }
794 i = 0;
795 list_for_each_entry(cdev, &nodemgr_ud_class.children, node) {
796 ud = container_of(cdev, struct unit_directory, class_dev);
797 if (ud->ne == ne) {
798 BUG_ON(i >= count);
799 unreg[i++] = ud;
800 }
801 }
802 up(&nodemgr_ud_class.sem);
803
804 for (i = 0; i < count; i++) {
805 class_device_unregister(&unreg[i]->class_dev);
806 device_unregister(&unreg[i]->device);
807 }
808 kfree(unreg);
809
810 mutex_unlock(&nodemgr_serialize_remove_uds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
813
814static void nodemgr_remove_ne(struct node_entry *ne)
815{
Stefan Richtercec1a312006-11-18 23:16:11 +0100816 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 dev = get_device(&ne->device);
819 if (!dev)
820 return;
821
822 HPSB_DEBUG("Node removed: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
823 NODE_BUS_ARGS(ne->host, ne->nodeid), (unsigned long long)ne->guid);
824
825 nodemgr_remove_uds(ne);
826
827 class_device_unregister(&ne->class_dev);
828 device_unregister(dev);
829
830 put_device(dev);
831}
832
gregkh@suse.de64360322005-03-25 11:45:31 -0800833static int __nodemgr_remove_host_dev(struct device *dev, void *data)
834{
835 nodemgr_remove_ne(container_of(dev, struct node_entry, device));
836 return 0;
837}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839static void nodemgr_remove_host_dev(struct device *dev)
840{
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200841 WARN_ON(device_for_each_child(dev, NULL, __nodemgr_remove_host_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 sysfs_remove_link(&dev->kobj, "irm_id");
843 sysfs_remove_link(&dev->kobj, "busmgr_id");
844 sysfs_remove_link(&dev->kobj, "host_id");
845}
846
847
848static void nodemgr_update_bus_options(struct node_entry *ne)
849{
850#ifdef CONFIG_IEEE1394_VERBOSEDEBUG
851 static const u16 mr[] = { 4, 64, 1024, 0};
852#endif
853 quadlet_t busoptions = be32_to_cpu(ne->csr->bus_info_data[2]);
854
Stefan Richterd41bba22006-11-22 21:28:19 +0100855 ne->busopt.irmc = (busoptions >> 31) & 1;
856 ne->busopt.cmc = (busoptions >> 30) & 1;
857 ne->busopt.isc = (busoptions >> 29) & 1;
858 ne->busopt.bmc = (busoptions >> 28) & 1;
859 ne->busopt.pmc = (busoptions >> 27) & 1;
860 ne->busopt.cyc_clk_acc = (busoptions >> 16) & 0xff;
861 ne->busopt.max_rec = 1 << (((busoptions >> 12) & 0xf) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 ne->busopt.max_rom = (busoptions >> 8) & 0x3;
Stefan Richterd41bba22006-11-22 21:28:19 +0100863 ne->busopt.generation = (busoptions >> 4) & 0xf;
864 ne->busopt.lnkspd = busoptions & 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 HPSB_VERBOSE("NodeMgr: raw=0x%08x irmc=%d cmc=%d isc=%d bmc=%d pmc=%d "
867 "cyc_clk_acc=%d max_rec=%d max_rom=%d gen=%d lspd=%d",
868 busoptions, ne->busopt.irmc, ne->busopt.cmc,
869 ne->busopt.isc, ne->busopt.bmc, ne->busopt.pmc,
870 ne->busopt.cyc_clk_acc, ne->busopt.max_rec,
871 mr[ne->busopt.max_rom],
872 ne->busopt.generation, ne->busopt.lnkspd);
873}
874
875
876static struct node_entry *nodemgr_create_node(octlet_t guid, struct csr1212_csr *csr,
877 struct host_info *hi, nodeid_t nodeid,
878 unsigned int generation)
879{
880 struct hpsb_host *host = hi->host;
Stefan Richter85511582005-11-07 06:31:45 -0500881 struct node_entry *ne;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Stefan Richter85511582005-11-07 06:31:45 -0500883 ne = kzalloc(sizeof(*ne), GFP_KERNEL);
884 if (!ne)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200885 goto fail_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Stefan Richter85511582005-11-07 06:31:45 -0500887 ne->host = host;
888 ne->nodeid = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 ne->generation = generation;
890 ne->needs_probe = 1;
891
Stefan Richter85511582005-11-07 06:31:45 -0500892 ne->guid = guid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 ne->guid_vendor_id = (guid >> 40) & 0xffffff;
894 ne->guid_vendor_oui = nodemgr_find_oui_name(ne->guid_vendor_id);
895 ne->csr = csr;
896
897 memcpy(&ne->device, &nodemgr_dev_template_ne,
898 sizeof(ne->device));
899 ne->device.parent = &host->device;
900 snprintf(ne->device.bus_id, BUS_ID_SIZE, "%016Lx",
901 (unsigned long long)(ne->guid));
902
903 ne->class_dev.dev = &ne->device;
904 ne->class_dev.class = &nodemgr_ne_class;
905 snprintf(ne->class_dev.class_id, BUS_ID_SIZE, "%016Lx",
906 (unsigned long long)(ne->guid));
907
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200908 if (device_register(&ne->device))
909 goto fail_devreg;
910 if (class_device_register(&ne->class_dev))
911 goto fail_classdevreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 get_device(&ne->device);
913
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200914 if (ne->guid_vendor_oui &&
915 device_create_file(&ne->device, &dev_attr_ne_guid_vendor_oui))
916 goto fail_addoiu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 nodemgr_create_ne_dev_files(ne);
918
919 nodemgr_update_bus_options(ne);
920
921 HPSB_DEBUG("%s added: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
922 (host->node_id == nodeid) ? "Host" : "Node",
923 NODE_BUS_ARGS(host, nodeid), (unsigned long long)guid);
924
Stefan Richter85511582005-11-07 06:31:45 -0500925 return ne;
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200926
927fail_addoiu:
928 put_device(&ne->device);
929fail_classdevreg:
930 device_unregister(&ne->device);
931fail_devreg:
932 kfree(ne);
933fail_alloc:
934 HPSB_ERR("Failed to create node ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
935 NODE_BUS_ARGS(host, nodeid), (unsigned long long)guid);
936
937 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
940
941static struct node_entry *find_entry_by_guid(u64 guid)
942{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 struct class_device *cdev;
944 struct node_entry *ne, *ret_ne = NULL;
945
Stefan Richterb07375b2006-10-22 16:16:27 +0200946 down(&nodemgr_ne_class.sem);
947 list_for_each_entry(cdev, &nodemgr_ne_class.children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 ne = container_of(cdev, struct node_entry, class_dev);
949
950 if (ne->guid == guid) {
951 ret_ne = ne;
952 break;
953 }
954 }
Stefan Richterb07375b2006-10-22 16:16:27 +0200955 up(&nodemgr_ne_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Stefan Richterd41bba22006-11-22 21:28:19 +0100957 return ret_ne;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
960
Stefan Richterb07375b2006-10-22 16:16:27 +0200961static struct node_entry *find_entry_by_nodeid(struct hpsb_host *host,
962 nodeid_t nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 struct class_device *cdev;
965 struct node_entry *ne, *ret_ne = NULL;
966
Stefan Richterb07375b2006-10-22 16:16:27 +0200967 down(&nodemgr_ne_class.sem);
968 list_for_each_entry(cdev, &nodemgr_ne_class.children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 ne = container_of(cdev, struct node_entry, class_dev);
970
971 if (ne->host == host && ne->nodeid == nodeid) {
972 ret_ne = ne;
973 break;
974 }
975 }
Stefan Richterb07375b2006-10-22 16:16:27 +0200976 up(&nodemgr_ne_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 return ret_ne;
979}
980
981
982static void nodemgr_register_device(struct node_entry *ne,
983 struct unit_directory *ud, struct device *parent)
984{
985 memcpy(&ud->device, &nodemgr_dev_template_ud,
986 sizeof(ud->device));
987
988 ud->device.parent = parent;
989
990 snprintf(ud->device.bus_id, BUS_ID_SIZE, "%s-%u",
991 ne->device.bus_id, ud->id);
992
993 ud->class_dev.dev = &ud->device;
994 ud->class_dev.class = &nodemgr_ud_class;
995 snprintf(ud->class_dev.class_id, BUS_ID_SIZE, "%s-%u",
996 ne->device.bus_id, ud->id);
997
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200998 if (device_register(&ud->device))
999 goto fail_devreg;
1000 if (class_device_register(&ud->class_dev))
1001 goto fail_classdevreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 get_device(&ud->device);
1003
Stefan Richterc1c9c7c2006-10-10 21:19:21 +02001004 if (ud->vendor_oui &&
1005 device_create_file(&ud->device, &dev_attr_ud_vendor_oui))
1006 goto fail_addoui;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 nodemgr_create_ud_dev_files(ud);
Stefan Richterc1c9c7c2006-10-10 21:19:21 +02001008
1009 return;
1010
1011fail_addoui:
1012 put_device(&ud->device);
1013fail_classdevreg:
1014 device_unregister(&ud->device);
1015fail_devreg:
1016 HPSB_ERR("Failed to create unit %s", ud->device.bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
1019
1020/* This implementation currently only scans the config rom and its
1021 * immediate unit directories looking for software_id and
1022 * software_version entries, in order to get driver autoloading working. */
1023static struct unit_directory *nodemgr_process_unit_directory
1024 (struct host_info *hi, struct node_entry *ne, struct csr1212_keyval *ud_kv,
1025 unsigned int *id, struct unit_directory *parent)
1026{
1027 struct unit_directory *ud;
1028 struct unit_directory *ud_child = NULL;
1029 struct csr1212_dentry *dentry;
1030 struct csr1212_keyval *kv;
1031 u8 last_key_id = 0;
1032
Stefan Richter85511582005-11-07 06:31:45 -05001033 ud = kzalloc(sizeof(*ud), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (!ud)
1035 goto unit_directory_error;
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 ud->ne = ne;
1038 ud->ignore_driver = ignore_drivers;
1039 ud->address = ud_kv->offset + CSR1212_CONFIG_ROM_SPACE_BASE;
1040 ud->ud_kv = ud_kv;
1041 ud->id = (*id)++;
1042
1043 csr1212_for_each_dir_entry(ne->csr, kv, ud_kv, dentry) {
1044 switch (kv->key.id) {
1045 case CSR1212_KV_ID_VENDOR:
1046 if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
1047 ud->vendor_id = kv->value.immediate;
1048 ud->flags |= UNIT_DIRECTORY_VENDOR_ID;
1049
1050 if (ud->vendor_id)
1051 ud->vendor_oui = nodemgr_find_oui_name(ud->vendor_id);
1052 }
1053 break;
1054
1055 case CSR1212_KV_ID_MODEL:
1056 ud->model_id = kv->value.immediate;
1057 ud->flags |= UNIT_DIRECTORY_MODEL_ID;
1058 break;
1059
1060 case CSR1212_KV_ID_SPECIFIER_ID:
1061 ud->specifier_id = kv->value.immediate;
1062 ud->flags |= UNIT_DIRECTORY_SPECIFIER_ID;
1063 break;
1064
1065 case CSR1212_KV_ID_VERSION:
1066 ud->version = kv->value.immediate;
1067 ud->flags |= UNIT_DIRECTORY_VERSION;
1068 break;
1069
1070 case CSR1212_KV_ID_DESCRIPTOR:
1071 if (kv->key.type == CSR1212_KV_TYPE_LEAF &&
1072 CSR1212_DESCRIPTOR_LEAF_TYPE(kv) == 0 &&
1073 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv) == 0 &&
1074 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv) == 0 &&
1075 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv) == 0 &&
1076 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv) == 0) {
1077 switch (last_key_id) {
1078 case CSR1212_KV_ID_VENDOR:
1079 ud->vendor_name_kv = kv;
1080 csr1212_keep_keyval(kv);
1081 break;
1082
1083 case CSR1212_KV_ID_MODEL:
1084 ud->model_name_kv = kv;
1085 csr1212_keep_keyval(kv);
1086 break;
1087
1088 }
1089 } /* else if (kv->key.type == CSR1212_KV_TYPE_DIRECTORY) ... */
1090 break;
1091
1092 case CSR1212_KV_ID_DEPENDENT_INFO:
1093 /* Logical Unit Number */
1094 if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
1095 if (ud->flags & UNIT_DIRECTORY_HAS_LUN) {
Eric Sesterhennbfe89d72006-10-29 23:13:40 +03001096 ud_child = kmemdup(ud, sizeof(*ud_child), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (!ud_child)
1098 goto unit_directory_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 nodemgr_register_device(ne, ud_child, &ne->device);
1100 ud_child = NULL;
1101
1102 ud->id = (*id)++;
1103 }
1104 ud->lun = kv->value.immediate;
1105 ud->flags |= UNIT_DIRECTORY_HAS_LUN;
1106
1107 /* Logical Unit Directory */
1108 } else if (kv->key.type == CSR1212_KV_TYPE_DIRECTORY) {
1109 /* This should really be done in SBP2 as this is
1110 * doing SBP2 specific parsing.
1111 */
1112
1113 /* first register the parent unit */
1114 ud->flags |= UNIT_DIRECTORY_HAS_LUN_DIRECTORY;
1115 if (ud->device.bus != &ieee1394_bus_type)
1116 nodemgr_register_device(ne, ud, &ne->device);
1117
1118 /* process the child unit */
1119 ud_child = nodemgr_process_unit_directory(hi, ne, kv, id, ud);
1120
1121 if (ud_child == NULL)
1122 break;
1123
Kay Sievers312c0042005-11-16 09:00:00 +01001124 /* inherit unspecified values, the driver core picks it up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if ((ud->flags & UNIT_DIRECTORY_MODEL_ID) &&
1126 !(ud_child->flags & UNIT_DIRECTORY_MODEL_ID))
1127 {
1128 ud_child->flags |= UNIT_DIRECTORY_MODEL_ID;
1129 ud_child->model_id = ud->model_id;
1130 }
1131 if ((ud->flags & UNIT_DIRECTORY_SPECIFIER_ID) &&
1132 !(ud_child->flags & UNIT_DIRECTORY_SPECIFIER_ID))
1133 {
1134 ud_child->flags |= UNIT_DIRECTORY_SPECIFIER_ID;
1135 ud_child->specifier_id = ud->specifier_id;
1136 }
1137 if ((ud->flags & UNIT_DIRECTORY_VERSION) &&
1138 !(ud_child->flags & UNIT_DIRECTORY_VERSION))
1139 {
1140 ud_child->flags |= UNIT_DIRECTORY_VERSION;
1141 ud_child->version = ud->version;
1142 }
1143
1144 /* register the child unit */
1145 ud_child->flags |= UNIT_DIRECTORY_LUN_DIRECTORY;
1146 nodemgr_register_device(ne, ud_child, &ud->device);
1147 }
1148
1149 break;
1150
1151 default:
1152 break;
1153 }
1154 last_key_id = kv->key.id;
1155 }
1156
1157 /* do not process child units here and only if not already registered */
1158 if (!parent && ud->device.bus != &ieee1394_bus_type)
1159 nodemgr_register_device(ne, ud, &ne->device);
1160
1161 return ud;
1162
1163unit_directory_error:
Jody McIntyre616b8592005-05-16 21:54:01 -07001164 kfree(ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return NULL;
1166}
1167
1168
1169static void nodemgr_process_root_directory(struct host_info *hi, struct node_entry *ne)
1170{
1171 unsigned int ud_id = 0;
1172 struct csr1212_dentry *dentry;
1173 struct csr1212_keyval *kv;
1174 u8 last_key_id = 0;
1175
1176 ne->needs_probe = 0;
1177
1178 csr1212_for_each_dir_entry(ne->csr, kv, ne->csr->root_kv, dentry) {
1179 switch (kv->key.id) {
1180 case CSR1212_KV_ID_VENDOR:
1181 ne->vendor_id = kv->value.immediate;
1182
1183 if (ne->vendor_id)
1184 ne->vendor_oui = nodemgr_find_oui_name(ne->vendor_id);
1185 break;
1186
1187 case CSR1212_KV_ID_NODE_CAPABILITIES:
1188 ne->capabilities = kv->value.immediate;
1189 break;
1190
1191 case CSR1212_KV_ID_UNIT:
1192 nodemgr_process_unit_directory(hi, ne, kv, &ud_id, NULL);
1193 break;
1194
1195 case CSR1212_KV_ID_DESCRIPTOR:
1196 if (last_key_id == CSR1212_KV_ID_VENDOR) {
1197 if (kv->key.type == CSR1212_KV_TYPE_LEAF &&
1198 CSR1212_DESCRIPTOR_LEAF_TYPE(kv) == 0 &&
1199 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv) == 0 &&
1200 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv) == 0 &&
1201 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv) == 0 &&
1202 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv) == 0) {
1203 ne->vendor_name_kv = kv;
1204 csr1212_keep_keyval(kv);
1205 }
1206 }
1207 break;
1208 }
1209 last_key_id = kv->key.id;
1210 }
1211
Stefan Richterc1c9c7c2006-10-10 21:19:21 +02001212 if (ne->vendor_oui &&
1213 device_create_file(&ne->device, &dev_attr_ne_vendor_oui))
1214 goto fail;
1215 if (ne->vendor_name_kv &&
1216 device_create_file(&ne->device, &dev_attr_ne_vendor_name_kv))
1217 goto fail;
1218 return;
1219fail:
1220 HPSB_ERR("Failed to add sysfs attribute for node %016Lx",
1221 (unsigned long long)ne->guid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
1224#ifdef CONFIG_HOTPLUG
1225
Kay Sievers312c0042005-11-16 09:00:00 +01001226static int nodemgr_uevent(struct class_device *cdev, char **envp, int num_envp,
1227 char *buffer, int buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 struct unit_directory *ud;
1230 int i = 0;
1231 int length = 0;
Olaf Hering9b19d852005-09-06 15:18:18 -07001232 /* ieee1394:venNmoNspNverN */
1233 char buf[8 + 1 + 3 + 8 + 2 + 8 + 2 + 8 + 3 + 8 + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 if (!cdev)
1236 return -ENODEV;
1237
1238 ud = container_of(cdev, struct unit_directory, class_dev);
1239
1240 if (ud->ne->in_limbo || ud->ignore_driver)
1241 return -ENODEV;
1242
1243#define PUT_ENVP(fmt,val) \
1244do { \
1245 int printed; \
1246 envp[i++] = buffer; \
1247 printed = snprintf(buffer, buffer_size - length, \
1248 fmt, val); \
1249 if ((buffer_size - (length+printed) <= 0) || (i >= num_envp)) \
1250 return -ENOMEM; \
1251 length += printed+1; \
1252 buffer += printed+1; \
1253} while (0)
1254
1255 PUT_ENVP("VENDOR_ID=%06x", ud->vendor_id);
1256 PUT_ENVP("MODEL_ID=%06x", ud->model_id);
1257 PUT_ENVP("GUID=%016Lx", (unsigned long long)ud->ne->guid);
1258 PUT_ENVP("SPECIFIER_ID=%06x", ud->specifier_id);
1259 PUT_ENVP("VERSION=%06x", ud->version);
Olaf Hering9b19d852005-09-06 15:18:18 -07001260 snprintf(buf, sizeof(buf), "ieee1394:ven%08Xmo%08Xsp%08Xver%08X",
1261 ud->vendor_id,
1262 ud->model_id,
1263 ud->specifier_id,
1264 ud->version);
1265 PUT_ENVP("MODALIAS=%s", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267#undef PUT_ENVP
1268
1269 envp[i] = NULL;
1270
1271 return 0;
1272}
1273
1274#else
1275
Kay Sievers312c0042005-11-16 09:00:00 +01001276static int nodemgr_uevent(struct class_device *cdev, char **envp, int num_envp,
1277 char *buffer, int buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
1279 return -ENODEV;
1280}
1281
1282#endif /* CONFIG_HOTPLUG */
1283
1284
Ben Collinsed30c262006-11-23 13:59:48 -05001285int __hpsb_register_protocol(struct hpsb_protocol_driver *drv,
1286 struct module *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Ben Collinsed30c262006-11-23 13:59:48 -05001288 int error;
1289
1290 drv->driver.bus = &ieee1394_bus_type;
1291 drv->driver.owner = owner;
1292 drv->driver.name = drv->name;
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 /* This will cause a probe for devices */
Ben Collinsed30c262006-11-23 13:59:48 -05001295 error = driver_register(&drv->driver);
Stefan Richter7fdfc902006-10-21 01:23:56 +02001296 if (!error)
Ben Collinsed30c262006-11-23 13:59:48 -05001297 nodemgr_create_drv_files(drv);
Stefan Richter7fdfc902006-10-21 01:23:56 +02001298 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301void hpsb_unregister_protocol(struct hpsb_protocol_driver *driver)
1302{
1303 nodemgr_remove_drv_files(driver);
1304 /* This will subsequently disconnect all devices that our driver
1305 * is attached to. */
1306 driver_unregister(&driver->driver);
1307}
1308
1309
1310/*
1311 * This function updates nodes that were present on the bus before the
1312 * reset and still are after the reset. The nodeid and the config rom
1313 * may have changed, and the drivers managing this device must be
1314 * informed that this device just went through a bus reset, to allow
1315 * the to take whatever actions required.
1316 */
1317static void nodemgr_update_node(struct node_entry *ne, struct csr1212_csr *csr,
1318 struct host_info *hi, nodeid_t nodeid,
1319 unsigned int generation)
1320{
1321 if (ne->nodeid != nodeid) {
1322 HPSB_DEBUG("Node changed: " NODE_BUS_FMT " -> " NODE_BUS_FMT,
1323 NODE_BUS_ARGS(ne->host, ne->nodeid),
1324 NODE_BUS_ARGS(ne->host, nodeid));
1325 ne->nodeid = nodeid;
1326 }
1327
1328 if (ne->busopt.generation != ((be32_to_cpu(csr->bus_info_data[2]) >> 4) & 0xf)) {
1329 kfree(ne->csr->private);
1330 csr1212_destroy_csr(ne->csr);
1331 ne->csr = csr;
1332
1333 /* If the node's configrom generation has changed, we
1334 * unregister all the unit directories. */
1335 nodemgr_remove_uds(ne);
1336
1337 nodemgr_update_bus_options(ne);
1338
1339 /* Mark the node as new, so it gets re-probed */
1340 ne->needs_probe = 1;
1341 } else {
1342 /* old cache is valid, so update its generation */
1343 struct nodemgr_csr_info *ci = ne->csr->private;
1344 ci->generation = generation;
1345 /* free the partially filled now unneeded new cache */
1346 kfree(csr->private);
1347 csr1212_destroy_csr(csr);
1348 }
1349
1350 if (ne->in_limbo)
1351 nodemgr_resume_ne(ne);
1352
1353 /* Mark the node current */
1354 ne->generation = generation;
1355}
1356
1357
1358
1359static void nodemgr_node_scan_one(struct host_info *hi,
1360 nodeid_t nodeid, int generation)
1361{
1362 struct hpsb_host *host = hi->host;
1363 struct node_entry *ne;
1364 octlet_t guid;
1365 struct csr1212_csr *csr;
1366 struct nodemgr_csr_info *ci;
Stefan Richterd7530a12006-07-03 00:58:01 +02001367 u8 *speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Stefan Richter85511582005-11-07 06:31:45 -05001369 ci = kmalloc(sizeof(*ci), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (!ci)
1371 return;
1372
1373 ci->host = host;
1374 ci->nodeid = nodeid;
1375 ci->generation = generation;
Stefan Richterd7530a12006-07-03 00:58:01 +02001376
1377 /* Prepare for speed probe which occurs when reading the ROM */
1378 speed = &(host->speed[NODEID_TO_NODE(nodeid)]);
1379 if (*speed > host->csr.lnk_spd)
1380 *speed = host->csr.lnk_spd;
1381 ci->speed_unverified = *speed > IEEE1394_SPEED_100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 /* We need to detect when the ConfigROM's generation has changed,
1384 * so we only update the node's info when it needs to be. */
1385
1386 csr = csr1212_create_csr(&nodemgr_csr_ops, 5 * sizeof(quadlet_t), ci);
1387 if (!csr || csr1212_parse_csr(csr) != CSR1212_SUCCESS) {
1388 HPSB_ERR("Error parsing configrom for node " NODE_BUS_FMT,
1389 NODE_BUS_ARGS(host, nodeid));
1390 if (csr)
1391 csr1212_destroy_csr(csr);
1392 kfree(ci);
1393 return;
1394 }
1395
1396 if (csr->bus_info_data[1] != IEEE1394_BUSID_MAGIC) {
1397 /* This isn't a 1394 device, but we let it slide. There
1398 * was a report of a device with broken firmware which
1399 * reported '2394' instead of '1394', which is obviously a
1400 * mistake. One would hope that a non-1394 device never
1401 * gets connected to Firewire bus. If someone does, we
1402 * shouldn't be held responsible, so we'll allow it with a
1403 * warning. */
1404 HPSB_WARN("Node " NODE_BUS_FMT " has invalid busID magic [0x%08x]",
1405 NODE_BUS_ARGS(host, nodeid), csr->bus_info_data[1]);
1406 }
1407
1408 guid = ((u64)be32_to_cpu(csr->bus_info_data[3]) << 32) | be32_to_cpu(csr->bus_info_data[4]);
1409 ne = find_entry_by_guid(guid);
1410
1411 if (ne && ne->host != host && ne->in_limbo) {
1412 /* Must have moved this device from one host to another */
1413 nodemgr_remove_ne(ne);
1414 ne = NULL;
1415 }
1416
1417 if (!ne)
1418 nodemgr_create_node(guid, csr, hi, nodeid, generation);
1419 else
1420 nodemgr_update_node(ne, csr, hi, nodeid, generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
1423
1424static void nodemgr_node_scan(struct host_info *hi, int generation)
1425{
Stefan Richterd41bba22006-11-22 21:28:19 +01001426 int count;
1427 struct hpsb_host *host = hi->host;
1428 struct selfid *sid = (struct selfid *)host->topology_map;
1429 nodeid_t nodeid = LOCAL_BUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Stefan Richterd41bba22006-11-22 21:28:19 +01001431 /* Scan each node on the bus */
1432 for (count = host->selfid_count; count; count--, sid++) {
1433 if (sid->extended)
1434 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Stefan Richterd41bba22006-11-22 21:28:19 +01001436 if (!sid->link_active) {
1437 nodeid++;
1438 continue;
1439 }
1440 nodemgr_node_scan_one(hi, nodeid++, generation);
1441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
1444
1445static void nodemgr_suspend_ne(struct node_entry *ne)
1446{
1447 struct class_device *cdev;
1448 struct unit_directory *ud;
1449
1450 HPSB_DEBUG("Node suspended: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
1451 NODE_BUS_ARGS(ne->host, ne->nodeid), (unsigned long long)ne->guid);
1452
1453 ne->in_limbo = 1;
Stefan Richterc1c9c7c2006-10-10 21:19:21 +02001454 WARN_ON(device_create_file(&ne->device, &dev_attr_ne_in_limbo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Stefan Richterb07375b2006-10-22 16:16:27 +02001456 down(&nodemgr_ud_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 list_for_each_entry(cdev, &nodemgr_ud_class.children, node) {
1458 ud = container_of(cdev, struct unit_directory, class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (ud->ne != ne)
1460 continue;
1461
Stefan Richterb07375b2006-10-22 16:16:27 +02001462 down_write(&ieee1394_bus_type.subsys.rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (ud->device.driver &&
1464 (!ud->device.driver->suspend ||
Russell King9480e302005-10-28 09:52:56 -07001465 ud->device.driver->suspend(&ud->device, PMSG_SUSPEND)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 device_release_driver(&ud->device);
Stefan Richterb07375b2006-10-22 16:16:27 +02001467 up_write(&ieee1394_bus_type.subsys.rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001469 up(&nodemgr_ud_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
1472
1473static void nodemgr_resume_ne(struct node_entry *ne)
1474{
1475 struct class_device *cdev;
1476 struct unit_directory *ud;
1477
1478 ne->in_limbo = 0;
1479 device_remove_file(&ne->device, &dev_attr_ne_in_limbo);
1480
Stefan Richterb07375b2006-10-22 16:16:27 +02001481 down(&nodemgr_ud_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 list_for_each_entry(cdev, &nodemgr_ud_class.children, node) {
1483 ud = container_of(cdev, struct unit_directory, class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (ud->ne != ne)
1485 continue;
1486
Stefan Richterb07375b2006-10-22 16:16:27 +02001487 down_read(&ieee1394_bus_type.subsys.rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (ud->device.driver && ud->device.driver->resume)
Russell King9480e302005-10-28 09:52:56 -07001489 ud->device.driver->resume(&ud->device);
Stefan Richterb07375b2006-10-22 16:16:27 +02001490 up_read(&ieee1394_bus_type.subsys.rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001492 up(&nodemgr_ud_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 HPSB_DEBUG("Node resumed: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
1495 NODE_BUS_ARGS(ne->host, ne->nodeid), (unsigned long long)ne->guid);
1496}
1497
1498
1499static void nodemgr_update_pdrv(struct node_entry *ne)
1500{
1501 struct unit_directory *ud;
1502 struct hpsb_protocol_driver *pdrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 struct class_device *cdev;
1504
Stefan Richterb07375b2006-10-22 16:16:27 +02001505 down(&nodemgr_ud_class.sem);
Stefan Richter9b516012006-09-06 19:04:00 +02001506 list_for_each_entry(cdev, &nodemgr_ud_class.children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 ud = container_of(cdev, struct unit_directory, class_dev);
Stefan Richterb07375b2006-10-22 16:16:27 +02001508 if (ud->ne != ne)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 continue;
1510
Stefan Richterb07375b2006-10-22 16:16:27 +02001511 down_write(&ieee1394_bus_type.subsys.rwsem);
1512 if (ud->device.driver) {
1513 pdrv = container_of(ud->device.driver,
1514 struct hpsb_protocol_driver,
1515 driver);
1516 if (pdrv->update && pdrv->update(ud))
1517 device_release_driver(&ud->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001519 up_write(&ieee1394_bus_type.subsys.rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001521 up(&nodemgr_ud_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522}
1523
1524
Stefan Richter61c7f772005-12-05 16:28:59 -05001525/* Write the BROADCAST_CHANNEL as per IEEE1394a 8.3.2.3.11 and 8.4.2.3. This
1526 * seems like an optional service but in the end it is practically mandatory
1527 * as a consequence of these clauses.
1528 *
1529 * Note that we cannot do a broadcast write to all nodes at once because some
1530 * pre-1394a devices would hang. */
1531static void nodemgr_irm_write_bc(struct node_entry *ne, int generation)
1532{
1533 const u64 bc_addr = (CSR_REGISTER_BASE | CSR_BROADCAST_CHANNEL);
1534 quadlet_t bc_remote, bc_local;
Stefan Richter7fdfc902006-10-21 01:23:56 +02001535 int error;
Stefan Richter61c7f772005-12-05 16:28:59 -05001536
1537 if (!ne->host->is_irm || ne->generation != generation ||
1538 ne->nodeid == ne->host->node_id)
1539 return;
1540
1541 bc_local = cpu_to_be32(ne->host->csr.broadcast_channel);
1542
1543 /* Check if the register is implemented and 1394a compliant. */
Stefan Richter7fdfc902006-10-21 01:23:56 +02001544 error = hpsb_read(ne->host, ne->nodeid, generation, bc_addr, &bc_remote,
1545 sizeof(bc_remote));
1546 if (!error && bc_remote & cpu_to_be32(0x80000000) &&
Stefan Richter61c7f772005-12-05 16:28:59 -05001547 bc_remote != bc_local)
1548 hpsb_node_write(ne, bc_addr, &bc_local, sizeof(bc_local));
1549}
1550
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552static void nodemgr_probe_ne(struct host_info *hi, struct node_entry *ne, int generation)
1553{
1554 struct device *dev;
1555
1556 if (ne->host != hi->host || ne->in_limbo)
1557 return;
1558
1559 dev = get_device(&ne->device);
1560 if (!dev)
1561 return;
1562
Stefan Richter61c7f772005-12-05 16:28:59 -05001563 nodemgr_irm_write_bc(ne, generation);
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 /* If "needs_probe", then this is either a new or changed node we
1566 * rescan totally. If the generation matches for an existing node
1567 * (one that existed prior to the bus reset) we send update calls
1568 * down to the drivers. Otherwise, this is a dead node and we
1569 * suspend it. */
1570 if (ne->needs_probe)
1571 nodemgr_process_root_directory(hi, ne);
1572 else if (ne->generation == generation)
1573 nodemgr_update_pdrv(ne);
1574 else
1575 nodemgr_suspend_ne(ne);
1576
1577 put_device(dev);
1578}
1579
1580
1581static void nodemgr_node_probe(struct host_info *hi, int generation)
1582{
1583 struct hpsb_host *host = hi->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 struct class_device *cdev;
Stefan Richter51c1d802005-12-12 23:03:19 -05001585 struct node_entry *ne;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 /* Do some processing of the nodes we've probed. This pulls them
1588 * into the sysfs layer if needed, and can result in processing of
1589 * unit-directories, or just updating the node and it's
Stefan Richter51c1d802005-12-12 23:03:19 -05001590 * unit-directories.
1591 *
1592 * Run updates before probes. Usually, updates are time-critical
1593 * while probes are time-consuming. (Well, those probes need some
1594 * improvement...) */
1595
Stefan Richterb07375b2006-10-22 16:16:27 +02001596 down(&nodemgr_ne_class.sem);
1597 list_for_each_entry(cdev, &nodemgr_ne_class.children, node) {
Stefan Richter51c1d802005-12-12 23:03:19 -05001598 ne = container_of(cdev, struct node_entry, class_dev);
1599 if (!ne->needs_probe)
1600 nodemgr_probe_ne(hi, ne, generation);
1601 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001602 list_for_each_entry(cdev, &nodemgr_ne_class.children, node) {
Stefan Richter51c1d802005-12-12 23:03:19 -05001603 ne = container_of(cdev, struct node_entry, class_dev);
1604 if (ne->needs_probe)
1605 nodemgr_probe_ne(hi, ne, generation);
1606 }
Stefan Richterd41bba22006-11-22 21:28:19 +01001607 up(&nodemgr_ne_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609
1610 /* If we had a bus reset while we were scanning the bus, it is
1611 * possible that we did not probe all nodes. In that case, we
1612 * skip the clean up for now, since we could remove nodes that
Stefan Richterd2f119f2006-07-03 12:02:35 -04001613 * were still on the bus. Another bus scan is pending which will
1614 * do the clean up eventually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 *
1616 * Now let's tell the bus to rescan our devices. This may seem
1617 * like overhead, but the driver-model core will only scan a
1618 * device for a driver when either the device is added, or when a
1619 * new driver is added. A bus reset is a good reason to rescan
1620 * devices that were there before. For example, an sbp2 device
1621 * may become available for login, if the host that held it was
1622 * just removed. */
1623
1624 if (generation == get_hpsb_generation(host))
Stefan Richter1f72cf52006-10-29 23:09:11 +01001625 if (bus_rescan_devices(&ieee1394_bus_type))
1626 HPSB_DEBUG("bus_rescan_devices had an error");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
Stefan Richter14c0fa22005-12-01 18:51:52 -05001629static int nodemgr_send_resume_packet(struct hpsb_host *host)
1630{
1631 struct hpsb_packet *packet;
Stefan Richter7fdfc902006-10-21 01:23:56 +02001632 int error = -ENOMEM;
Stefan Richter14c0fa22005-12-01 18:51:52 -05001633
1634 packet = hpsb_make_phypacket(host,
Stefan Richterd7758462005-12-01 18:51:56 -05001635 EXTPHYPACKET_TYPE_RESUME |
1636 NODEID_TO_NODE(host->node_id) << PHYPACKET_PORT_SHIFT);
Stefan Richter14c0fa22005-12-01 18:51:52 -05001637 if (packet) {
1638 packet->no_waiter = 1;
1639 packet->generation = get_hpsb_generation(host);
Stefan Richter7fdfc902006-10-21 01:23:56 +02001640 error = hpsb_send_packet(packet);
Stefan Richter14c0fa22005-12-01 18:51:52 -05001641 }
Stefan Richter7fdfc902006-10-21 01:23:56 +02001642 if (error)
Stefan Richter14c0fa22005-12-01 18:51:52 -05001643 HPSB_WARN("fw-host%d: Failed to broadcast resume packet",
1644 host->id);
Stefan Richter7fdfc902006-10-21 01:23:56 +02001645 return error;
Stefan Richter14c0fa22005-12-01 18:51:52 -05001646}
1647
Stefan Richter61c7f772005-12-05 16:28:59 -05001648/* Perform a few high-level IRM responsibilities. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649static int nodemgr_do_irm_duties(struct hpsb_host *host, int cycles)
1650{
1651 quadlet_t bc;
1652
1653 /* if irm_id == -1 then there is no IRM on this bus */
1654 if (!host->is_irm || host->irm_id == (nodeid_t)-1)
1655 return 1;
1656
Stefan Richter61c7f772005-12-05 16:28:59 -05001657 /* We are a 1394a-2000 compliant IRM. Set the validity bit. */
1658 host->csr.broadcast_channel |= 0x40000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 /* If there is no bus manager then we should set the root node's
1661 * force_root bit to promote bus stability per the 1394
1662 * spec. (8.4.2.6) */
1663 if (host->busmgr_id == 0xffff && host->node_count > 1)
1664 {
1665 u16 root_node = host->node_count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Jody McIntyre328699b2005-09-30 11:59:08 -07001667 /* get cycle master capability flag from root node */
1668 if (host->is_cycmst ||
1669 (!hpsb_read(host, LOCAL_BUS | root_node, get_hpsb_generation(host),
1670 (CSR_REGISTER_BASE + CSR_CONFIG_ROM + 2 * sizeof(quadlet_t)),
1671 &bc, sizeof(quadlet_t)) &&
1672 be32_to_cpu(bc) & 1 << CSR_CMC_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 hpsb_send_phy_config(host, root_node, -1);
1674 else {
1675 HPSB_DEBUG("The root node is not cycle master capable; "
1676 "selecting a new root node and resetting...");
1677
1678 if (cycles >= 5) {
1679 /* Oh screw it! Just leave the bus as it is */
1680 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1681 return 1;
1682 }
1683
1684 hpsb_send_phy_config(host, NODEID_TO_NODE(host->node_id), -1);
1685 hpsb_reset_bus(host, LONG_RESET_FORCE_ROOT);
1686
1687 return 0;
1688 }
1689 }
1690
Stefan Richter14c0fa22005-12-01 18:51:52 -05001691 /* Some devices suspend their ports while being connected to an inactive
1692 * host adapter, i.e. if connected before the low-level driver is
1693 * loaded. They become visible either when physically unplugged and
1694 * replugged, or when receiving a resume packet. Send one once. */
1695 if (!host->resume_packet_sent && !nodemgr_send_resume_packet(host))
1696 host->resume_packet_sent = 1;
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 return 1;
1699}
1700
1701/* We need to ensure that if we are not the IRM, that the IRM node is capable of
1702 * everything we can do, otherwise issue a bus reset and try to become the IRM
1703 * ourselves. */
1704static int nodemgr_check_irm_capability(struct hpsb_host *host, int cycles)
1705{
1706 quadlet_t bc;
1707 int status;
1708
1709 if (hpsb_disable_irm || host->is_irm)
1710 return 1;
1711
1712 status = hpsb_read(host, LOCAL_BUS | (host->irm_id),
1713 get_hpsb_generation(host),
1714 (CSR_REGISTER_BASE | CSR_BROADCAST_CHANNEL),
1715 &bc, sizeof(quadlet_t));
1716
1717 if (status < 0 || !(be32_to_cpu(bc) & 0x80000000)) {
1718 /* The current irm node does not have a valid BROADCAST_CHANNEL
1719 * register and we do, so reset the bus with force_root set */
1720 HPSB_DEBUG("Current remote IRM is not 1394a-2000 compliant, resetting...");
1721
1722 if (cycles >= 5) {
1723 /* Oh screw it! Just leave the bus as it is */
1724 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1725 return 1;
1726 }
1727
1728 hpsb_send_phy_config(host, NODEID_TO_NODE(host->node_id), -1);
1729 hpsb_reset_bus(host, LONG_RESET_FORCE_ROOT);
1730
1731 return 0;
1732 }
1733
1734 return 1;
1735}
1736
1737static int nodemgr_host_thread(void *__hi)
1738{
1739 struct host_info *hi = (struct host_info *)__hi;
1740 struct hpsb_host *host = hi->host;
Stefan Richterb7a71792006-10-06 19:49:52 +02001741 unsigned int g, generation = 0;
Stefan Richterd2f119f2006-07-03 12:02:35 -04001742 int i, reset_cycles = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 /* Setup our device-model entries */
1745 nodemgr_create_host_dev_files(host);
1746
Stefan Richterd2f119f2006-07-03 12:02:35 -04001747 for (;;) {
1748 /* Sleep until next bus reset */
1749 set_current_state(TASK_INTERRUPTIBLE);
1750 if (get_hpsb_generation(host) == generation)
1751 schedule();
1752 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Stefan Richterd2f119f2006-07-03 12:02:35 -04001754 /* Thread may have been woken up to freeze or to exit */
1755 if (try_to_freeze())
1756 continue;
1757 if (kthread_should_stop())
1758 goto exit;
1759
Stefan Richtercab8d152006-07-03 12:02:36 -04001760 if (mutex_lock_interruptible(&nodemgr_serialize)) {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001761 if (try_to_freeze())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 continue;
Stefan Richterd2f119f2006-07-03 12:02:35 -04001763 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765
1766 /* Pause for 1/4 second in 1/16 second intervals,
1767 * to make sure things settle down. */
Stefan Richterd2f119f2006-07-03 12:02:35 -04001768 g = get_hpsb_generation(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 for (i = 0; i < 4 ; i++) {
Stefan Richterd2f119f2006-07-03 12:02:35 -04001770 if (msleep_interruptible(63) || kthread_should_stop())
1771 goto unlock_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
1773 /* Now get the generation in which the node ID's we collect
1774 * are valid. During the bus scan we will use this generation
1775 * for the read transactions, so that if another reset occurs
1776 * during the scan the transactions will fail instead of
1777 * returning bogus data. */
1778 generation = get_hpsb_generation(host);
1779
1780 /* If we get a reset before we are done waiting, then
1781 * start the the waiting over again */
Stefan Richterd2f119f2006-07-03 12:02:35 -04001782 if (generation != g)
1783 g = generation, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
1785
Jody McIntyre328699b2005-09-30 11:59:08 -07001786 if (!nodemgr_check_irm_capability(host, reset_cycles) ||
1787 !nodemgr_do_irm_duties(host, reset_cycles)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 reset_cycles++;
Stefan Richtercab8d152006-07-03 12:02:36 -04001789 mutex_unlock(&nodemgr_serialize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 continue;
1791 }
Jody McIntyre328699b2005-09-30 11:59:08 -07001792 reset_cycles = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 /* Scan our nodes to get the bus options and create node
1795 * entries. This does not do the sysfs stuff, since that
Kay Sievers312c0042005-11-16 09:00:00 +01001796 * would trigger uevents and such, which is a bad idea at
1797 * this point. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 nodemgr_node_scan(hi, generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 /* This actually does the full probe, with sysfs
1801 * registration. */
1802 nodemgr_node_probe(hi, generation);
1803
1804 /* Update some of our sysfs symlinks */
1805 nodemgr_update_host_dev_links(host);
1806
Stefan Richtercab8d152006-07-03 12:02:36 -04001807 mutex_unlock(&nodemgr_serialize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
Stefan Richterd2f119f2006-07-03 12:02:35 -04001809unlock_exit:
Stefan Richtercab8d152006-07-03 12:02:36 -04001810 mutex_unlock(&nodemgr_serialize);
Stefan Richterd2f119f2006-07-03 12:02:35 -04001811exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 HPSB_VERBOSE("NodeMgr: Exiting thread");
Stefan Richterd2f119f2006-07-03 12:02:35 -04001813 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
1816int nodemgr_for_each_host(void *__data, int (*cb)(struct hpsb_host *, void *))
1817{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 struct class_device *cdev;
1819 struct hpsb_host *host;
1820 int error = 0;
1821
Stefan Richterb07375b2006-10-22 16:16:27 +02001822 down(&hpsb_host_class.sem);
1823 list_for_each_entry(cdev, &hpsb_host_class.children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 host = container_of(cdev, struct hpsb_host, class_dev);
1825
1826 if ((error = cb(host, __data)))
1827 break;
1828 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001829 up(&hpsb_host_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 return error;
1832}
1833
1834/* The following four convenience functions use a struct node_entry
1835 * for addressing a node on the bus. They are intended for use by any
1836 * process context, not just the nodemgr thread, so we need to be a
1837 * little careful when reading out the node ID and generation. The
1838 * thing that can go wrong is that we get the node ID, then a bus
1839 * reset occurs, and then we read the generation. The node ID is
1840 * possibly invalid, but the generation is current, and we end up
1841 * sending a packet to a the wrong node.
1842 *
1843 * The solution is to make sure we read the generation first, so that
1844 * if a reset occurs in the process, we end up with a stale generation
1845 * and the transactions will fail instead of silently using wrong node
1846 * ID's.
1847 */
1848
1849void hpsb_node_fill_packet(struct node_entry *ne, struct hpsb_packet *pkt)
1850{
Stefan Richterd41bba22006-11-22 21:28:19 +01001851 pkt->host = ne->host;
1852 pkt->generation = ne->generation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 barrier();
Stefan Richterd41bba22006-11-22 21:28:19 +01001854 pkt->node_id = ne->nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}
1856
1857int hpsb_node_write(struct node_entry *ne, u64 addr,
1858 quadlet_t *buffer, size_t length)
1859{
1860 unsigned int generation = ne->generation;
1861
1862 barrier();
1863 return hpsb_write(ne->host, ne->nodeid, generation,
1864 addr, buffer, length);
1865}
1866
1867static void nodemgr_add_host(struct hpsb_host *host)
1868{
1869 struct host_info *hi;
1870
1871 hi = hpsb_create_hostinfo(&nodemgr_highlevel, host, sizeof(*hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 if (!hi) {
Stefan Richterd2f119f2006-07-03 12:02:35 -04001873 HPSB_ERR("NodeMgr: out of memory in add host");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return;
1875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 hi->host = host;
Stefan Richterd2f119f2006-07-03 12:02:35 -04001877 hi->thread = kthread_run(nodemgr_host_thread, hi, "knodemgrd_%d",
1878 host->id);
1879 if (IS_ERR(hi->thread)) {
1880 HPSB_ERR("NodeMgr: cannot start thread for host %d", host->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 hpsb_destroy_hostinfo(&nodemgr_highlevel, host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
1885static void nodemgr_host_reset(struct hpsb_host *host)
1886{
1887 struct host_info *hi = hpsb_get_hostinfo(&nodemgr_highlevel, host);
1888
Stefan Richterd2f119f2006-07-03 12:02:35 -04001889 if (hi) {
1890 HPSB_VERBOSE("NodeMgr: Processing reset for host %d", host->id);
1891 wake_up_process(hi->thread);
1892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
1895static void nodemgr_remove_host(struct hpsb_host *host)
1896{
1897 struct host_info *hi = hpsb_get_hostinfo(&nodemgr_highlevel, host);
1898
1899 if (hi) {
Stefan Richterd2f119f2006-07-03 12:02:35 -04001900 kthread_stop(hi->thread);
1901 nodemgr_remove_host_dev(&host->device);
1902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903}
1904
1905static struct hpsb_highlevel nodemgr_highlevel = {
1906 .name = "Node manager",
1907 .add_host = nodemgr_add_host,
1908 .host_reset = nodemgr_host_reset,
1909 .remove_host = nodemgr_remove_host,
1910};
1911
1912int init_ieee1394_nodemgr(void)
1913{
Stefan Richter7fdfc902006-10-21 01:23:56 +02001914 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Stefan Richter7fdfc902006-10-21 01:23:56 +02001916 error = class_register(&nodemgr_ne_class);
1917 if (error)
1918 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Stefan Richter7fdfc902006-10-21 01:23:56 +02001920 error = class_register(&nodemgr_ud_class);
1921 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 class_unregister(&nodemgr_ne_class);
Stefan Richter7fdfc902006-10-21 01:23:56 +02001923 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
Stefan Richter8252bbb2006-11-22 21:09:42 +01001925 error = driver_register(&nodemgr_mid_layer_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 hpsb_register_highlevel(&nodemgr_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return 0;
1928}
1929
1930void cleanup_ieee1394_nodemgr(void)
1931{
Stefan Richterd41bba22006-11-22 21:28:19 +01001932 hpsb_unregister_highlevel(&nodemgr_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 class_unregister(&nodemgr_ud_class);
1935 class_unregister(&nodemgr_ne_class);
1936}