fw-topology.h 2.1 KB
Newer Older
1
/*
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * Copyright (C) 2003-2006 Kristian Hoegsberg <krh@bitplanet.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#ifndef __fw_topology_h
#define __fw_topology_h

enum {
	FW_NODE_CREATED =   0x00,
	FW_NODE_UPDATED =   0x01,
	FW_NODE_DESTROYED = 0x02,
	FW_NODE_LINK_ON =   0x03,
27
	FW_NODE_LINK_OFF =  0x04,
28 29 30 31 32 33 34 35 36
};

struct fw_port {
	struct fw_node *node;
	unsigned speed : 3; /* S100, S200, ... S3200 */
};

struct fw_node {
	u16 node_id;
37
	u8 color;
38 39 40 41
	u8 port_count;
	unsigned link_on : 1;
	unsigned initiated_reset : 1;
	unsigned b_path : 1;
42 43 44 45 46
	u8 phy_speed : 3; /* As in the self ID packet. */
	u8 max_speed : 5; /* Minimum of all phy-speeds and port speeds on
			   * the path from the local node to this node. */
	u8 max_depth : 4; /* Maximum depth to any leaf node */
	u8 max_hops : 4;  /* Max hops in this sub tree */
47 48
	atomic_t ref_count;

49
	/* For serializing node topology into a list. */
50 51 52 53 54
	struct list_head link;

	/* Upper layer specific data. */
	void *data;

55
	struct fw_port ports[0];
56 57
};

A
Adrian Bunk 已提交
58
static inline struct fw_node *
59 60
fw_node(struct list_head *l)
{
61
	return list_entry(l, struct fw_node, link);
62 63
}

A
Adrian Bunk 已提交
64
static inline struct fw_node *
65 66 67 68 69 70 71
fw_node_get(struct fw_node *node)
{
	atomic_inc(&node->ref_count);

	return node;
}

A
Adrian Bunk 已提交
72
static inline void
73 74 75 76 77 78 79 80 81
fw_node_put(struct fw_node *node)
{
	if (atomic_dec_and_test(&node->ref_count))
		kfree(node);
}

void
fw_destroy_nodes(struct fw_card *card);

82 83 84
int
fw_compute_block_crc(u32 *block);

85

86
#endif /* __fw_topology_h */