blob: da61ec09183e230b857652e4a61a125b78aa3dd4 [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
Kristian Høgsberg3038e352006-12-19 19:58:27 -05002 * Copyright (C) 2003-2006 Kristian Hoegsberg <krh@bitplanet.net>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19#ifndef __fw_topology_h
20#define __fw_topology_h
21
22enum {
23 FW_NODE_CREATED = 0x00,
24 FW_NODE_UPDATED = 0x01,
25 FW_NODE_DESTROYED = 0x02,
26 FW_NODE_LINK_ON = 0x03,
Stefan Richter5af4e5e2007-01-21 20:45:32 +010027 FW_NODE_LINK_OFF = 0x04,
Kristian Høgsberg3038e352006-12-19 19:58:27 -050028};
29
30struct fw_port {
31 struct fw_node *node;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050032};
33
34struct fw_node {
35 u16 node_id;
Stefan Richter5e20c282007-01-21 20:44:09 +010036 u8 color;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050037 u8 port_count;
Stefan Richterf1397492007-06-10 21:31:36 +020038 u8 link_on : 1;
39 u8 initiated_reset : 1;
40 u8 b_path : 1;
41 u8 phy_speed : 2; /* As in the self ID packet. */
42 u8 max_speed : 2; /* Minimum of all phy-speeds on the path from the
43 * local node to this node. */
Kristian Høgsberg83db8012007-01-26 00:37:50 -050044 u8 max_depth : 4; /* Maximum depth to any leaf node */
45 u8 max_hops : 4; /* Max hops in this sub tree */
Kristian Høgsberg3038e352006-12-19 19:58:27 -050046 atomic_t ref_count;
47
Stefan Richter5e20c282007-01-21 20:44:09 +010048 /* For serializing node topology into a list. */
Kristian Høgsberg3038e352006-12-19 19:58:27 -050049 struct list_head link;
50
51 /* Upper layer specific data. */
52 void *data;
53
Stefan Richter5e20c282007-01-21 20:44:09 +010054 struct fw_port ports[0];
Kristian Høgsberg3038e352006-12-19 19:58:27 -050055};
56
Adrian Bunk95688e92007-01-22 19:17:37 +010057static inline struct fw_node *
Kristian Høgsberg3038e352006-12-19 19:58:27 -050058fw_node(struct list_head *l)
59{
Kristian Høgsberga98e2712007-05-07 20:33:34 -040060 return list_entry(l, struct fw_node, link);
Kristian Høgsberg3038e352006-12-19 19:58:27 -050061}
62
Adrian Bunk95688e92007-01-22 19:17:37 +010063static inline struct fw_node *
Kristian Høgsberg3038e352006-12-19 19:58:27 -050064fw_node_get(struct fw_node *node)
65{
66 atomic_inc(&node->ref_count);
67
68 return node;
69}
70
Adrian Bunk95688e92007-01-22 19:17:37 +010071static inline void
Kristian Høgsberg3038e352006-12-19 19:58:27 -050072fw_node_put(struct fw_node *node)
73{
74 if (atomic_dec_and_test(&node->ref_count))
75 kfree(node);
76}
77
78void
79fw_destroy_nodes(struct fw_card *card);
80
Kristian Høgsberge1755692007-05-07 20:33:31 -040081int
82fw_compute_block_crc(u32 *block);
83
Kristian Høgsberg473d28c2007-03-07 12:12:55 -050084
Stefan Richter687198b2006-12-28 16:20:00 +010085#endif /* __fw_topology_h */