osm_vl_arb_rcv.c revision 321936
1170754Sdelphij/*
2170754Sdelphij * Copyright (c) 2004-2009 Voltaire, Inc. All rights reserved.
3170754Sdelphij * Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved.
4170754Sdelphij * Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
5170754Sdelphij * Copyright (c) 2010 HNR Consulting. All rights reserved.
6170754Sdelphij * Copyright (c) 2010 Sun Microsystems, Inc. All rights reserved.
7170754Sdelphij *
8170754Sdelphij * This software is available to you under a choice of one of two
9170754Sdelphij * licenses.  You may choose to be licensed under the terms of the GNU
10170754Sdelphij * General Public License (GPL) Version 2, available from the file
11170754Sdelphij * COPYING in the main directory of this source tree, or the
12170754Sdelphij * OpenIB.org BSD license below:
13170754Sdelphij *
14170754Sdelphij *     Redistribution and use in source and binary forms, with or
15170754Sdelphij *     without modification, are permitted provided that the following
16170754Sdelphij *     conditions are met:
17170754Sdelphij *
18170754Sdelphij *      - Redistributions of source code must retain the above
19170754Sdelphij *        copyright notice, this list of conditions and the following
20170754Sdelphij *        disclaimer.
21170754Sdelphij *
22170754Sdelphij *      - Redistributions in binary form must reproduce the above
23170754Sdelphij *        copyright notice, this list of conditions and the following
24170754Sdelphij *        disclaimer in the documentation and/or other materials
25170754Sdelphij *        provided with the distribution.
26170754Sdelphij *
27170754Sdelphij * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28170754Sdelphij * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29170754Sdelphij * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30170754Sdelphij * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31170754Sdelphij * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32170754Sdelphij * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
33170754Sdelphij * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34170754Sdelphij * SOFTWARE.
35170754Sdelphij *
36170754Sdelphij */
37170754Sdelphij
38170754Sdelphij/*
39170754Sdelphij * Abstract:
40170754Sdelphij *    Implementation of osm_vla_rcv_t.
41170754Sdelphij * This object represents the Vl Arbitration Receiver object.
42170754Sdelphij * This object is part of the opensm family of objects.
43170754Sdelphij */
44170754Sdelphij
45170754Sdelphij#if HAVE_CONFIG_H
46170754Sdelphij#  include <config.h>
47170754Sdelphij#endif				/* HAVE_CONFIG_H */
48170754Sdelphij
49170754Sdelphij#include <string.h>
50170754Sdelphij#include <iba/ib_types.h>
51170754Sdelphij#include <complib/cl_passivelock.h>
52170754Sdelphij#include <complib/cl_debug.h>
53170754Sdelphij#include <opensm/osm_file_ids.h>
54170754Sdelphij#define FILE_ID OSM_FILE_VL_ARB_RCV_C
55170754Sdelphij#include <opensm/osm_madw.h>
56170754Sdelphij#include <opensm/osm_log.h>
57170754Sdelphij#include <opensm/osm_node.h>
58170754Sdelphij#include <opensm/osm_subnet.h>
59170754Sdelphij#include <opensm/osm_helper.h>
60170754Sdelphij#include <opensm/osm_sm.h>
61170754Sdelphij
62170754Sdelphij/*
63170754Sdelphij * WE ONLY RECEIVE GET or SET responses
64170754Sdelphij */
65170754Sdelphijvoid osm_vla_rcv_process(IN void *context, IN void *data)
66170754Sdelphij{
67170754Sdelphij	osm_sm_t *sm = context;
68170754Sdelphij	osm_madw_t *p_madw = data;
69170754Sdelphij	ib_vl_arb_table_t *p_vla_tbl;
70170754Sdelphij	ib_smp_t *p_smp;
71170754Sdelphij	osm_port_t *p_port;
72170754Sdelphij	osm_physp_t *p_physp;
73170754Sdelphij	osm_node_t *p_node;
74170754Sdelphij	osm_vla_context_t *p_context;
75170754Sdelphij	ib_net64_t port_guid;
76170754Sdelphij	ib_net64_t node_guid;
77170754Sdelphij	uint8_t port_num, block_num;
78170754Sdelphij
79170754Sdelphij	CL_ASSERT(sm);
80170754Sdelphij
81170754Sdelphij	OSM_LOG_ENTER(sm->p_log);
82170754Sdelphij
83170754Sdelphij	CL_ASSERT(p_madw);
84170754Sdelphij
85170754Sdelphij	p_smp = osm_madw_get_smp_ptr(p_madw);
86170754Sdelphij
87170754Sdelphij	p_context = osm_madw_get_vla_context_ptr(p_madw);
88170754Sdelphij	p_vla_tbl = ib_smp_get_payload_ptr(p_smp);
89170754Sdelphij
90170754Sdelphij	port_guid = p_context->port_guid;
91	node_guid = p_context->node_guid;
92
93	CL_ASSERT(p_smp->attr_id == IB_MAD_ATTR_VL_ARBITRATION);
94
95	if (ib_smp_get_status(p_smp)) {
96		OSM_LOG(sm->p_log, OSM_LOG_DEBUG,
97			"MAD status 0x%x received\n",
98			cl_ntoh16(ib_smp_get_status(p_smp)));
99		goto Exit2;
100	}
101
102	cl_plock_excl_acquire(sm->p_lock);
103	p_port = osm_get_port_by_guid(sm->p_subn, port_guid);
104	if (!p_port) {
105		OSM_LOG(sm->p_log, OSM_LOG_ERROR, "ERR 3F06: "
106			"No port object for port with GUID 0x%" PRIx64
107			"\n\t\t\t\tfor parent node GUID 0x%" PRIx64
108			", TID 0x%" PRIx64 "\n", cl_ntoh64(port_guid),
109			cl_ntoh64(node_guid), cl_ntoh64(p_smp->trans_id));
110		goto Exit;
111	}
112
113	p_node = p_port->p_node;
114	CL_ASSERT(p_node);
115
116	block_num = (uint8_t) (cl_ntoh32(p_smp->attr_mod) >> 16);
117	/* in case of a non switch node the attr modifier should be ignored */
118	if (osm_node_get_type(p_node) == IB_NODE_TYPE_SWITCH) {
119		port_num = (uint8_t) (cl_ntoh32(p_smp->attr_mod) & 0x000000FF);
120		p_physp = osm_node_get_physp_ptr(p_node, port_num);
121	} else {
122		p_physp = p_port->p_physp;
123		port_num = p_physp->port_num;
124	}
125
126	/*
127	   We do not care if this is a result of a set or get -
128	   all we want is to update the subnet.
129	 */
130	OSM_LOG(sm->p_log, OSM_LOG_VERBOSE,
131		"Got GetResp(VLArb) block:%u port_num %u with GUID 0x%"
132		PRIx64 " for parent node GUID 0x%" PRIx64 ", TID 0x%"
133		PRIx64 "\n", block_num, port_num, cl_ntoh64(port_guid),
134		cl_ntoh64(node_guid), cl_ntoh64(p_smp->trans_id));
135
136	/*
137	   Determine if we encountered a new Physical Port.
138	   If so, Ignore it.
139	 */
140	if (!p_physp) {
141		OSM_LOG(sm->p_log, OSM_LOG_ERROR,
142			"Got invalid port number %u\n", port_num);
143		goto Exit;
144	}
145
146	if ((block_num < 1) || (block_num > 4)) {
147		OSM_LOG(sm->p_log, OSM_LOG_ERROR,
148			"Got invalid block number 0x%X\n", block_num);
149		goto Exit;
150	}
151
152	osm_dump_vl_arb_table_v2(sm->p_log, port_guid, block_num, port_num,
153			         p_vla_tbl, FILE_ID, OSM_LOG_DEBUG);
154	osm_physp_set_vla_tbl(p_physp, p_vla_tbl, block_num);
155
156Exit:
157	cl_plock_release(sm->p_lock);
158
159Exit2:
160	OSM_LOG_EXIT(sm->p_log);
161}
162