blob: 3c497bb4fae47e76a3d1ecbe3a05a396306dba89 [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
Stefan Richterb769bd12009-01-04 16:23:29 +010022#include <linux/list.h>
23#include <linux/slab.h>
24
25#include <asm/atomic.h>
26
Kristian Høgsberg3038e352006-12-19 19:58:27 -050027enum {
Stefan Richterc9755e12008-03-24 20:54:28 +010028 FW_NODE_CREATED,
29 FW_NODE_UPDATED,
30 FW_NODE_DESTROYED,
31 FW_NODE_LINK_ON,
32 FW_NODE_LINK_OFF,
33 FW_NODE_INITIATED_RESET,
Kristian Høgsberg3038e352006-12-19 19:58:27 -050034};
35
Kristian Høgsberg3038e352006-12-19 19:58:27 -050036struct fw_node {
37 u16 node_id;
Stefan Richter5e20c282007-01-21 20:44:09 +010038 u8 color;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050039 u8 port_count;
Stefan Richterf1397492007-06-10 21:31:36 +020040 u8 link_on : 1;
41 u8 initiated_reset : 1;
42 u8 b_path : 1;
43 u8 phy_speed : 2; /* As in the self ID packet. */
44 u8 max_speed : 2; /* Minimum of all phy-speeds on the path from the
45 * local node to this node. */
Kristian Høgsberg83db8012007-01-26 00:37:50 -050046 u8 max_depth : 4; /* Maximum depth to any leaf node */
47 u8 max_hops : 4; /* Max hops in this sub tree */
Kristian Høgsberg3038e352006-12-19 19:58:27 -050048 atomic_t ref_count;
49
Stefan Richter5e20c282007-01-21 20:44:09 +010050 /* For serializing node topology into a list. */
Kristian Høgsberg3038e352006-12-19 19:58:27 -050051 struct list_head link;
52
53 /* Upper layer specific data. */
54 void *data;
55
Stefan Richterdae1a3a2007-06-17 23:39:58 +020056 struct fw_node *ports[0];
Kristian Høgsberg3038e352006-12-19 19:58:27 -050057};
58
Stefan Richter53dca512008-12-14 21:47:04 +010059static inline struct fw_node *fw_node_get(struct fw_node *node)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050060{
61 atomic_inc(&node->ref_count);
62
63 return node;
64}
65
Stefan Richter53dca512008-12-14 21:47:04 +010066static inline void fw_node_put(struct fw_node *node)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050067{
68 if (atomic_dec_and_test(&node->ref_count))
69 kfree(node);
70}
71
Stefan Richterb769bd12009-01-04 16:23:29 +010072struct fw_card;
Stefan Richter53dca512008-12-14 21:47:04 +010073void fw_destroy_nodes(struct fw_card *card);
Kristian Høgsberg3038e352006-12-19 19:58:27 -050074
Stefan Richter53dca512008-12-14 21:47:04 +010075int fw_compute_block_crc(u32 *block);
Kristian Høgsberg473d28c2007-03-07 12:12:55 -050076
Stefan Richter687198b2006-12-28 16:20:00 +010077#endif /* __fw_topology_h */