blob: 90dc75be3418c91f0baab414181577f62ded696f [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>
Stefan Richter9543a932007-04-10 02:39:07 +020019#include <linux/mutex.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080020#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/atomic.h>
Stefan Richtera0e857e2007-06-17 23:47:45 +020022#include <asm/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Stefan Richterde4394f2006-07-03 12:02:29 -040024#include "csr.h"
25#include "highlevel.h"
26#include "hosts.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "ieee1394.h"
28#include "ieee1394_core.h"
Stefan Richterde4394f2006-07-03 12:02:29 -040029#include "ieee1394_hotplug.h"
30#include "ieee1394_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "ieee1394_transactions.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "nodemgr.h"
33
Ben Collins1934b8b2005-07-09 20:01:23 -040034static int ignore_drivers;
Stefan Richter3a632fe2006-07-03 12:02:35 -040035module_param(ignore_drivers, int, S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036MODULE_PARM_DESC(ignore_drivers, "Disable automatic probing for drivers.");
37
38struct nodemgr_csr_info {
39 struct hpsb_host *host;
40 nodeid_t nodeid;
41 unsigned int generation;
Ben Collins647dcb52006-06-12 18:12:37 -040042 unsigned int speed_unverified:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
45
Ben Collins647dcb52006-06-12 18:12:37 -040046/*
47 * Correct the speed map entry. This is necessary
48 * - for nodes with link speed < phy speed,
49 * - for 1394b nodes with negotiated phy port speed < IEEE1394_SPEED_MAX.
50 * A possible speed is determined by trial and error, using quadlet reads.
51 */
52static int nodemgr_check_speed(struct nodemgr_csr_info *ci, u64 addr,
53 quadlet_t *buffer)
54{
55 quadlet_t q;
56 u8 i, *speed, old_speed, good_speed;
Stefan Richter7fdfc902006-10-21 01:23:56 +020057 int error;
Ben Collins647dcb52006-06-12 18:12:37 -040058
Stefan Richterd7530a12006-07-03 00:58:01 +020059 speed = &(ci->host->speed[NODEID_TO_NODE(ci->nodeid)]);
Ben Collins647dcb52006-06-12 18:12:37 -040060 old_speed = *speed;
61 good_speed = IEEE1394_SPEED_MAX + 1;
62
63 /* Try every speed from S100 to old_speed.
64 * If we did it the other way around, a too low speed could be caught
65 * if the retry succeeded for some other reason, e.g. because the link
66 * just finished its initialization. */
67 for (i = IEEE1394_SPEED_100; i <= old_speed; i++) {
68 *speed = i;
Stefan Richter7fdfc902006-10-21 01:23:56 +020069 error = hpsb_read(ci->host, ci->nodeid, ci->generation, addr,
70 &q, sizeof(quadlet_t));
71 if (error)
Ben Collins647dcb52006-06-12 18:12:37 -040072 break;
73 *buffer = q;
74 good_speed = i;
75 }
76 if (good_speed <= IEEE1394_SPEED_MAX) {
77 HPSB_DEBUG("Speed probe of node " NODE_BUS_FMT " yields %s",
78 NODE_BUS_ARGS(ci->host, ci->nodeid),
79 hpsb_speedto_str[good_speed]);
80 *speed = good_speed;
81 ci->speed_unverified = 0;
82 return 0;
83 }
84 *speed = old_speed;
Stefan Richter7fdfc902006-10-21 01:23:56 +020085 return error;
Ben Collins647dcb52006-06-12 18:12:37 -040086}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88static int nodemgr_bus_read(struct csr1212_csr *csr, u64 addr, u16 length,
Stefan Richterd41bba22006-11-22 21:28:19 +010089 void *buffer, void *__ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 struct nodemgr_csr_info *ci = (struct nodemgr_csr_info*)__ci;
Stefan Richter7fdfc902006-10-21 01:23:56 +020092 int i, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Jody McIntyree31a1272005-09-30 11:59:09 -070094 for (i = 1; ; i++) {
Stefan Richter7fdfc902006-10-21 01:23:56 +020095 error = hpsb_read(ci->host, ci->nodeid, ci->generation, addr,
96 buffer, length);
97 if (!error) {
Ben Collins647dcb52006-06-12 18:12:37 -040098 ci->speed_unverified = 0;
99 break;
100 }
101 /* Give up after 3rd failure. */
102 if (i == 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 break;
104
Ben Collins647dcb52006-06-12 18:12:37 -0400105 /* The ieee1394_core guessed the node's speed capability from
106 * the self ID. Check whether a lower speed works. */
107 if (ci->speed_unverified && length == sizeof(quadlet_t)) {
Stefan Richter7fdfc902006-10-21 01:23:56 +0200108 error = nodemgr_check_speed(ci, addr, buffer);
109 if (!error)
Ben Collins647dcb52006-06-12 18:12:37 -0400110 break;
111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (msleep_interruptible(334))
113 return -EINTR;
114 }
Stefan Richter7fdfc902006-10-21 01:23:56 +0200115 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118static int nodemgr_get_max_rom(quadlet_t *bus_info_data, void *__ci)
119{
Stefan Richter7fb9add2007-03-11 22:49:05 +0100120 return (be32_to_cpu(bus_info_data[2]) >> 8) & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123static struct csr1212_bus_ops nodemgr_csr_ops = {
124 .bus_read = nodemgr_bus_read,
125 .get_max_rom = nodemgr_get_max_rom
126};
127
128
129/*
130 * Basically what we do here is start off retrieving the bus_info block.
131 * From there will fill in some info about the node, verify it is of IEEE
132 * 1394 type, and that the crc checks out ok. After that we start off with
133 * the root directory, and subdirectories. To do this, we retrieve the
134 * quadlet header for a directory, find out the length, and retrieve the
135 * complete directory entry (be it a leaf or a directory). We then process
136 * it and add the info to our structure for that particular node.
137 *
138 * We verify CRC's along the way for each directory/block/leaf. The entire
139 * node structure is generic, and simply stores the information in a way
140 * that's easy to parse by the protocol interface.
141 */
142
143/*
144 * The nodemgr relies heavily on the Driver Model for device callbacks and
145 * driver/device mappings. The old nodemgr used to handle all this itself,
146 * but now we are much simpler because of the LDM.
147 */
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149struct host_info {
150 struct hpsb_host *host;
151 struct list_head list;
Stefan Richterd2f119f2006-07-03 12:02:35 -0400152 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
155static int nodemgr_bus_match(struct device * dev, struct device_driver * drv);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200156static int nodemgr_uevent(struct device *dev, struct kobj_uevent_env *env);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static void nodemgr_resume_ne(struct node_entry *ne);
158static void nodemgr_remove_ne(struct node_entry *ne);
159static struct node_entry *find_entry_by_guid(u64 guid);
160
161struct bus_type ieee1394_bus_type = {
162 .name = "ieee1394",
163 .match = nodemgr_bus_match,
164};
165
Kay Sieversdd7f2922007-05-25 11:50:53 +0200166static void host_cls_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Kay Sieversdd7f2922007-05-25 11:50:53 +0200168 put_device(&container_of((dev), struct hpsb_host, host_dev)->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171struct class hpsb_host_class = {
172 .name = "ieee1394_host",
Kay Sieversdd7f2922007-05-25 11:50:53 +0200173 .dev_release = host_cls_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
Kay Sieversdd7f2922007-05-25 11:50:53 +0200176static void ne_cls_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Kay Sieversdd7f2922007-05-25 11:50:53 +0200178 put_device(&container_of((dev), struct node_entry, node_dev)->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
181static struct class nodemgr_ne_class = {
182 .name = "ieee1394_node",
Kay Sieversdd7f2922007-05-25 11:50:53 +0200183 .dev_release = ne_cls_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
Kay Sieversdd7f2922007-05-25 11:50:53 +0200186static void ud_cls_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Kay Sieversdd7f2922007-05-25 11:50:53 +0200188 put_device(&container_of((dev), struct unit_directory, unit_dev)->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191/* The name here is only so that unit directory hotplug works with old
Kay Sieversdd7f2922007-05-25 11:50:53 +0200192 * style hotplug, which only ever did unit directories anyway.
193 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static struct class nodemgr_ud_class = {
195 .name = "ieee1394",
Kay Sieversdd7f2922007-05-25 11:50:53 +0200196 .dev_release = ud_cls_release,
197 .dev_uevent = nodemgr_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
200static struct hpsb_highlevel nodemgr_highlevel;
201
202
203static void nodemgr_release_ud(struct device *dev)
204{
205 struct unit_directory *ud = container_of(dev, struct unit_directory, device);
206
207 if (ud->vendor_name_kv)
208 csr1212_release_keyval(ud->vendor_name_kv);
209 if (ud->model_name_kv)
210 csr1212_release_keyval(ud->model_name_kv);
211
212 kfree(ud);
213}
214
215static void nodemgr_release_ne(struct device *dev)
216{
217 struct node_entry *ne = container_of(dev, struct node_entry, device);
218
219 if (ne->vendor_name_kv)
220 csr1212_release_keyval(ne->vendor_name_kv);
221
222 kfree(ne);
223}
224
225
226static void nodemgr_release_host(struct device *dev)
227{
228 struct hpsb_host *host = container_of(dev, struct hpsb_host, device);
229
230 csr1212_destroy_csr(host->csr.rom);
231
232 kfree(host);
233}
234
235static int nodemgr_ud_platform_data;
236
237static struct device nodemgr_dev_template_ud = {
238 .bus = &ieee1394_bus_type,
239 .release = nodemgr_release_ud,
240 .platform_data = &nodemgr_ud_platform_data,
241};
242
243static struct device nodemgr_dev_template_ne = {
244 .bus = &ieee1394_bus_type,
245 .release = nodemgr_release_ne,
246};
247
Stefan Richter8252bbb2006-11-22 21:09:42 +0100248/* This dummy driver prevents the host devices from being scanned. We have no
249 * useful drivers for them yet, and there would be a deadlock possible if the
250 * driver core scans the host device while the host's low-level driver (i.e.
251 * the host's parent device) is being removed. */
252static struct device_driver nodemgr_mid_layer_driver = {
253 .bus = &ieee1394_bus_type,
254 .name = "nodemgr",
255 .owner = THIS_MODULE,
256};
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258struct device nodemgr_dev_template_host = {
259 .bus = &ieee1394_bus_type,
260 .release = nodemgr_release_host,
261};
262
263
264#define fw_attr(class, class_type, field, type, format_string) \
Yani Ioannoue404e272005-05-17 06:42:58 -0400265static ssize_t fw_show_##class##_##field (struct device *dev, struct device_attribute *attr, char *buf)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{ \
267 class_type *class; \
268 class = container_of(dev, class_type, device); \
269 return sprintf(buf, format_string, (type)class->field); \
270} \
271static struct device_attribute dev_attr_##class##_##field = { \
272 .attr = {.name = __stringify(field), .mode = S_IRUGO }, \
273 .show = fw_show_##class##_##field, \
274};
275
276#define fw_attr_td(class, class_type, td_kv) \
Yani Ioannoue404e272005-05-17 06:42:58 -0400277static ssize_t fw_show_##class##_##td_kv (struct device *dev, struct device_attribute *attr, char *buf)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{ \
279 int len; \
280 class_type *class = container_of(dev, class_type, device); \
281 len = (class->td_kv->value.leaf.len - 2) * sizeof(quadlet_t); \
282 memcpy(buf, \
283 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_DATA(class->td_kv), \
284 len); \
Al Viro51ec1382007-07-15 20:59:51 +0100285 while (buf[len - 1] == '\0') \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 len--; \
287 buf[len++] = '\n'; \
288 buf[len] = '\0'; \
289 return len; \
290} \
291static struct device_attribute dev_attr_##class##_##td_kv = { \
292 .attr = {.name = __stringify(td_kv), .mode = S_IRUGO }, \
293 .show = fw_show_##class##_##td_kv, \
294};
295
296
297#define fw_drv_attr(field, type, format_string) \
298static ssize_t fw_drv_show_##field (struct device_driver *drv, char *buf) \
299{ \
300 struct hpsb_protocol_driver *driver; \
301 driver = container_of(drv, struct hpsb_protocol_driver, driver); \
302 return sprintf(buf, format_string, (type)driver->field);\
303} \
304static struct driver_attribute driver_attr_drv_##field = { \
Stefan Richterd41bba22006-11-22 21:28:19 +0100305 .attr = {.name = __stringify(field), .mode = S_IRUGO }, \
306 .show = fw_drv_show_##field, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307};
308
309
Yani Ioannoue404e272005-05-17 06:42:58 -0400310static ssize_t fw_show_ne_bus_options(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 struct node_entry *ne = container_of(dev, struct node_entry, device);
313
314 return sprintf(buf, "IRMC(%d) CMC(%d) ISC(%d) BMC(%d) PMC(%d) GEN(%d) "
315 "LSPD(%d) MAX_REC(%d) MAX_ROM(%d) CYC_CLK_ACC(%d)\n",
316 ne->busopt.irmc,
317 ne->busopt.cmc, ne->busopt.isc, ne->busopt.bmc,
318 ne->busopt.pmc, ne->busopt.generation, ne->busopt.lnkspd,
319 ne->busopt.max_rec,
320 ne->busopt.max_rom,
321 ne->busopt.cyc_clk_acc);
322}
323static DEVICE_ATTR(bus_options,S_IRUGO,fw_show_ne_bus_options,NULL);
324
325
Stefan Richter99519032006-07-02 14:17:00 +0200326#ifdef HPSB_DEBUG_TLABELS
327static ssize_t fw_show_ne_tlabels_free(struct device *dev,
328 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 struct node_entry *ne = container_of(dev, struct node_entry, device);
Stefan Richter99519032006-07-02 14:17:00 +0200331 unsigned long flags;
332 unsigned long *tp = ne->host->tl_pool[NODEID_TO_NODE(ne->nodeid)].map;
333 int tf;
334
335 spin_lock_irqsave(&hpsb_tlabel_lock, flags);
336 tf = 64 - bitmap_weight(tp, 64);
337 spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
338
339 return sprintf(buf, "%d\n", tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341static DEVICE_ATTR(tlabels_free,S_IRUGO,fw_show_ne_tlabels_free,NULL);
342
343
Stefan Richter99519032006-07-02 14:17:00 +0200344static ssize_t fw_show_ne_tlabels_mask(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 u64 tm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Stefan Richter99519032006-07-02 14:17:00 +0200352 spin_lock_irqsave(&hpsb_tlabel_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#if (BITS_PER_LONG <= 32)
Stefan Richter99519032006-07-02 14:17:00 +0200354 tm = ((u64)tp[0] << 32) + tp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355#else
Stefan Richter99519032006-07-02 14:17:00 +0200356 tm = tp[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357#endif
Stefan Richter99519032006-07-02 14:17:00 +0200358 spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
359
Randy Dunlap7f588032006-10-23 21:44:36 -0700360 return sprintf(buf, "0x%016llx\n", (unsigned long long)tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362static DEVICE_ATTR(tlabels_mask, S_IRUGO, fw_show_ne_tlabels_mask, NULL);
Stefan Richter99519032006-07-02 14:17:00 +0200363#endif /* HPSB_DEBUG_TLABELS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365
Yani Ioannoue404e272005-05-17 06:42:58 -0400366static 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 -0700367{
368 struct unit_directory *ud = container_of(dev, struct unit_directory, device);
369 int state = simple_strtoul(buf, NULL, 10);
370
371 if (state == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 ud->ignore_driver = 1;
Stefan Richterb07375b2006-10-22 16:16:27 +0200373 device_release_driver(dev);
Stefan Richterb07375b2006-10-22 16:16:27 +0200374 } else if (state == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 ud->ignore_driver = 0;
376
377 return count;
378}
Yani Ioannoue404e272005-05-17 06:42:58 -0400379static ssize_t fw_get_ignore_driver(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 struct unit_directory *ud = container_of(dev, struct unit_directory, device);
382
383 return sprintf(buf, "%d\n", ud->ignore_driver);
384}
385static DEVICE_ATTR(ignore_driver, S_IWUSR | S_IRUGO, fw_get_ignore_driver, fw_set_ignore_driver);
386
387
388static ssize_t fw_set_destroy_node(struct bus_type *bus, const char *buf, size_t count)
389{
390 struct node_entry *ne;
391 u64 guid = (u64)simple_strtoull(buf, NULL, 16);
392
393 ne = find_entry_by_guid(guid);
394
395 if (ne == NULL || !ne->in_limbo)
396 return -EINVAL;
397
398 nodemgr_remove_ne(ne);
399
400 return count;
401}
402static ssize_t fw_get_destroy_node(struct bus_type *bus, char *buf)
403{
404 return sprintf(buf, "You can destroy in_limbo nodes by writing their GUID to this file\n");
405}
406static BUS_ATTR(destroy_node, S_IWUSR | S_IRUGO, fw_get_destroy_node, fw_set_destroy_node);
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200409static ssize_t fw_set_rescan(struct bus_type *bus, const char *buf,
410 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200412 int error = 0;
413
Stefan Richter40fd89c2006-07-03 12:02:34 -0400414 if (simple_strtoul(buf, NULL, 10) == 1)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200415 error = bus_rescan_devices(&ieee1394_bus_type);
416 return error ? error : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418static ssize_t fw_get_rescan(struct bus_type *bus, char *buf)
419{
420 return sprintf(buf, "You can force a rescan of the bus for "
421 "drivers by writing a 1 to this file\n");
422}
423static BUS_ATTR(rescan, S_IWUSR | S_IRUGO, fw_get_rescan, fw_set_rescan);
424
425
426static ssize_t fw_set_ignore_drivers(struct bus_type *bus, const char *buf, size_t count)
427{
428 int state = simple_strtoul(buf, NULL, 10);
429
430 if (state == 1)
431 ignore_drivers = 1;
Stefan Richterb07375b2006-10-22 16:16:27 +0200432 else if (state == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 ignore_drivers = 0;
434
435 return count;
436}
437static ssize_t fw_get_ignore_drivers(struct bus_type *bus, char *buf)
438{
439 return sprintf(buf, "%d\n", ignore_drivers);
440}
441static BUS_ATTR(ignore_drivers, S_IWUSR | S_IRUGO, fw_get_ignore_drivers, fw_set_ignore_drivers);
442
443
444struct bus_attribute *const fw_bus_attrs[] = {
445 &bus_attr_destroy_node,
446 &bus_attr_rescan,
447 &bus_attr_ignore_drivers,
448 NULL
449};
450
451
452fw_attr(ne, struct node_entry, capabilities, unsigned int, "0x%06x\n")
453fw_attr(ne, struct node_entry, nodeid, unsigned int, "0x%04x\n")
454
455fw_attr(ne, struct node_entry, vendor_id, unsigned int, "0x%06x\n")
456fw_attr_td(ne, struct node_entry, vendor_name_kv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458fw_attr(ne, struct node_entry, guid, unsigned long long, "0x%016Lx\n")
459fw_attr(ne, struct node_entry, guid_vendor_id, unsigned int, "0x%06x\n")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460fw_attr(ne, struct node_entry, in_limbo, int, "%d\n");
461
462static struct device_attribute *const fw_ne_attrs[] = {
463 &dev_attr_ne_guid,
464 &dev_attr_ne_guid_vendor_id,
465 &dev_attr_ne_capabilities,
466 &dev_attr_ne_vendor_id,
467 &dev_attr_ne_nodeid,
468 &dev_attr_bus_options,
Stefan Richter99519032006-07-02 14:17:00 +0200469#ifdef HPSB_DEBUG_TLABELS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 &dev_attr_tlabels_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 &dev_attr_tlabels_mask,
Stefan Richter99519032006-07-02 14:17:00 +0200472#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473};
474
475
476
477fw_attr(ud, struct unit_directory, address, unsigned long long, "0x%016Lx\n")
478fw_attr(ud, struct unit_directory, length, int, "%d\n")
479/* These are all dependent on the value being provided */
480fw_attr(ud, struct unit_directory, vendor_id, unsigned int, "0x%06x\n")
481fw_attr(ud, struct unit_directory, model_id, unsigned int, "0x%06x\n")
482fw_attr(ud, struct unit_directory, specifier_id, unsigned int, "0x%06x\n")
483fw_attr(ud, struct unit_directory, version, unsigned int, "0x%06x\n")
484fw_attr_td(ud, struct unit_directory, vendor_name_kv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485fw_attr_td(ud, struct unit_directory, model_name_kv)
486
487static struct device_attribute *const fw_ud_attrs[] = {
488 &dev_attr_ud_address,
489 &dev_attr_ud_length,
490 &dev_attr_ignore_driver,
491};
492
493
494fw_attr(host, struct hpsb_host, node_count, int, "%d\n")
495fw_attr(host, struct hpsb_host, selfid_count, int, "%d\n")
496fw_attr(host, struct hpsb_host, nodes_active, int, "%d\n")
497fw_attr(host, struct hpsb_host, in_bus_reset, int, "%d\n")
498fw_attr(host, struct hpsb_host, is_root, int, "%d\n")
499fw_attr(host, struct hpsb_host, is_cycmst, int, "%d\n")
500fw_attr(host, struct hpsb_host, is_irm, int, "%d\n")
501fw_attr(host, struct hpsb_host, is_busmgr, int, "%d\n")
502
503static struct device_attribute *const fw_host_attrs[] = {
504 &dev_attr_host_node_count,
505 &dev_attr_host_selfid_count,
506 &dev_attr_host_nodes_active,
507 &dev_attr_host_in_bus_reset,
508 &dev_attr_host_is_root,
509 &dev_attr_host_is_cycmst,
510 &dev_attr_host_is_irm,
511 &dev_attr_host_is_busmgr,
512};
513
514
515static ssize_t fw_show_drv_device_ids(struct device_driver *drv, char *buf)
516{
517 struct hpsb_protocol_driver *driver;
518 struct ieee1394_device_id *id;
519 int length = 0;
520 char *scratch = buf;
521
Stefan Richterd41bba22006-11-22 21:28:19 +0100522 driver = container_of(drv, struct hpsb_protocol_driver, driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 for (id = driver->id_table; id->match_flags != 0; id++) {
525 int need_coma = 0;
526
527 if (id->match_flags & IEEE1394_MATCH_VENDOR_ID) {
528 length += sprintf(scratch, "vendor_id=0x%06x", id->vendor_id);
529 scratch = buf + length;
530 need_coma++;
531 }
532
533 if (id->match_flags & IEEE1394_MATCH_MODEL_ID) {
534 length += sprintf(scratch, "%smodel_id=0x%06x",
535 need_coma++ ? "," : "",
536 id->model_id);
537 scratch = buf + length;
538 }
539
540 if (id->match_flags & IEEE1394_MATCH_SPECIFIER_ID) {
541 length += sprintf(scratch, "%sspecifier_id=0x%06x",
542 need_coma++ ? "," : "",
543 id->specifier_id);
544 scratch = buf + length;
545 }
546
547 if (id->match_flags & IEEE1394_MATCH_VERSION) {
548 length += sprintf(scratch, "%sversion=0x%06x",
549 need_coma++ ? "," : "",
550 id->version);
551 scratch = buf + length;
552 }
553
554 if (need_coma) {
555 *scratch++ = '\n';
556 length++;
557 }
558 }
559
560 return length;
561}
562static DRIVER_ATTR(device_ids,S_IRUGO,fw_show_drv_device_ids,NULL);
563
564
565fw_drv_attr(name, const char *, "%s\n")
566
567static struct driver_attribute *const fw_drv_attrs[] = {
568 &driver_attr_drv_name,
569 &driver_attr_device_ids,
570};
571
572
573static void nodemgr_create_drv_files(struct hpsb_protocol_driver *driver)
574{
575 struct device_driver *drv = &driver->driver;
576 int i;
577
578 for (i = 0; i < ARRAY_SIZE(fw_drv_attrs); i++)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200579 if (driver_create_file(drv, fw_drv_attrs[i]))
580 goto fail;
581 return;
582fail:
Stefan Richter9be51c52007-03-30 19:21:05 +0200583 HPSB_ERR("Failed to add sysfs attribute");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586
587static void nodemgr_remove_drv_files(struct hpsb_protocol_driver *driver)
588{
589 struct device_driver *drv = &driver->driver;
590 int i;
591
592 for (i = 0; i < ARRAY_SIZE(fw_drv_attrs); i++)
593 driver_remove_file(drv, fw_drv_attrs[i]);
594}
595
596
597static void nodemgr_create_ne_dev_files(struct node_entry *ne)
598{
599 struct device *dev = &ne->device;
600 int i;
601
602 for (i = 0; i < ARRAY_SIZE(fw_ne_attrs); i++)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200603 if (device_create_file(dev, fw_ne_attrs[i]))
604 goto fail;
605 return;
606fail:
Stefan Richter9be51c52007-03-30 19:21:05 +0200607 HPSB_ERR("Failed to add sysfs attribute");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
610
611static void nodemgr_create_host_dev_files(struct hpsb_host *host)
612{
613 struct device *dev = &host->device;
614 int i;
615
616 for (i = 0; i < ARRAY_SIZE(fw_host_attrs); i++)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200617 if (device_create_file(dev, fw_host_attrs[i]))
618 goto fail;
619 return;
620fail:
Stefan Richter9be51c52007-03-30 19:21:05 +0200621 HPSB_ERR("Failed to add sysfs attribute");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200625static struct node_entry *find_entry_by_nodeid(struct hpsb_host *host,
626 nodeid_t nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628static void nodemgr_update_host_dev_links(struct hpsb_host *host)
629{
630 struct device *dev = &host->device;
631 struct node_entry *ne;
632
633 sysfs_remove_link(&dev->kobj, "irm_id");
634 sysfs_remove_link(&dev->kobj, "busmgr_id");
635 sysfs_remove_link(&dev->kobj, "host_id");
636
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200637 if ((ne = find_entry_by_nodeid(host, host->irm_id)) &&
638 sysfs_create_link(&dev->kobj, &ne->device.kobj, "irm_id"))
639 goto fail;
640 if ((ne = find_entry_by_nodeid(host, host->busmgr_id)) &&
641 sysfs_create_link(&dev->kobj, &ne->device.kobj, "busmgr_id"))
642 goto fail;
643 if ((ne = find_entry_by_nodeid(host, host->node_id)) &&
644 sysfs_create_link(&dev->kobj, &ne->device.kobj, "host_id"))
645 goto fail;
646 return;
647fail:
648 HPSB_ERR("Failed to update sysfs attributes for host %d", host->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
651static void nodemgr_create_ud_dev_files(struct unit_directory *ud)
652{
653 struct device *dev = &ud->device;
654 int i;
655
656 for (i = 0; i < ARRAY_SIZE(fw_ud_attrs); i++)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200657 if (device_create_file(dev, fw_ud_attrs[i]))
658 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (ud->flags & UNIT_DIRECTORY_SPECIFIER_ID)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200660 if (device_create_file(dev, &dev_attr_ud_specifier_id))
661 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (ud->flags & UNIT_DIRECTORY_VERSION)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200663 if (device_create_file(dev, &dev_attr_ud_version))
664 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (ud->flags & UNIT_DIRECTORY_VENDOR_ID) {
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200666 if (device_create_file(dev, &dev_attr_ud_vendor_id))
667 goto fail;
668 if (ud->vendor_name_kv &&
669 device_create_file(dev, &dev_attr_ud_vendor_name_kv))
670 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (ud->flags & UNIT_DIRECTORY_MODEL_ID) {
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200673 if (device_create_file(dev, &dev_attr_ud_model_id))
674 goto fail;
675 if (ud->model_name_kv &&
676 device_create_file(dev, &dev_attr_ud_model_name_kv))
677 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200679 return;
680fail:
Stefan Richter9be51c52007-03-30 19:21:05 +0200681 HPSB_ERR("Failed to add sysfs attribute");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684
685static int nodemgr_bus_match(struct device * dev, struct device_driver * drv)
686{
Stefan Richterd41bba22006-11-22 21:28:19 +0100687 struct hpsb_protocol_driver *driver;
688 struct unit_directory *ud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 struct ieee1394_device_id *id;
690
691 /* We only match unit directories */
692 if (dev->platform_data != &nodemgr_ud_platform_data)
693 return 0;
694
695 ud = container_of(dev, struct unit_directory, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (ud->ne->in_limbo || ud->ignore_driver)
697 return 0;
698
Stefan Richter8252bbb2006-11-22 21:09:42 +0100699 /* We only match drivers of type hpsb_protocol_driver */
700 if (drv == &nodemgr_mid_layer_driver)
701 return 0;
702
703 driver = container_of(drv, struct hpsb_protocol_driver, driver);
Stefan Richterd41bba22006-11-22 21:28:19 +0100704 for (id = driver->id_table; id->match_flags != 0; id++) {
705 if ((id->match_flags & IEEE1394_MATCH_VENDOR_ID) &&
706 id->vendor_id != ud->vendor_id)
707 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Stefan Richterd41bba22006-11-22 21:28:19 +0100709 if ((id->match_flags & IEEE1394_MATCH_MODEL_ID) &&
710 id->model_id != ud->model_id)
711 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Stefan Richterd41bba22006-11-22 21:28:19 +0100713 if ((id->match_flags & IEEE1394_MATCH_SPECIFIER_ID) &&
714 id->specifier_id != ud->specifier_id)
715 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Stefan Richterd41bba22006-11-22 21:28:19 +0100717 if ((id->match_flags & IEEE1394_MATCH_VERSION) &&
718 id->version != ud->version)
719 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 return 1;
Stefan Richterd41bba22006-11-22 21:28:19 +0100722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 return 0;
725}
726
727
Stefan Richterb07375b2006-10-22 16:16:27 +0200728static DEFINE_MUTEX(nodemgr_serialize_remove_uds);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730static void nodemgr_remove_uds(struct node_entry *ne)
731{
Kay Sieversdd7f2922007-05-25 11:50:53 +0200732 struct device *dev;
Stefan Richter1e4f7bc2006-12-02 22:23:34 +0100733 struct unit_directory *tmp, *ud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Kay Sieversdd7f2922007-05-25 11:50:53 +0200735 /* Iteration over nodemgr_ud_class.devices has to be protected by
736 * nodemgr_ud_class.sem, but device_unregister() will eventually
Stefan Richter1e4f7bc2006-12-02 22:23:34 +0100737 * take nodemgr_ud_class.sem too. Therefore pick out one ud at a time,
738 * release the semaphore, and then unregister the ud. Since this code
739 * may be called from other contexts besides the knodemgrds, protect the
Stefan Richterb07375b2006-10-22 16:16:27 +0200740 * gap after release of the semaphore by nodemgr_serialize_remove_uds.
741 */
Stefan Richterb07375b2006-10-22 16:16:27 +0200742 mutex_lock(&nodemgr_serialize_remove_uds);
Stefan Richter1e4f7bc2006-12-02 22:23:34 +0100743 for (;;) {
744 ud = NULL;
745 down(&nodemgr_ud_class.sem);
Kay Sieversdd7f2922007-05-25 11:50:53 +0200746 list_for_each_entry(dev, &nodemgr_ud_class.devices, node) {
747 tmp = container_of(dev, struct unit_directory,
748 unit_dev);
Stefan Richter1e4f7bc2006-12-02 22:23:34 +0100749 if (tmp->ne == ne) {
750 ud = tmp;
751 break;
752 }
Stefan Richterb07375b2006-10-22 16:16:27 +0200753 }
Stefan Richter1e4f7bc2006-12-02 22:23:34 +0100754 up(&nodemgr_ud_class.sem);
755 if (ud == NULL)
756 break;
Kay Sieversdd7f2922007-05-25 11:50:53 +0200757 device_unregister(&ud->unit_dev);
Stefan Richter1e4f7bc2006-12-02 22:23:34 +0100758 device_unregister(&ud->device);
Stefan Richterb07375b2006-10-22 16:16:27 +0200759 }
Stefan Richterb07375b2006-10-22 16:16:27 +0200760 mutex_unlock(&nodemgr_serialize_remove_uds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
763
764static void nodemgr_remove_ne(struct node_entry *ne)
765{
Stefan Richtercec1a312006-11-18 23:16:11 +0100766 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 dev = get_device(&ne->device);
769 if (!dev)
770 return;
771
772 HPSB_DEBUG("Node removed: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
773 NODE_BUS_ARGS(ne->host, ne->nodeid), (unsigned long long)ne->guid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 nodemgr_remove_uds(ne);
775
Kay Sieversdd7f2922007-05-25 11:50:53 +0200776 device_unregister(&ne->node_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 device_unregister(dev);
778
779 put_device(dev);
780}
781
gregkh@suse.de643603222005-03-25 11:45:31 -0800782static int __nodemgr_remove_host_dev(struct device *dev, void *data)
783{
Kay Sieversdd7f2922007-05-25 11:50:53 +0200784 if (dev->bus == &ieee1394_bus_type)
785 nodemgr_remove_ne(container_of(dev, struct node_entry,
786 device));
gregkh@suse.de643603222005-03-25 11:45:31 -0800787 return 0;
788}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790static void nodemgr_remove_host_dev(struct device *dev)
791{
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200792 WARN_ON(device_for_each_child(dev, NULL, __nodemgr_remove_host_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 sysfs_remove_link(&dev->kobj, "irm_id");
794 sysfs_remove_link(&dev->kobj, "busmgr_id");
795 sysfs_remove_link(&dev->kobj, "host_id");
796}
797
798
799static void nodemgr_update_bus_options(struct node_entry *ne)
800{
801#ifdef CONFIG_IEEE1394_VERBOSEDEBUG
802 static const u16 mr[] = { 4, 64, 1024, 0};
803#endif
804 quadlet_t busoptions = be32_to_cpu(ne->csr->bus_info_data[2]);
805
Stefan Richterd41bba22006-11-22 21:28:19 +0100806 ne->busopt.irmc = (busoptions >> 31) & 1;
807 ne->busopt.cmc = (busoptions >> 30) & 1;
808 ne->busopt.isc = (busoptions >> 29) & 1;
809 ne->busopt.bmc = (busoptions >> 28) & 1;
810 ne->busopt.pmc = (busoptions >> 27) & 1;
811 ne->busopt.cyc_clk_acc = (busoptions >> 16) & 0xff;
812 ne->busopt.max_rec = 1 << (((busoptions >> 12) & 0xf) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 ne->busopt.max_rom = (busoptions >> 8) & 0x3;
Stefan Richterd41bba22006-11-22 21:28:19 +0100814 ne->busopt.generation = (busoptions >> 4) & 0xf;
815 ne->busopt.lnkspd = busoptions & 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 HPSB_VERBOSE("NodeMgr: raw=0x%08x irmc=%d cmc=%d isc=%d bmc=%d pmc=%d "
818 "cyc_clk_acc=%d max_rec=%d max_rom=%d gen=%d lspd=%d",
819 busoptions, ne->busopt.irmc, ne->busopt.cmc,
820 ne->busopt.isc, ne->busopt.bmc, ne->busopt.pmc,
821 ne->busopt.cyc_clk_acc, ne->busopt.max_rec,
822 mr[ne->busopt.max_rom],
823 ne->busopt.generation, ne->busopt.lnkspd);
824}
825
826
827static struct node_entry *nodemgr_create_node(octlet_t guid, struct csr1212_csr *csr,
828 struct host_info *hi, nodeid_t nodeid,
829 unsigned int generation)
830{
831 struct hpsb_host *host = hi->host;
Stefan Richter85511582005-11-07 06:31:45 -0500832 struct node_entry *ne;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Stefan Richter85511582005-11-07 06:31:45 -0500834 ne = kzalloc(sizeof(*ne), GFP_KERNEL);
835 if (!ne)
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200836 goto fail_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Stefan Richter85511582005-11-07 06:31:45 -0500838 ne->host = host;
839 ne->nodeid = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 ne->generation = generation;
841 ne->needs_probe = 1;
842
Stefan Richter85511582005-11-07 06:31:45 -0500843 ne->guid = guid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 ne->guid_vendor_id = (guid >> 40) & 0xffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 ne->csr = csr;
846
847 memcpy(&ne->device, &nodemgr_dev_template_ne,
848 sizeof(ne->device));
849 ne->device.parent = &host->device;
850 snprintf(ne->device.bus_id, BUS_ID_SIZE, "%016Lx",
851 (unsigned long long)(ne->guid));
852
Kay Sieversdd7f2922007-05-25 11:50:53 +0200853 ne->node_dev.parent = &ne->device;
854 ne->node_dev.class = &nodemgr_ne_class;
855 snprintf(ne->node_dev.bus_id, BUS_ID_SIZE, "%016Lx",
856 (unsigned long long)(ne->guid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200858 if (device_register(&ne->device))
859 goto fail_devreg;
Kay Sieversdd7f2922007-05-25 11:50:53 +0200860 if (device_register(&ne->node_dev))
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200861 goto fail_classdevreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 get_device(&ne->device);
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 nodemgr_create_ne_dev_files(ne);
865
866 nodemgr_update_bus_options(ne);
867
868 HPSB_DEBUG("%s added: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
869 (host->node_id == nodeid) ? "Host" : "Node",
870 NODE_BUS_ARGS(host, nodeid), (unsigned long long)guid);
871
Stefan Richter85511582005-11-07 06:31:45 -0500872 return ne;
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200873
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200874fail_classdevreg:
875 device_unregister(&ne->device);
876fail_devreg:
877 kfree(ne);
878fail_alloc:
879 HPSB_ERR("Failed to create node ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
880 NODE_BUS_ARGS(host, nodeid), (unsigned long long)guid);
881
882 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885
886static struct node_entry *find_entry_by_guid(u64 guid)
887{
Kay Sieversdd7f2922007-05-25 11:50:53 +0200888 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 struct node_entry *ne, *ret_ne = NULL;
890
Stefan Richterb07375b2006-10-22 16:16:27 +0200891 down(&nodemgr_ne_class.sem);
Kay Sieversdd7f2922007-05-25 11:50:53 +0200892 list_for_each_entry(dev, &nodemgr_ne_class.devices, node) {
893 ne = container_of(dev, struct node_entry, node_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (ne->guid == guid) {
896 ret_ne = ne;
897 break;
898 }
899 }
Stefan Richterb07375b2006-10-22 16:16:27 +0200900 up(&nodemgr_ne_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Stefan Richterd41bba22006-11-22 21:28:19 +0100902 return ret_ne;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
905
Stefan Richterb07375b2006-10-22 16:16:27 +0200906static struct node_entry *find_entry_by_nodeid(struct hpsb_host *host,
907 nodeid_t nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Kay Sieversdd7f2922007-05-25 11:50:53 +0200909 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 struct node_entry *ne, *ret_ne = NULL;
911
Stefan Richterb07375b2006-10-22 16:16:27 +0200912 down(&nodemgr_ne_class.sem);
Kay Sieversdd7f2922007-05-25 11:50:53 +0200913 list_for_each_entry(dev, &nodemgr_ne_class.devices, node) {
914 ne = container_of(dev, struct node_entry, node_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 if (ne->host == host && ne->nodeid == nodeid) {
917 ret_ne = ne;
918 break;
919 }
920 }
Stefan Richterb07375b2006-10-22 16:16:27 +0200921 up(&nodemgr_ne_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 return ret_ne;
924}
925
926
927static void nodemgr_register_device(struct node_entry *ne,
928 struct unit_directory *ud, struct device *parent)
929{
930 memcpy(&ud->device, &nodemgr_dev_template_ud,
931 sizeof(ud->device));
932
933 ud->device.parent = parent;
934
935 snprintf(ud->device.bus_id, BUS_ID_SIZE, "%s-%u",
936 ne->device.bus_id, ud->id);
937
Kay Sieversdd7f2922007-05-25 11:50:53 +0200938 ud->unit_dev.parent = &ud->device;
939 ud->unit_dev.class = &nodemgr_ud_class;
940 snprintf(ud->unit_dev.bus_id, BUS_ID_SIZE, "%s-%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 ne->device.bus_id, ud->id);
942
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200943 if (device_register(&ud->device))
944 goto fail_devreg;
Kay Sieversdd7f2922007-05-25 11:50:53 +0200945 if (device_register(&ud->unit_dev))
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200946 goto fail_classdevreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 get_device(&ud->device);
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 nodemgr_create_ud_dev_files(ud);
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200950
951 return;
952
Stefan Richterc1c9c7c2006-10-10 21:19:21 +0200953fail_classdevreg:
954 device_unregister(&ud->device);
955fail_devreg:
956 HPSB_ERR("Failed to create unit %s", ud->device.bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
959
960/* This implementation currently only scans the config rom and its
961 * immediate unit directories looking for software_id and
962 * software_version entries, in order to get driver autoloading working. */
963static struct unit_directory *nodemgr_process_unit_directory
964 (struct host_info *hi, struct node_entry *ne, struct csr1212_keyval *ud_kv,
965 unsigned int *id, struct unit_directory *parent)
966{
967 struct unit_directory *ud;
968 struct unit_directory *ud_child = NULL;
969 struct csr1212_dentry *dentry;
970 struct csr1212_keyval *kv;
971 u8 last_key_id = 0;
972
Stefan Richter85511582005-11-07 06:31:45 -0500973 ud = kzalloc(sizeof(*ud), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (!ud)
975 goto unit_directory_error;
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 ud->ne = ne;
978 ud->ignore_driver = ignore_drivers;
Stefan Richtera52938f2007-05-27 13:11:47 +0200979 ud->address = ud_kv->offset + CSR1212_REGISTER_SPACE_BASE;
Stefan Richterd7794c82007-05-27 13:17:15 +0200980 ud->directory_id = ud->address & 0xffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 ud->ud_kv = ud_kv;
982 ud->id = (*id)++;
983
984 csr1212_for_each_dir_entry(ne->csr, kv, ud_kv, dentry) {
985 switch (kv->key.id) {
986 case CSR1212_KV_ID_VENDOR:
987 if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
988 ud->vendor_id = kv->value.immediate;
989 ud->flags |= UNIT_DIRECTORY_VENDOR_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991 break;
992
993 case CSR1212_KV_ID_MODEL:
994 ud->model_id = kv->value.immediate;
995 ud->flags |= UNIT_DIRECTORY_MODEL_ID;
996 break;
997
998 case CSR1212_KV_ID_SPECIFIER_ID:
999 ud->specifier_id = kv->value.immediate;
1000 ud->flags |= UNIT_DIRECTORY_SPECIFIER_ID;
1001 break;
1002
1003 case CSR1212_KV_ID_VERSION:
1004 ud->version = kv->value.immediate;
1005 ud->flags |= UNIT_DIRECTORY_VERSION;
1006 break;
1007
1008 case CSR1212_KV_ID_DESCRIPTOR:
1009 if (kv->key.type == CSR1212_KV_TYPE_LEAF &&
1010 CSR1212_DESCRIPTOR_LEAF_TYPE(kv) == 0 &&
1011 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv) == 0 &&
1012 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv) == 0 &&
1013 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv) == 0 &&
1014 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv) == 0) {
1015 switch (last_key_id) {
1016 case CSR1212_KV_ID_VENDOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 csr1212_keep_keyval(kv);
Stefan Richter17a19b72007-09-15 14:50:25 +02001018 ud->vendor_name_kv = kv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 break;
1020
1021 case CSR1212_KV_ID_MODEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 csr1212_keep_keyval(kv);
Stefan Richter17a19b72007-09-15 14:50:25 +02001023 ud->model_name_kv = kv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 break;
1025
1026 }
1027 } /* else if (kv->key.type == CSR1212_KV_TYPE_DIRECTORY) ... */
1028 break;
1029
1030 case CSR1212_KV_ID_DEPENDENT_INFO:
1031 /* Logical Unit Number */
1032 if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
1033 if (ud->flags & UNIT_DIRECTORY_HAS_LUN) {
Eric Sesterhennbfe89d72006-10-29 23:13:40 +03001034 ud_child = kmemdup(ud, sizeof(*ud_child), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (!ud_child)
1036 goto unit_directory_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 nodemgr_register_device(ne, ud_child, &ne->device);
1038 ud_child = NULL;
1039
1040 ud->id = (*id)++;
1041 }
1042 ud->lun = kv->value.immediate;
1043 ud->flags |= UNIT_DIRECTORY_HAS_LUN;
1044
1045 /* Logical Unit Directory */
1046 } else if (kv->key.type == CSR1212_KV_TYPE_DIRECTORY) {
1047 /* This should really be done in SBP2 as this is
1048 * doing SBP2 specific parsing.
1049 */
1050
1051 /* first register the parent unit */
1052 ud->flags |= UNIT_DIRECTORY_HAS_LUN_DIRECTORY;
1053 if (ud->device.bus != &ieee1394_bus_type)
1054 nodemgr_register_device(ne, ud, &ne->device);
1055
1056 /* process the child unit */
1057 ud_child = nodemgr_process_unit_directory(hi, ne, kv, id, ud);
1058
1059 if (ud_child == NULL)
1060 break;
1061
Kay Sievers312c0042005-11-16 09:00:00 +01001062 /* inherit unspecified values, the driver core picks it up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if ((ud->flags & UNIT_DIRECTORY_MODEL_ID) &&
1064 !(ud_child->flags & UNIT_DIRECTORY_MODEL_ID))
1065 {
1066 ud_child->flags |= UNIT_DIRECTORY_MODEL_ID;
1067 ud_child->model_id = ud->model_id;
1068 }
1069 if ((ud->flags & UNIT_DIRECTORY_SPECIFIER_ID) &&
1070 !(ud_child->flags & UNIT_DIRECTORY_SPECIFIER_ID))
1071 {
1072 ud_child->flags |= UNIT_DIRECTORY_SPECIFIER_ID;
1073 ud_child->specifier_id = ud->specifier_id;
1074 }
1075 if ((ud->flags & UNIT_DIRECTORY_VERSION) &&
1076 !(ud_child->flags & UNIT_DIRECTORY_VERSION))
1077 {
1078 ud_child->flags |= UNIT_DIRECTORY_VERSION;
1079 ud_child->version = ud->version;
1080 }
1081
1082 /* register the child unit */
1083 ud_child->flags |= UNIT_DIRECTORY_LUN_DIRECTORY;
1084 nodemgr_register_device(ne, ud_child, &ud->device);
1085 }
1086
1087 break;
1088
Stefan Richterd7794c82007-05-27 13:17:15 +02001089 case CSR1212_KV_ID_DIRECTORY_ID:
1090 ud->directory_id = kv->value.immediate;
1091 break;
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 default:
1094 break;
1095 }
1096 last_key_id = kv->key.id;
1097 }
1098
1099 /* do not process child units here and only if not already registered */
1100 if (!parent && ud->device.bus != &ieee1394_bus_type)
1101 nodemgr_register_device(ne, ud, &ne->device);
1102
1103 return ud;
1104
1105unit_directory_error:
Jody McIntyre616b8592005-05-16 21:54:01 -07001106 kfree(ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return NULL;
1108}
1109
1110
1111static void nodemgr_process_root_directory(struct host_info *hi, struct node_entry *ne)
1112{
1113 unsigned int ud_id = 0;
1114 struct csr1212_dentry *dentry;
Stefan Richter638d5bb2007-09-15 14:45:53 +02001115 struct csr1212_keyval *kv, *vendor_name_kv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 u8 last_key_id = 0;
1117
1118 ne->needs_probe = 0;
1119
1120 csr1212_for_each_dir_entry(ne->csr, kv, ne->csr->root_kv, dentry) {
1121 switch (kv->key.id) {
1122 case CSR1212_KV_ID_VENDOR:
1123 ne->vendor_id = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 break;
1125
1126 case CSR1212_KV_ID_NODE_CAPABILITIES:
1127 ne->capabilities = kv->value.immediate;
1128 break;
1129
1130 case CSR1212_KV_ID_UNIT:
1131 nodemgr_process_unit_directory(hi, ne, kv, &ud_id, NULL);
1132 break;
1133
1134 case CSR1212_KV_ID_DESCRIPTOR:
1135 if (last_key_id == CSR1212_KV_ID_VENDOR) {
1136 if (kv->key.type == CSR1212_KV_TYPE_LEAF &&
1137 CSR1212_DESCRIPTOR_LEAF_TYPE(kv) == 0 &&
1138 CSR1212_DESCRIPTOR_LEAF_SPECIFIER_ID(kv) == 0 &&
1139 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_WIDTH(kv) == 0 &&
1140 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_CHAR_SET(kv) == 0 &&
1141 CSR1212_TEXTUAL_DESCRIPTOR_LEAF_LANGUAGE(kv) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 csr1212_keep_keyval(kv);
Stefan Richter638d5bb2007-09-15 14:45:53 +02001143 vendor_name_kv = kv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145 }
1146 break;
1147 }
1148 last_key_id = kv->key.id;
1149 }
1150
Stefan Richter93245472007-03-30 19:19:55 +02001151 if (ne->vendor_name_kv) {
Stefan Richter638d5bb2007-09-15 14:45:53 +02001152 kv = ne->vendor_name_kv;
1153 ne->vendor_name_kv = vendor_name_kv;
1154 csr1212_release_keyval(kv);
1155 } else if (vendor_name_kv) {
1156 ne->vendor_name_kv = vendor_name_kv;
1157 if (device_create_file(&ne->device,
1158 &dev_attr_ne_vendor_name_kv) != 0)
Stefan Richter9be51c52007-03-30 19:21:05 +02001159 HPSB_ERR("Failed to add sysfs attribute");
Stefan Richter93245472007-03-30 19:19:55 +02001160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
1163#ifdef CONFIG_HOTPLUG
1164
Kay Sievers7eff2e72007-08-14 15:15:12 +02001165static int nodemgr_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
1167 struct unit_directory *ud;
Eric Rannaudbf624562007-03-30 22:23:12 -07001168 int retval = 0;
Olaf Hering9b19d852005-09-06 15:18:18 -07001169 /* ieee1394:venNmoNspNverN */
1170 char buf[8 + 1 + 3 + 8 + 2 + 8 + 2 + 8 + 3 + 8 + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Kay Sieversdd7f2922007-05-25 11:50:53 +02001172 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return -ENODEV;
1174
Kay Sieversdd7f2922007-05-25 11:50:53 +02001175 ud = container_of(dev, struct unit_directory, unit_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 if (ud->ne->in_limbo || ud->ignore_driver)
1178 return -ENODEV;
1179
1180#define PUT_ENVP(fmt,val) \
1181do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001182 retval = add_uevent_var(env, fmt, val); \
Eric Rannaudbf624562007-03-30 22:23:12 -07001183 if (retval) \
1184 return retval; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185} while (0)
1186
1187 PUT_ENVP("VENDOR_ID=%06x", ud->vendor_id);
1188 PUT_ENVP("MODEL_ID=%06x", ud->model_id);
1189 PUT_ENVP("GUID=%016Lx", (unsigned long long)ud->ne->guid);
1190 PUT_ENVP("SPECIFIER_ID=%06x", ud->specifier_id);
1191 PUT_ENVP("VERSION=%06x", ud->version);
Olaf Hering9b19d852005-09-06 15:18:18 -07001192 snprintf(buf, sizeof(buf), "ieee1394:ven%08Xmo%08Xsp%08Xver%08X",
1193 ud->vendor_id,
1194 ud->model_id,
1195 ud->specifier_id,
1196 ud->version);
1197 PUT_ENVP("MODALIAS=%s", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199#undef PUT_ENVP
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return 0;
1202}
1203
1204#else
1205
Kay Sievers7eff2e72007-08-14 15:15:12 +02001206static int nodemgr_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 return -ENODEV;
1209}
1210
1211#endif /* CONFIG_HOTPLUG */
1212
1213
Ben Collinsed30c262006-11-23 13:59:48 -05001214int __hpsb_register_protocol(struct hpsb_protocol_driver *drv,
1215 struct module *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Ben Collinsed30c262006-11-23 13:59:48 -05001217 int error;
1218
1219 drv->driver.bus = &ieee1394_bus_type;
1220 drv->driver.owner = owner;
1221 drv->driver.name = drv->name;
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 /* This will cause a probe for devices */
Ben Collinsed30c262006-11-23 13:59:48 -05001224 error = driver_register(&drv->driver);
Stefan Richter7fdfc902006-10-21 01:23:56 +02001225 if (!error)
Ben Collinsed30c262006-11-23 13:59:48 -05001226 nodemgr_create_drv_files(drv);
Stefan Richter7fdfc902006-10-21 01:23:56 +02001227 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
1230void hpsb_unregister_protocol(struct hpsb_protocol_driver *driver)
1231{
1232 nodemgr_remove_drv_files(driver);
1233 /* This will subsequently disconnect all devices that our driver
1234 * is attached to. */
1235 driver_unregister(&driver->driver);
1236}
1237
1238
1239/*
1240 * This function updates nodes that were present on the bus before the
1241 * reset and still are after the reset. The nodeid and the config rom
1242 * may have changed, and the drivers managing this device must be
1243 * informed that this device just went through a bus reset, to allow
1244 * the to take whatever actions required.
1245 */
1246static void nodemgr_update_node(struct node_entry *ne, struct csr1212_csr *csr,
1247 struct host_info *hi, nodeid_t nodeid,
1248 unsigned int generation)
1249{
1250 if (ne->nodeid != nodeid) {
1251 HPSB_DEBUG("Node changed: " NODE_BUS_FMT " -> " NODE_BUS_FMT,
1252 NODE_BUS_ARGS(ne->host, ne->nodeid),
1253 NODE_BUS_ARGS(ne->host, nodeid));
1254 ne->nodeid = nodeid;
1255 }
1256
1257 if (ne->busopt.generation != ((be32_to_cpu(csr->bus_info_data[2]) >> 4) & 0xf)) {
1258 kfree(ne->csr->private);
1259 csr1212_destroy_csr(ne->csr);
1260 ne->csr = csr;
1261
1262 /* If the node's configrom generation has changed, we
1263 * unregister all the unit directories. */
1264 nodemgr_remove_uds(ne);
1265
1266 nodemgr_update_bus_options(ne);
1267
1268 /* Mark the node as new, so it gets re-probed */
1269 ne->needs_probe = 1;
1270 } else {
1271 /* old cache is valid, so update its generation */
1272 struct nodemgr_csr_info *ci = ne->csr->private;
1273 ci->generation = generation;
1274 /* free the partially filled now unneeded new cache */
1275 kfree(csr->private);
1276 csr1212_destroy_csr(csr);
1277 }
1278
1279 if (ne->in_limbo)
1280 nodemgr_resume_ne(ne);
1281
1282 /* Mark the node current */
1283 ne->generation = generation;
1284}
1285
1286
1287
1288static void nodemgr_node_scan_one(struct host_info *hi,
1289 nodeid_t nodeid, int generation)
1290{
1291 struct hpsb_host *host = hi->host;
1292 struct node_entry *ne;
1293 octlet_t guid;
1294 struct csr1212_csr *csr;
1295 struct nodemgr_csr_info *ci;
Stefan Richterd7530a12006-07-03 00:58:01 +02001296 u8 *speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Stefan Richter85511582005-11-07 06:31:45 -05001298 ci = kmalloc(sizeof(*ci), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (!ci)
1300 return;
1301
1302 ci->host = host;
1303 ci->nodeid = nodeid;
1304 ci->generation = generation;
Stefan Richterd7530a12006-07-03 00:58:01 +02001305
1306 /* Prepare for speed probe which occurs when reading the ROM */
1307 speed = &(host->speed[NODEID_TO_NODE(nodeid)]);
1308 if (*speed > host->csr.lnk_spd)
1309 *speed = host->csr.lnk_spd;
1310 ci->speed_unverified = *speed > IEEE1394_SPEED_100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 /* We need to detect when the ConfigROM's generation has changed,
1313 * so we only update the node's info when it needs to be. */
1314
1315 csr = csr1212_create_csr(&nodemgr_csr_ops, 5 * sizeof(quadlet_t), ci);
1316 if (!csr || csr1212_parse_csr(csr) != CSR1212_SUCCESS) {
1317 HPSB_ERR("Error parsing configrom for node " NODE_BUS_FMT,
1318 NODE_BUS_ARGS(host, nodeid));
1319 if (csr)
1320 csr1212_destroy_csr(csr);
1321 kfree(ci);
1322 return;
1323 }
1324
1325 if (csr->bus_info_data[1] != IEEE1394_BUSID_MAGIC) {
1326 /* This isn't a 1394 device, but we let it slide. There
1327 * was a report of a device with broken firmware which
1328 * reported '2394' instead of '1394', which is obviously a
1329 * mistake. One would hope that a non-1394 device never
1330 * gets connected to Firewire bus. If someone does, we
1331 * shouldn't be held responsible, so we'll allow it with a
1332 * warning. */
1333 HPSB_WARN("Node " NODE_BUS_FMT " has invalid busID magic [0x%08x]",
1334 NODE_BUS_ARGS(host, nodeid), csr->bus_info_data[1]);
1335 }
1336
1337 guid = ((u64)be32_to_cpu(csr->bus_info_data[3]) << 32) | be32_to_cpu(csr->bus_info_data[4]);
1338 ne = find_entry_by_guid(guid);
1339
1340 if (ne && ne->host != host && ne->in_limbo) {
1341 /* Must have moved this device from one host to another */
1342 nodemgr_remove_ne(ne);
1343 ne = NULL;
1344 }
1345
1346 if (!ne)
1347 nodemgr_create_node(guid, csr, hi, nodeid, generation);
1348 else
1349 nodemgr_update_node(ne, csr, hi, nodeid, generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352
1353static void nodemgr_node_scan(struct host_info *hi, int generation)
1354{
Stefan Richterd41bba22006-11-22 21:28:19 +01001355 int count;
1356 struct hpsb_host *host = hi->host;
1357 struct selfid *sid = (struct selfid *)host->topology_map;
1358 nodeid_t nodeid = LOCAL_BUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Stefan Richterd41bba22006-11-22 21:28:19 +01001360 /* Scan each node on the bus */
1361 for (count = host->selfid_count; count; count--, sid++) {
1362 if (sid->extended)
1363 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Stefan Richterd41bba22006-11-22 21:28:19 +01001365 if (!sid->link_active) {
1366 nodeid++;
1367 continue;
1368 }
1369 nodemgr_node_scan_one(hi, nodeid++, generation);
1370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
1373
1374static void nodemgr_suspend_ne(struct node_entry *ne)
1375{
Kay Sieversdd7f2922007-05-25 11:50:53 +02001376 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 struct unit_directory *ud;
Stefan Richtera0e857e2007-06-17 23:47:45 +02001378 struct device_driver *drv;
1379 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 HPSB_DEBUG("Node suspended: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
1382 NODE_BUS_ARGS(ne->host, ne->nodeid), (unsigned long long)ne->guid);
1383
1384 ne->in_limbo = 1;
Stefan Richterc1c9c7c2006-10-10 21:19:21 +02001385 WARN_ON(device_create_file(&ne->device, &dev_attr_ne_in_limbo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Stefan Richterb07375b2006-10-22 16:16:27 +02001387 down(&nodemgr_ud_class.sem);
Kay Sieversdd7f2922007-05-25 11:50:53 +02001388 list_for_each_entry(dev, &nodemgr_ud_class.devices, node) {
1389 ud = container_of(dev, struct unit_directory, unit_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (ud->ne != ne)
1391 continue;
1392
Stefan Richtera0e857e2007-06-17 23:47:45 +02001393 drv = get_driver(ud->device.driver);
1394 if (!drv)
1395 continue;
1396
1397 error = 1; /* release if suspend is not implemented */
1398 if (drv->suspend) {
1399 down(&ud->device.sem);
1400 error = drv->suspend(&ud->device, PMSG_SUSPEND);
1401 up(&ud->device.sem);
1402 }
1403 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 device_release_driver(&ud->device);
Stefan Richtera0e857e2007-06-17 23:47:45 +02001405 put_driver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001407 up(&nodemgr_ud_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
1410
1411static void nodemgr_resume_ne(struct node_entry *ne)
1412{
Kay Sieversdd7f2922007-05-25 11:50:53 +02001413 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 struct unit_directory *ud;
Stefan Richtera0e857e2007-06-17 23:47:45 +02001415 struct device_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 ne->in_limbo = 0;
1418 device_remove_file(&ne->device, &dev_attr_ne_in_limbo);
1419
Stefan Richterb07375b2006-10-22 16:16:27 +02001420 down(&nodemgr_ud_class.sem);
Kay Sieversdd7f2922007-05-25 11:50:53 +02001421 list_for_each_entry(dev, &nodemgr_ud_class.devices, node) {
1422 ud = container_of(dev, struct unit_directory, unit_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (ud->ne != ne)
1424 continue;
1425
Stefan Richtera0e857e2007-06-17 23:47:45 +02001426 drv = get_driver(ud->device.driver);
1427 if (!drv)
1428 continue;
1429
1430 if (drv->resume) {
1431 down(&ud->device.sem);
1432 drv->resume(&ud->device);
1433 up(&ud->device.sem);
1434 }
1435 put_driver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001437 up(&nodemgr_ud_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 HPSB_DEBUG("Node resumed: ID:BUS[" NODE_BUS_FMT "] GUID[%016Lx]",
1440 NODE_BUS_ARGS(ne->host, ne->nodeid), (unsigned long long)ne->guid);
1441}
1442
1443
1444static void nodemgr_update_pdrv(struct node_entry *ne)
1445{
Kay Sieversdd7f2922007-05-25 11:50:53 +02001446 struct device *dev;
Stefan Richtera0e857e2007-06-17 23:47:45 +02001447 struct unit_directory *ud;
1448 struct device_driver *drv;
1449 struct hpsb_protocol_driver *pdrv;
1450 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Stefan Richterb07375b2006-10-22 16:16:27 +02001452 down(&nodemgr_ud_class.sem);
Kay Sieversdd7f2922007-05-25 11:50:53 +02001453 list_for_each_entry(dev, &nodemgr_ud_class.devices, node) {
1454 ud = container_of(dev, struct unit_directory, unit_dev);
Stefan Richterb07375b2006-10-22 16:16:27 +02001455 if (ud->ne != ne)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 continue;
1457
Stefan Richtera0e857e2007-06-17 23:47:45 +02001458 drv = get_driver(ud->device.driver);
1459 if (!drv)
1460 continue;
1461
1462 error = 0;
1463 pdrv = container_of(drv, struct hpsb_protocol_driver, driver);
1464 if (pdrv->update) {
1465 down(&ud->device.sem);
1466 error = pdrv->update(ud);
1467 up(&ud->device.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
Stefan Richtera0e857e2007-06-17 23:47:45 +02001469 if (error)
1470 device_release_driver(&ud->device);
1471 put_driver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001473 up(&nodemgr_ud_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474}
1475
1476
Stefan Richter61c7f772005-12-05 16:28:59 -05001477/* Write the BROADCAST_CHANNEL as per IEEE1394a 8.3.2.3.11 and 8.4.2.3. This
1478 * seems like an optional service but in the end it is practically mandatory
1479 * as a consequence of these clauses.
1480 *
1481 * Note that we cannot do a broadcast write to all nodes at once because some
1482 * pre-1394a devices would hang. */
1483static void nodemgr_irm_write_bc(struct node_entry *ne, int generation)
1484{
1485 const u64 bc_addr = (CSR_REGISTER_BASE | CSR_BROADCAST_CHANNEL);
1486 quadlet_t bc_remote, bc_local;
Stefan Richter7fdfc902006-10-21 01:23:56 +02001487 int error;
Stefan Richter61c7f772005-12-05 16:28:59 -05001488
1489 if (!ne->host->is_irm || ne->generation != generation ||
1490 ne->nodeid == ne->host->node_id)
1491 return;
1492
1493 bc_local = cpu_to_be32(ne->host->csr.broadcast_channel);
1494
1495 /* Check if the register is implemented and 1394a compliant. */
Stefan Richter7fdfc902006-10-21 01:23:56 +02001496 error = hpsb_read(ne->host, ne->nodeid, generation, bc_addr, &bc_remote,
1497 sizeof(bc_remote));
1498 if (!error && bc_remote & cpu_to_be32(0x80000000) &&
Stefan Richter61c7f772005-12-05 16:28:59 -05001499 bc_remote != bc_local)
1500 hpsb_node_write(ne, bc_addr, &bc_local, sizeof(bc_local));
1501}
1502
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504static void nodemgr_probe_ne(struct host_info *hi, struct node_entry *ne, int generation)
1505{
1506 struct device *dev;
1507
1508 if (ne->host != hi->host || ne->in_limbo)
1509 return;
1510
1511 dev = get_device(&ne->device);
1512 if (!dev)
1513 return;
1514
Stefan Richter61c7f772005-12-05 16:28:59 -05001515 nodemgr_irm_write_bc(ne, generation);
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 /* If "needs_probe", then this is either a new or changed node we
1518 * rescan totally. If the generation matches for an existing node
1519 * (one that existed prior to the bus reset) we send update calls
1520 * down to the drivers. Otherwise, this is a dead node and we
1521 * suspend it. */
1522 if (ne->needs_probe)
1523 nodemgr_process_root_directory(hi, ne);
1524 else if (ne->generation == generation)
1525 nodemgr_update_pdrv(ne);
1526 else
1527 nodemgr_suspend_ne(ne);
1528
1529 put_device(dev);
1530}
1531
1532
1533static void nodemgr_node_probe(struct host_info *hi, int generation)
1534{
1535 struct hpsb_host *host = hi->host;
Kay Sieversdd7f2922007-05-25 11:50:53 +02001536 struct device *dev;
Stefan Richter51c1d802005-12-12 23:03:19 -05001537 struct node_entry *ne;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 /* Do some processing of the nodes we've probed. This pulls them
1540 * into the sysfs layer if needed, and can result in processing of
1541 * unit-directories, or just updating the node and it's
Stefan Richter51c1d802005-12-12 23:03:19 -05001542 * unit-directories.
1543 *
1544 * Run updates before probes. Usually, updates are time-critical
1545 * while probes are time-consuming. (Well, those probes need some
1546 * improvement...) */
1547
Stefan Richterb07375b2006-10-22 16:16:27 +02001548 down(&nodemgr_ne_class.sem);
Kay Sieversdd7f2922007-05-25 11:50:53 +02001549 list_for_each_entry(dev, &nodemgr_ne_class.devices, node) {
1550 ne = container_of(dev, struct node_entry, node_dev);
Stefan Richter51c1d802005-12-12 23:03:19 -05001551 if (!ne->needs_probe)
1552 nodemgr_probe_ne(hi, ne, generation);
1553 }
Kay Sieversdd7f2922007-05-25 11:50:53 +02001554 list_for_each_entry(dev, &nodemgr_ne_class.devices, node) {
1555 ne = container_of(dev, struct node_entry, node_dev);
Stefan Richter51c1d802005-12-12 23:03:19 -05001556 if (ne->needs_probe)
1557 nodemgr_probe_ne(hi, ne, generation);
1558 }
Stefan Richterd41bba22006-11-22 21:28:19 +01001559 up(&nodemgr_ne_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561
1562 /* If we had a bus reset while we were scanning the bus, it is
1563 * possible that we did not probe all nodes. In that case, we
1564 * skip the clean up for now, since we could remove nodes that
Stefan Richterd2f119f2006-07-03 12:02:35 -04001565 * were still on the bus. Another bus scan is pending which will
1566 * do the clean up eventually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 *
1568 * Now let's tell the bus to rescan our devices. This may seem
1569 * like overhead, but the driver-model core will only scan a
1570 * device for a driver when either the device is added, or when a
1571 * new driver is added. A bus reset is a good reason to rescan
1572 * devices that were there before. For example, an sbp2 device
1573 * may become available for login, if the host that held it was
1574 * just removed. */
1575
1576 if (generation == get_hpsb_generation(host))
Stefan Richter1f72cf52006-10-29 23:09:11 +01001577 if (bus_rescan_devices(&ieee1394_bus_type))
1578 HPSB_DEBUG("bus_rescan_devices had an error");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
Stefan Richter14c0fa22005-12-01 18:51:52 -05001581static int nodemgr_send_resume_packet(struct hpsb_host *host)
1582{
1583 struct hpsb_packet *packet;
Stefan Richter7fdfc902006-10-21 01:23:56 +02001584 int error = -ENOMEM;
Stefan Richter14c0fa22005-12-01 18:51:52 -05001585
1586 packet = hpsb_make_phypacket(host,
Stefan Richterd7758462005-12-01 18:51:56 -05001587 EXTPHYPACKET_TYPE_RESUME |
1588 NODEID_TO_NODE(host->node_id) << PHYPACKET_PORT_SHIFT);
Stefan Richter14c0fa22005-12-01 18:51:52 -05001589 if (packet) {
1590 packet->no_waiter = 1;
1591 packet->generation = get_hpsb_generation(host);
Stefan Richter7fdfc902006-10-21 01:23:56 +02001592 error = hpsb_send_packet(packet);
Stefan Richter14c0fa22005-12-01 18:51:52 -05001593 }
Stefan Richter7fdfc902006-10-21 01:23:56 +02001594 if (error)
Stefan Richter14c0fa22005-12-01 18:51:52 -05001595 HPSB_WARN("fw-host%d: Failed to broadcast resume packet",
1596 host->id);
Stefan Richter7fdfc902006-10-21 01:23:56 +02001597 return error;
Stefan Richter14c0fa22005-12-01 18:51:52 -05001598}
1599
Stefan Richter61c7f772005-12-05 16:28:59 -05001600/* Perform a few high-level IRM responsibilities. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601static int nodemgr_do_irm_duties(struct hpsb_host *host, int cycles)
1602{
1603 quadlet_t bc;
1604
1605 /* if irm_id == -1 then there is no IRM on this bus */
1606 if (!host->is_irm || host->irm_id == (nodeid_t)-1)
1607 return 1;
1608
Stefan Richter61c7f772005-12-05 16:28:59 -05001609 /* We are a 1394a-2000 compliant IRM. Set the validity bit. */
1610 host->csr.broadcast_channel |= 0x40000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 /* If there is no bus manager then we should set the root node's
1613 * force_root bit to promote bus stability per the 1394
1614 * spec. (8.4.2.6) */
1615 if (host->busmgr_id == 0xffff && host->node_count > 1)
1616 {
1617 u16 root_node = host->node_count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Jody McIntyre328699b2005-09-30 11:59:08 -07001619 /* get cycle master capability flag from root node */
1620 if (host->is_cycmst ||
1621 (!hpsb_read(host, LOCAL_BUS | root_node, get_hpsb_generation(host),
1622 (CSR_REGISTER_BASE + CSR_CONFIG_ROM + 2 * sizeof(quadlet_t)),
1623 &bc, sizeof(quadlet_t)) &&
1624 be32_to_cpu(bc) & 1 << CSR_CMC_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 hpsb_send_phy_config(host, root_node, -1);
1626 else {
1627 HPSB_DEBUG("The root node is not cycle master capable; "
1628 "selecting a new root node and resetting...");
1629
1630 if (cycles >= 5) {
1631 /* Oh screw it! Just leave the bus as it is */
1632 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1633 return 1;
1634 }
1635
1636 hpsb_send_phy_config(host, NODEID_TO_NODE(host->node_id), -1);
1637 hpsb_reset_bus(host, LONG_RESET_FORCE_ROOT);
1638
1639 return 0;
1640 }
1641 }
1642
Stefan Richter14c0fa22005-12-01 18:51:52 -05001643 /* Some devices suspend their ports while being connected to an inactive
1644 * host adapter, i.e. if connected before the low-level driver is
1645 * loaded. They become visible either when physically unplugged and
1646 * replugged, or when receiving a resume packet. Send one once. */
1647 if (!host->resume_packet_sent && !nodemgr_send_resume_packet(host))
1648 host->resume_packet_sent = 1;
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 return 1;
1651}
1652
1653/* We need to ensure that if we are not the IRM, that the IRM node is capable of
1654 * everything we can do, otherwise issue a bus reset and try to become the IRM
1655 * ourselves. */
1656static int nodemgr_check_irm_capability(struct hpsb_host *host, int cycles)
1657{
1658 quadlet_t bc;
1659 int status;
1660
1661 if (hpsb_disable_irm || host->is_irm)
1662 return 1;
1663
1664 status = hpsb_read(host, LOCAL_BUS | (host->irm_id),
1665 get_hpsb_generation(host),
1666 (CSR_REGISTER_BASE | CSR_BROADCAST_CHANNEL),
1667 &bc, sizeof(quadlet_t));
1668
1669 if (status < 0 || !(be32_to_cpu(bc) & 0x80000000)) {
1670 /* The current irm node does not have a valid BROADCAST_CHANNEL
1671 * register and we do, so reset the bus with force_root set */
1672 HPSB_DEBUG("Current remote IRM is not 1394a-2000 compliant, resetting...");
1673
1674 if (cycles >= 5) {
1675 /* Oh screw it! Just leave the bus as it is */
1676 HPSB_DEBUG("Stopping reset loop for IRM sanity");
1677 return 1;
1678 }
1679
1680 hpsb_send_phy_config(host, NODEID_TO_NODE(host->node_id), -1);
1681 hpsb_reset_bus(host, LONG_RESET_FORCE_ROOT);
1682
1683 return 0;
1684 }
1685
1686 return 1;
1687}
1688
1689static int nodemgr_host_thread(void *__hi)
1690{
1691 struct host_info *hi = (struct host_info *)__hi;
1692 struct hpsb_host *host = hi->host;
Stefan Richterb7a71792006-10-06 19:49:52 +02001693 unsigned int g, generation = 0;
Stefan Richterd2f119f2006-07-03 12:02:35 -04001694 int i, reset_cycles = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Rafael J. Wysocki83144182007-07-17 04:03:35 -07001696 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 /* Setup our device-model entries */
1698 nodemgr_create_host_dev_files(host);
1699
Stefan Richterd2f119f2006-07-03 12:02:35 -04001700 for (;;) {
1701 /* Sleep until next bus reset */
1702 set_current_state(TASK_INTERRUPTIBLE);
Stefan Richtera65421e2007-02-10 22:06:18 +01001703 if (get_hpsb_generation(host) == generation &&
1704 !kthread_should_stop())
Stefan Richterd2f119f2006-07-03 12:02:35 -04001705 schedule();
1706 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Stefan Richterd2f119f2006-07-03 12:02:35 -04001708 /* Thread may have been woken up to freeze or to exit */
1709 if (try_to_freeze())
1710 continue;
1711 if (kthread_should_stop())
1712 goto exit;
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 /* Pause for 1/4 second in 1/16 second intervals,
1715 * to make sure things settle down. */
Stefan Richterd2f119f2006-07-03 12:02:35 -04001716 g = get_hpsb_generation(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 for (i = 0; i < 4 ; i++) {
Satyam Sharma69e2b602007-08-15 20:05:38 +05301718 msleep_interruptible(63);
1719 if (kthread_should_stop())
Stefan Richtera0e857e2007-06-17 23:47:45 +02001720 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 /* Now get the generation in which the node ID's we collect
1723 * are valid. During the bus scan we will use this generation
1724 * for the read transactions, so that if another reset occurs
1725 * during the scan the transactions will fail instead of
1726 * returning bogus data. */
1727 generation = get_hpsb_generation(host);
1728
1729 /* If we get a reset before we are done waiting, then
Michael Opdenacker59c51592007-05-09 08:57:56 +02001730 * start the waiting over again */
Stefan Richterd2f119f2006-07-03 12:02:35 -04001731 if (generation != g)
1732 g = generation, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
1734
Jody McIntyre328699b2005-09-30 11:59:08 -07001735 if (!nodemgr_check_irm_capability(host, reset_cycles) ||
1736 !nodemgr_do_irm_duties(host, reset_cycles)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 reset_cycles++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 continue;
1739 }
Jody McIntyre328699b2005-09-30 11:59:08 -07001740 reset_cycles = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 /* Scan our nodes to get the bus options and create node
1743 * entries. This does not do the sysfs stuff, since that
Kay Sievers312c0042005-11-16 09:00:00 +01001744 * would trigger uevents and such, which is a bad idea at
1745 * this point. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 nodemgr_node_scan(hi, generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 /* This actually does the full probe, with sysfs
1749 * registration. */
1750 nodemgr_node_probe(hi, generation);
1751
1752 /* Update some of our sysfs symlinks */
1753 nodemgr_update_host_dev_links(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
Stefan Richterd2f119f2006-07-03 12:02:35 -04001755exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 HPSB_VERBOSE("NodeMgr: Exiting thread");
Stefan Richterd2f119f2006-07-03 12:02:35 -04001757 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
1759
Stefan Richterafd65462007-03-05 03:06:23 +01001760/**
1761 * nodemgr_for_each_host - call a function for each IEEE 1394 host
1762 * @data: an address to supply to the callback
1763 * @cb: function to call for each host
1764 *
1765 * Iterate the hosts, calling a given function with supplied data for each host.
1766 * If the callback fails on a host, i.e. if it returns a non-zero value, the
1767 * iteration is stopped.
1768 *
1769 * Return value: 0 on success, non-zero on failure (same as returned by last run
1770 * of the callback).
1771 */
1772int nodemgr_for_each_host(void *data, int (*cb)(struct hpsb_host *, void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Kay Sieversdd7f2922007-05-25 11:50:53 +02001774 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct hpsb_host *host;
1776 int error = 0;
1777
Stefan Richterb07375b2006-10-22 16:16:27 +02001778 down(&hpsb_host_class.sem);
Kay Sieversdd7f2922007-05-25 11:50:53 +02001779 list_for_each_entry(dev, &hpsb_host_class.devices, node) {
1780 host = container_of(dev, struct hpsb_host, host_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Stefan Richterafd65462007-03-05 03:06:23 +01001782 if ((error = cb(host, data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 break;
1784 }
Stefan Richterb07375b2006-10-22 16:16:27 +02001785 up(&hpsb_host_class.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
1787 return error;
1788}
1789
Stefan Richteref815332007-03-05 03:05:32 +01001790/* The following two convenience functions use a struct node_entry
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 * for addressing a node on the bus. They are intended for use by any
1792 * process context, not just the nodemgr thread, so we need to be a
1793 * little careful when reading out the node ID and generation. The
1794 * thing that can go wrong is that we get the node ID, then a bus
1795 * reset occurs, and then we read the generation. The node ID is
1796 * possibly invalid, but the generation is current, and we end up
1797 * sending a packet to a the wrong node.
1798 *
1799 * The solution is to make sure we read the generation first, so that
1800 * if a reset occurs in the process, we end up with a stale generation
1801 * and the transactions will fail instead of silently using wrong node
1802 * ID's.
1803 */
1804
Stefan Richterafd65462007-03-05 03:06:23 +01001805/**
1806 * hpsb_node_fill_packet - fill some destination information into a packet
1807 * @ne: destination node
1808 * @packet: packet to fill in
1809 *
1810 * This will fill in the given, pre-initialised hpsb_packet with the current
1811 * information from the node entry (host, node ID, bus generation number).
1812 */
1813void hpsb_node_fill_packet(struct node_entry *ne, struct hpsb_packet *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Stefan Richterafd65462007-03-05 03:06:23 +01001815 packet->host = ne->host;
1816 packet->generation = ne->generation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 barrier();
Stefan Richterafd65462007-03-05 03:06:23 +01001818 packet->node_id = ne->nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819}
1820
1821int hpsb_node_write(struct node_entry *ne, u64 addr,
1822 quadlet_t *buffer, size_t length)
1823{
1824 unsigned int generation = ne->generation;
1825
1826 barrier();
1827 return hpsb_write(ne->host, ne->nodeid, generation,
1828 addr, buffer, length);
1829}
1830
1831static void nodemgr_add_host(struct hpsb_host *host)
1832{
1833 struct host_info *hi;
1834
1835 hi = hpsb_create_hostinfo(&nodemgr_highlevel, host, sizeof(*hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 if (!hi) {
Stefan Richterd2f119f2006-07-03 12:02:35 -04001837 HPSB_ERR("NodeMgr: out of memory in add host");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return;
1839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 hi->host = host;
Stefan Richterd2f119f2006-07-03 12:02:35 -04001841 hi->thread = kthread_run(nodemgr_host_thread, hi, "knodemgrd_%d",
1842 host->id);
1843 if (IS_ERR(hi->thread)) {
1844 HPSB_ERR("NodeMgr: cannot start thread for host %d", host->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 hpsb_destroy_hostinfo(&nodemgr_highlevel, host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
1849static void nodemgr_host_reset(struct hpsb_host *host)
1850{
1851 struct host_info *hi = hpsb_get_hostinfo(&nodemgr_highlevel, host);
1852
Stefan Richterd2f119f2006-07-03 12:02:35 -04001853 if (hi) {
1854 HPSB_VERBOSE("NodeMgr: Processing reset for host %d", host->id);
1855 wake_up_process(hi->thread);
1856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
1859static void nodemgr_remove_host(struct hpsb_host *host)
1860{
1861 struct host_info *hi = hpsb_get_hostinfo(&nodemgr_highlevel, host);
1862
1863 if (hi) {
Stefan Richterd2f119f2006-07-03 12:02:35 -04001864 kthread_stop(hi->thread);
1865 nodemgr_remove_host_dev(&host->device);
1866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867}
1868
1869static struct hpsb_highlevel nodemgr_highlevel = {
1870 .name = "Node manager",
1871 .add_host = nodemgr_add_host,
1872 .host_reset = nodemgr_host_reset,
1873 .remove_host = nodemgr_remove_host,
1874};
1875
1876int init_ieee1394_nodemgr(void)
1877{
Stefan Richter7fdfc902006-10-21 01:23:56 +02001878 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Stefan Richter7fdfc902006-10-21 01:23:56 +02001880 error = class_register(&nodemgr_ne_class);
1881 if (error)
Stefan Richter91efa462007-02-06 02:34:45 +01001882 goto fail_ne;
Stefan Richter7fdfc902006-10-21 01:23:56 +02001883 error = class_register(&nodemgr_ud_class);
Stefan Richter91efa462007-02-06 02:34:45 +01001884 if (error)
1885 goto fail_ud;
Stefan Richter8252bbb2006-11-22 21:09:42 +01001886 error = driver_register(&nodemgr_mid_layer_driver);
Stefan Richter91efa462007-02-06 02:34:45 +01001887 if (error)
1888 goto fail_ml;
1889 /* This driver is not used if nodemgr is off (disable_nodemgr=1). */
1890 nodemgr_dev_template_host.driver = &nodemgr_mid_layer_driver;
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 hpsb_register_highlevel(&nodemgr_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return 0;
Stefan Richter91efa462007-02-06 02:34:45 +01001894
1895fail_ml:
1896 class_unregister(&nodemgr_ud_class);
1897fail_ud:
1898 class_unregister(&nodemgr_ne_class);
1899fail_ne:
1900 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901}
1902
1903void cleanup_ieee1394_nodemgr(void)
1904{
Stefan Richterd41bba22006-11-22 21:28:19 +01001905 hpsb_unregister_highlevel(&nodemgr_highlevel);
Stefan Richter91efa462007-02-06 02:34:45 +01001906 driver_unregister(&nodemgr_mid_layer_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 class_unregister(&nodemgr_ud_class);
1908 class_unregister(&nodemgr_ne_class);
1909}