2 * Copyright (c) 2006 - 2009 Mellanox Technology Inc. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37 #include <linux/types.h>
39 #include <rdma/ib_mad.h>
42 DM_MAD_STATUS_UNSUP_METHOD = 0x0008,
43 DM_MAD_STATUS_UNSUP_METHOD_ATTR = 0x000c,
44 DM_MAD_STATUS_INVALID_FIELD = 0x001c,
45 DM_MAD_STATUS_NO_IOC = 0x0100,
47 DM_ATTR_CLASS_PORT_INFO = 0x01,
48 DM_ATTR_IOU_INFO = 0x10,
49 DM_ATTR_IOC_PROFILE = 0x11,
50 DM_ATTR_SVC_ENTRIES = 0x12
58 struct ib_mad_hdr mad_hdr;
59 struct ib_rmpp_hdr rmpp_hdr;
60 struct ib_dm_hdr dm_hdr;
61 u8 data[IB_MGMT_DEVICE_DATA];
64 struct ib_dm_iou_info {
68 u8 controller_list[128];
71 struct ib_dm_ioc_profile {
75 __be16 device_version;
77 __be32 subsys_vendor_id;
78 __be32 subsys_device_id;
82 __be16 protocol_version;
84 __be16 initiators_supported;
85 __be16 send_queue_depth;
97 struct ib_dm_svc_entry {
102 struct ib_dm_svc_entries {
103 struct ib_dm_svc_entry service_entries[4];