1 /* -*- c-basic-offset: 8 -*-
3 * fw-topology.c - Incremental bus scan, based on bus topology
5 * Copyright (C) 2004-2006 Kristian Hoegsberg <krh@bitplanet.net>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software Foundation,
19 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 #include <linux/module.h>
23 #include <linux/wait.h>
24 #include <linux/errno.h>
25 #include "fw-transaction.h"
26 #include "fw-topology.h"
28 #define self_id_phy_id(q) (((q) >> 24) & 0x3f)
29 #define self_id_extended(q) (((q) >> 23) & 0x01)
30 #define self_id_link_on(q) (((q) >> 22) & 0x01)
31 #define self_id_gap_count(q) (((q) >> 16) & 0x3f)
32 #define self_id_phy_speed(q) (((q) >> 14) & 0x03)
33 #define self_id_contender(q) (((q) >> 11) & 0x01)
34 #define self_id_phy_initiator(q) (((q) >> 1) & 0x01)
35 #define self_id_more_packets(q) (((q) >> 0) & 0x01)
37 #define self_id_ext_sequence(q) (((q) >> 20) & 0x07)
39 static u32
*count_ports(u32
*sid
, int *total_port_count
, int *child_port_count
)
42 int port_type
, shift
, seq
;
44 *total_port_count
= 0;
45 *child_port_count
= 0;
52 port_type
= (q
>> shift
) & 0x03;
54 case SELFID_PORT_CHILD
:
55 (*child_port_count
)++;
56 case SELFID_PORT_PARENT
:
57 case SELFID_PORT_NCONN
:
58 (*total_port_count
)++;
59 case SELFID_PORT_NONE
:
65 if (!self_id_more_packets(q
))
72 /* Check that the extra packets actually are
73 * extended self ID packets and that the
74 * sequence numbers in the extended self ID
75 * packets increase as expected. */
77 if (!self_id_extended(q
) ||
78 seq
!= self_id_ext_sequence(q
))
86 static int get_port_type(u32
*sid
, int port_index
)
90 index
= (port_index
+ 5) / 8;
91 shift
= 16 - ((port_index
+ 5) & 7) * 2;
92 return (sid
[index
] >> shift
) & 0x03;
95 struct fw_node
*fw_node_create(u32 sid
, int port_count
, int color
)
99 node
= kzalloc(sizeof *node
+ port_count
* sizeof node
->ports
[0],
105 node
->node_id
= self_id_phy_id(sid
);
106 node
->link_on
= self_id_link_on(sid
);
107 node
->phy_speed
= self_id_phy_speed(sid
);
108 node
->port_count
= port_count
;
110 atomic_set(&node
->ref_count
, 1);
111 INIT_LIST_HEAD(&node
->link
);
117 * build_tree - Build the tree representation of the topology
118 * @self_ids: array of self IDs to create the tree from
119 * @self_id_count: the length of the self_ids array
120 * @local_id: the node ID of the local node
122 * This function builds the tree representation of the topology given
123 * by the self IDs from the latest bus reset. During the construction
124 * of the tree, the function checks that the self IDs are valid and
125 * internally consistent. On succcess this funtions returns the
126 * fw_node corresponding to the local card otherwise NULL.
128 static struct fw_node
*build_tree(struct fw_card
*card
)
130 struct fw_node
*node
, *child
, *local_node
;
131 struct list_head stack
, *h
;
132 u32
*sid
, *next_sid
, *end
, q
;
133 int i
, port_count
, child_port_count
, phy_id
, parent_count
, stack_depth
;
137 INIT_LIST_HEAD(&stack
);
139 sid
= card
->self_ids
;
140 end
= sid
+ card
->self_id_count
;
142 card
->irm_node
= NULL
;
145 next_sid
= count_ports(sid
, &port_count
, &child_port_count
);
147 if (next_sid
== NULL
) {
148 fw_error("Inconsistent extended self IDs.\n");
153 if (phy_id
!= self_id_phy_id(q
)) {
154 fw_error("PHY ID mismatch in self ID: %d != %d.\n",
155 phy_id
, self_id_phy_id(q
));
159 if (child_port_count
> stack_depth
) {
160 fw_error("Topology stack underflow\n");
164 /* Seek back from the top of our stack to find the
165 * start of the child nodes for this node. */
166 for (i
= 0, h
= &stack
; i
< child_port_count
; i
++)
170 node
= fw_node_create(q
, port_count
, card
->color
);
172 fw_error("Out of memory while building topology.");
176 if (phy_id
== (card
->node_id
& 0x3f))
179 if (self_id_contender(q
))
180 card
->irm_node
= node
;
184 for (i
= 0; i
< port_count
; i
++) {
185 switch (get_port_type(sid
, i
)) {
186 case SELFID_PORT_PARENT
:
187 /* Who's your daddy? We dont know the
188 * parent node at this time, so we
189 * temporarily abuse node->color for
190 * remembering the entry in the
191 * node->ports array where the parent
192 * node should be. Later, when we
193 * handle the parent node, we fix up
200 case SELFID_PORT_CHILD
:
201 node
->ports
[i
].node
= child
;
202 /* Fix up parent reference for this
204 child
->ports
[child
->color
].node
= node
;
205 child
->color
= card
->color
;
206 child
= fw_node(child
->link
.next
);
211 /* Check that the node reports exactly one parent
212 * port, except for the root, which of course should
213 * have no parents. */
214 if ((next_sid
== end
&& parent_count
!= 0) ||
215 (next_sid
< end
&& parent_count
!= 1)) {
216 fw_error("Parent port inconsistency for node %d: "
217 "parent_count=%d\n", phy_id
, parent_count
);
221 /* Pop the child nodes off the stack and push the new node. */
222 __list_del(h
->prev
, &stack
);
223 list_add_tail(&node
->link
, &stack
);
224 stack_depth
+= 1 - child_port_count
;
230 card
->root_node
= node
;
235 typedef void (*fw_node_callback_t
) (struct fw_card
* card
,
236 struct fw_node
* node
,
237 struct fw_node
* parent
);
240 for_each_fw_node(struct fw_card
*card
, struct fw_node
*root
,
241 fw_node_callback_t callback
)
243 struct list_head list
;
244 struct fw_node
*node
, *next
, *child
, *parent
;
247 INIT_LIST_HEAD(&list
);
250 list_add_tail(&root
->link
, &list
);
252 list_for_each_entry(node
, &list
, link
) {
253 node
->color
= card
->color
;
255 for (i
= 0; i
< node
->port_count
; i
++) {
256 child
= node
->ports
[i
].node
;
259 if (child
->color
== card
->color
)
263 list_add_tail(&child
->link
, &list
);
267 callback(card
, node
, parent
);
270 list_for_each_entry_safe(node
, next
, &list
, link
)
275 report_lost_node(struct fw_card
*card
,
276 struct fw_node
*node
, struct fw_node
*parent
)
278 fw_node_event(card
, node
, FW_NODE_DESTROYED
);
283 report_found_node(struct fw_card
*card
,
284 struct fw_node
*node
, struct fw_node
*parent
)
286 int b_path
= (node
->phy_speed
== SCODE_BETA
);
288 if (parent
!= NULL
) {
289 node
->max_speed
= min(parent
->max_speed
, node
->phy_speed
);
290 node
->b_path
= parent
->b_path
&& b_path
;
292 node
->max_speed
= node
->phy_speed
;
293 node
->b_path
= b_path
;
296 fw_node_event(card
, node
, FW_NODE_CREATED
);
299 void fw_destroy_nodes(struct fw_card
*card
)
303 spin_lock_irqsave(&card
->lock
, flags
);
305 if (card
->local_node
!= NULL
)
306 for_each_fw_node(card
, card
->local_node
, report_lost_node
);
307 spin_unlock_irqrestore(&card
->lock
, flags
);
310 static void move_tree(struct fw_node
*node0
, struct fw_node
*node1
, int port
)
312 struct fw_node
*tree
;
315 tree
= node1
->ports
[port
].node
;
316 node0
->ports
[port
].node
= tree
;
317 for (i
= 0; i
< tree
->port_count
; i
++) {
318 if (tree
->ports
[i
].node
== node1
) {
319 tree
->ports
[i
].node
= node0
;
326 * update_tree - compare the old topology tree for card with the new
327 * one specified by root. Queue the nodes and mark them as either
328 * found, lost or updated. Update the nodes in the card topology tree
332 update_tree(struct fw_card
*card
, struct fw_node
*root
, int *changed
)
334 struct list_head list0
, list1
;
335 struct fw_node
*node0
, *node1
;
338 INIT_LIST_HEAD(&list0
);
339 list_add_tail(&card
->local_node
->link
, &list0
);
340 INIT_LIST_HEAD(&list1
);
341 list_add_tail(&root
->link
, &list1
);
343 node0
= fw_node(list0
.next
);
344 node1
= fw_node(list1
.next
);
347 while (&node0
->link
!= &list0
) {
349 /* assert(node0->port_count == node1->port_count); */
350 if (node0
->link_on
&& !node1
->link_on
)
351 event
= FW_NODE_LINK_OFF
;
352 else if (!node0
->link_on
&& node1
->link_on
)
353 event
= FW_NODE_LINK_ON
;
355 event
= FW_NODE_UPDATED
;
357 node0
->node_id
= node1
->node_id
;
358 node0
->color
= card
->color
;
359 node0
->link_on
= node1
->link_on
;
360 node0
->initiated_reset
= node1
->initiated_reset
;
361 node1
->color
= card
->color
;
362 fw_node_event(card
, node0
, event
);
364 if (card
->root_node
== node1
)
365 card
->root_node
= node0
;
366 if (card
->irm_node
== node1
)
367 card
->irm_node
= node0
;
369 for (i
= 0; i
< node0
->port_count
; i
++) {
370 if (node0
->ports
[i
].node
&& node1
->ports
[i
].node
) {
371 /* This port didn't change, queue the
372 * connected node for further
374 if (node0
->ports
[i
].node
->color
== card
->color
)
376 list_add_tail(&node0
->ports
[i
].node
->link
,
378 list_add_tail(&node1
->ports
[i
].node
->link
,
380 } else if (node0
->ports
[i
].node
) {
381 /* The nodes connected here were
382 * unplugged; unref the lost nodes and
383 * queue FW_NODE_LOST callbacks for
386 for_each_fw_node(card
, node0
->ports
[i
].node
,
388 node0
->ports
[i
].node
= NULL
;
390 } else if (node1
->ports
[i
].node
) {
391 /* One or more node were connected to
392 * this port. Move the new nodes into
393 * the tree and queue FW_NODE_CREATED
394 * callbacks for them. */
395 move_tree(node0
, node1
, i
);
396 for_each_fw_node(card
, node0
->ports
[i
].node
,
402 node0
= fw_node(node0
->link
.next
);
403 node1
= fw_node(node1
->link
.next
);
408 fw_core_handle_bus_reset(struct fw_card
*card
,
409 int node_id
, int generation
,
410 int self_id_count
, u32
* self_ids
)
412 struct fw_node
*local_node
;
416 fw_flush_transactions(card
);
418 spin_lock_irqsave(&card
->lock
, flags
);
420 card
->node_id
= node_id
;
421 card
->self_id_count
= self_id_count
;
422 card
->generation
= generation
;
423 memcpy(card
->self_ids
, self_ids
, self_id_count
* 4);
425 local_node
= build_tree(card
);
429 if (local_node
== NULL
) {
430 fw_error("topology build failed\n");
431 /* FIXME: We need to issue a bus reset in this case. */
432 } else if (card
->local_node
== NULL
) {
433 card
->local_node
= local_node
;
434 for_each_fw_node(card
, local_node
, report_found_node
);
436 update_tree(card
, local_node
, &changed
);
439 spin_unlock_irqrestore(&card
->lock
, flags
);
442 EXPORT_SYMBOL(fw_core_handle_bus_reset
);
444 void fw_node_event(struct fw_card
*card
, struct fw_node
*node
, int event
)