2 * Copyright(c) 2015-2018 Intel Corporation.
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 #include <linux/net.h>
49 #include <rdma/opa_addr.h>
50 #define OPA_NUM_PKEY_BLOCKS_PER_SMP (OPA_SMP_DR_DATA_SIZE \
51 / (OPA_PARTITION_TABLE_BLK_SIZE * sizeof(u16)))
59 /* the reset value from the FM is supposed to be 0xffff, handle both */
60 #define OPA_LINK_WIDTH_RESET_OLD 0x0fff
61 #define OPA_LINK_WIDTH_RESET 0xffff
64 struct list_head list
;
65 struct opa_mad_notice_attr data
;
73 static int smp_length_check(u32 data_size
, u32 request_len
)
75 if (unlikely(request_len
< data_size
))
81 static int reply(struct ib_mad_hdr
*smp
)
84 * The verbs framework will handle the directed/LID route
87 smp
->method
= IB_MGMT_METHOD_GET_RESP
;
88 if (smp
->mgmt_class
== IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
)
89 smp
->status
|= IB_SMP_DIRECTION
;
90 return IB_MAD_RESULT_SUCCESS
| IB_MAD_RESULT_REPLY
;
93 static inline void clear_opa_smp_data(struct opa_smp
*smp
)
95 void *data
= opa_get_smp_data(smp
);
96 size_t size
= opa_get_smp_data_size(smp
);
98 memset(data
, 0, size
);
101 static u16
hfi1_lookup_pkey_value(struct hfi1_ibport
*ibp
, int pkey_idx
)
103 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
105 if (pkey_idx
< ARRAY_SIZE(ppd
->pkeys
))
106 return ppd
->pkeys
[pkey_idx
];
111 void hfi1_event_pkey_change(struct hfi1_devdata
*dd
, u8 port
)
113 struct ib_event event
;
115 event
.event
= IB_EVENT_PKEY_CHANGE
;
116 event
.device
= &dd
->verbs_dev
.rdi
.ibdev
;
117 event
.element
.port_num
= port
;
118 ib_dispatch_event(&event
);
122 * If the port is down, clean up all pending traps. We need to be careful
123 * with the given trap, because it may be queued.
125 static void cleanup_traps(struct hfi1_ibport
*ibp
, struct trap_node
*trap
)
127 struct trap_node
*node
, *q
;
129 struct list_head trap_list
;
132 for (i
= 0; i
< RVT_MAX_TRAP_LISTS
; i
++) {
133 spin_lock_irqsave(&ibp
->rvp
.lock
, flags
);
134 list_replace_init(&ibp
->rvp
.trap_lists
[i
].list
, &trap_list
);
135 ibp
->rvp
.trap_lists
[i
].list_len
= 0;
136 spin_unlock_irqrestore(&ibp
->rvp
.lock
, flags
);
139 * Remove all items from the list, freeing all the non-given
142 list_for_each_entry_safe(node
, q
, &trap_list
, list
) {
143 list_del(&node
->list
);
150 * If this wasn't on one of the lists it would not be freed. If it
151 * was on the list, it is now safe to free.
156 static struct trap_node
*check_and_add_trap(struct hfi1_ibport
*ibp
,
157 struct trap_node
*trap
)
159 struct trap_node
*node
;
160 struct trap_list
*trap_list
;
162 unsigned long timeout
;
164 unsigned int queue_id
;
165 static int trap_count
;
167 queue_id
= trap
->data
.generic_type
& 0x0F;
168 if (queue_id
>= RVT_MAX_TRAP_LISTS
) {
170 pr_err_ratelimited("hfi1: Invalid trap 0x%0x dropped. Total dropped: %d\n",
171 trap
->data
.generic_type
, trap_count
);
177 * Since the retry (handle timeout) does not remove a trap request
178 * from the list, all we have to do is compare the node.
180 spin_lock_irqsave(&ibp
->rvp
.lock
, flags
);
181 trap_list
= &ibp
->rvp
.trap_lists
[queue_id
];
183 list_for_each_entry(node
, &trap_list
->list
, list
) {
191 /* If it is not on the list, add it, limited to RVT-MAX_TRAP_LEN. */
193 if (trap_list
->list_len
< RVT_MAX_TRAP_LEN
) {
194 trap_list
->list_len
++;
195 list_add_tail(&trap
->list
, &trap_list
->list
);
197 pr_warn_ratelimited("hfi1: Maximum trap limit reached for 0x%0x traps\n",
198 trap
->data
.generic_type
);
204 * Next check to see if there is a timer pending. If not, set it up
205 * and get the first trap from the list.
208 if (!timer_pending(&ibp
->rvp
.trap_timer
)) {
211 * If the time out is set we have to wait until it expires
212 * before the trap can be sent.
213 * This should be > RVT_TRAP_TIMEOUT
215 timeout
= (RVT_TRAP_TIMEOUT
*
216 (1UL << ibp
->rvp
.subnet_timeout
)) / 1000;
217 mod_timer(&ibp
->rvp
.trap_timer
,
218 jiffies
+ usecs_to_jiffies(timeout
));
219 node
= list_first_entry(&trap_list
->list
, struct trap_node
,
223 spin_unlock_irqrestore(&ibp
->rvp
.lock
, flags
);
228 static void subn_handle_opa_trap_repress(struct hfi1_ibport
*ibp
,
231 struct trap_list
*trap_list
;
232 struct trap_node
*trap
;
236 if (smp
->attr_id
!= IB_SMP_ATTR_NOTICE
)
239 spin_lock_irqsave(&ibp
->rvp
.lock
, flags
);
240 for (i
= 0; i
< RVT_MAX_TRAP_LISTS
; i
++) {
241 trap_list
= &ibp
->rvp
.trap_lists
[i
];
242 trap
= list_first_entry_or_null(&trap_list
->list
,
243 struct trap_node
, list
);
244 if (trap
&& trap
->tid
== smp
->tid
) {
248 trap_list
->list_len
--;
249 list_del(&trap
->list
);
255 spin_unlock_irqrestore(&ibp
->rvp
.lock
, flags
);
258 static void hfi1_update_sm_ah_attr(struct hfi1_ibport
*ibp
,
259 struct rdma_ah_attr
*attr
, u32 dlid
)
261 rdma_ah_set_dlid(attr
, dlid
);
262 rdma_ah_set_port_num(attr
, ppd_from_ibp(ibp
)->port
);
263 if (dlid
>= be16_to_cpu(IB_MULTICAST_LID_BASE
)) {
264 struct ib_global_route
*grh
= rdma_ah_retrieve_grh(attr
);
266 rdma_ah_set_ah_flags(attr
, IB_AH_GRH
);
269 grh
->dgid
.global
.subnet_prefix
=
271 grh
->dgid
.global
.interface_id
= OPA_MAKE_ID(dlid
);
275 static int hfi1_modify_qp0_ah(struct hfi1_ibport
*ibp
,
276 struct rvt_ah
*ah
, u32 dlid
)
278 struct rdma_ah_attr attr
;
282 memset(&attr
, 0, sizeof(attr
));
283 attr
.type
= ah
->ibah
.type
;
284 hfi1_update_sm_ah_attr(ibp
, &attr
, dlid
);
286 qp0
= rcu_dereference(ibp
->rvp
.qp
[0]);
288 ret
= rdma_modify_ah(&ah
->ibah
, &attr
);
293 static struct ib_ah
*hfi1_create_qp0_ah(struct hfi1_ibport
*ibp
, u32 dlid
)
295 struct rdma_ah_attr attr
;
296 struct ib_ah
*ah
= ERR_PTR(-EINVAL
);
298 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
299 struct hfi1_devdata
*dd
= dd_from_ppd(ppd
);
300 u8 port_num
= ppd
->port
;
302 memset(&attr
, 0, sizeof(attr
));
303 attr
.type
= rdma_ah_find_type(&dd
->verbs_dev
.rdi
.ibdev
, port_num
);
304 hfi1_update_sm_ah_attr(ibp
, &attr
, dlid
);
306 qp0
= rcu_dereference(ibp
->rvp
.qp
[0]);
308 ah
= rdma_create_ah(qp0
->ibqp
.pd
, &attr
, 0);
313 static void send_trap(struct hfi1_ibport
*ibp
, struct trap_node
*trap
)
315 struct ib_mad_send_buf
*send_buf
;
316 struct ib_mad_agent
*agent
;
320 u32 qpn
= ppd_from_ibp(ibp
)->sm_trap_qp
;
322 agent
= ibp
->rvp
.send_agent
;
324 cleanup_traps(ibp
, trap
);
329 if (driver_lstate(ppd_from_ibp(ibp
)) != IB_PORT_ACTIVE
) {
330 cleanup_traps(ibp
, trap
);
334 /* Add the trap to the list if necessary and see if we can send it */
335 trap
= check_and_add_trap(ibp
, trap
);
339 pkey_idx
= hfi1_lookup_pkey_idx(ibp
, LIM_MGMT_P_KEY
);
341 pr_warn("%s: failed to find limited mgmt pkey, defaulting 0x%x\n",
342 __func__
, hfi1_get_pkey(ibp
, 1));
346 send_buf
= ib_create_send_mad(agent
, qpn
, pkey_idx
, 0,
347 IB_MGMT_MAD_HDR
, IB_MGMT_MAD_DATA
,
348 GFP_ATOMIC
, IB_MGMT_BASE_VERSION
);
349 if (IS_ERR(send_buf
))
353 smp
->base_version
= OPA_MGMT_BASE_VERSION
;
354 smp
->mgmt_class
= IB_MGMT_CLASS_SUBN_LID_ROUTED
;
355 smp
->class_version
= OPA_SM_CLASS_VERSION
;
356 smp
->method
= IB_MGMT_METHOD_TRAP
;
358 /* Only update the transaction ID for new traps (o13-5). */
359 if (trap
->tid
== 0) {
361 /* make sure that tid != 0 */
362 if (ibp
->rvp
.tid
== 0)
364 trap
->tid
= cpu_to_be64(ibp
->rvp
.tid
);
366 smp
->tid
= trap
->tid
;
368 smp
->attr_id
= IB_SMP_ATTR_NOTICE
;
369 /* o14-1: smp->mkey = 0; */
371 memcpy(smp
->route
.lid
.data
, &trap
->data
, trap
->len
);
373 spin_lock_irqsave(&ibp
->rvp
.lock
, flags
);
374 if (!ibp
->rvp
.sm_ah
) {
375 if (ibp
->rvp
.sm_lid
!= be16_to_cpu(IB_LID_PERMISSIVE
)) {
378 ah
= hfi1_create_qp0_ah(ibp
, ibp
->rvp
.sm_lid
);
380 spin_unlock_irqrestore(&ibp
->rvp
.lock
, flags
);
384 ibp
->rvp
.sm_ah
= ibah_to_rvtah(ah
);
386 spin_unlock_irqrestore(&ibp
->rvp
.lock
, flags
);
390 send_buf
->ah
= &ibp
->rvp
.sm_ah
->ibah
;
394 * If the trap was repressed while things were getting set up, don't
395 * bother sending it. This could happen for a retry.
398 list_del(&trap
->list
);
399 spin_unlock_irqrestore(&ibp
->rvp
.lock
, flags
);
401 ib_free_send_mad(send_buf
);
406 spin_unlock_irqrestore(&ibp
->rvp
.lock
, flags
);
408 if (ib_post_send_mad(send_buf
, NULL
))
409 ib_free_send_mad(send_buf
);
412 void hfi1_handle_trap_timer(struct timer_list
*t
)
414 struct hfi1_ibport
*ibp
= from_timer(ibp
, t
, rvp
.trap_timer
);
415 struct trap_node
*trap
= NULL
;
419 /* Find the trap with the highest priority */
420 spin_lock_irqsave(&ibp
->rvp
.lock
, flags
);
421 for (i
= 0; !trap
&& i
< RVT_MAX_TRAP_LISTS
; i
++) {
422 trap
= list_first_entry_or_null(&ibp
->rvp
.trap_lists
[i
].list
,
423 struct trap_node
, list
);
425 spin_unlock_irqrestore(&ibp
->rvp
.lock
, flags
);
428 send_trap(ibp
, trap
);
431 static struct trap_node
*create_trap_node(u8 type
, __be16 trap_num
, u32 lid
)
433 struct trap_node
*trap
;
435 trap
= kzalloc(sizeof(*trap
), GFP_ATOMIC
);
439 INIT_LIST_HEAD(&trap
->list
);
440 trap
->data
.generic_type
= type
;
441 trap
->data
.prod_type_lsb
= IB_NOTICE_PROD_CA
;
442 trap
->data
.trap_num
= trap_num
;
443 trap
->data
.issuer_lid
= cpu_to_be32(lid
);
449 * Send a bad P_Key trap (ch. 14.3.8).
451 void hfi1_bad_pkey(struct hfi1_ibport
*ibp
, u32 key
, u32 sl
,
452 u32 qp1
, u32 qp2
, u32 lid1
, u32 lid2
)
454 struct trap_node
*trap
;
455 u32 lid
= ppd_from_ibp(ibp
)->lid
;
457 ibp
->rvp
.n_pkt_drops
++;
458 ibp
->rvp
.pkey_violations
++;
460 trap
= create_trap_node(IB_NOTICE_TYPE_SECURITY
, OPA_TRAP_BAD_P_KEY
,
465 /* Send violation trap */
466 trap
->data
.ntc_257_258
.lid1
= cpu_to_be32(lid1
);
467 trap
->data
.ntc_257_258
.lid2
= cpu_to_be32(lid2
);
468 trap
->data
.ntc_257_258
.key
= cpu_to_be32(key
);
469 trap
->data
.ntc_257_258
.sl
= sl
<< 3;
470 trap
->data
.ntc_257_258
.qp1
= cpu_to_be32(qp1
);
471 trap
->data
.ntc_257_258
.qp2
= cpu_to_be32(qp2
);
473 trap
->len
= sizeof(trap
->data
);
474 send_trap(ibp
, trap
);
478 * Send a bad M_Key trap (ch. 14.3.9).
480 static void bad_mkey(struct hfi1_ibport
*ibp
, struct ib_mad_hdr
*mad
,
481 __be64 mkey
, __be32 dr_slid
, u8 return_path
[], u8 hop_cnt
)
483 struct trap_node
*trap
;
484 u32 lid
= ppd_from_ibp(ibp
)->lid
;
486 trap
= create_trap_node(IB_NOTICE_TYPE_SECURITY
, OPA_TRAP_BAD_M_KEY
,
491 /* Send violation trap */
492 trap
->data
.ntc_256
.lid
= trap
->data
.issuer_lid
;
493 trap
->data
.ntc_256
.method
= mad
->method
;
494 trap
->data
.ntc_256
.attr_id
= mad
->attr_id
;
495 trap
->data
.ntc_256
.attr_mod
= mad
->attr_mod
;
496 trap
->data
.ntc_256
.mkey
= mkey
;
497 if (mad
->mgmt_class
== IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
) {
498 trap
->data
.ntc_256
.dr_slid
= dr_slid
;
499 trap
->data
.ntc_256
.dr_trunc_hop
= IB_NOTICE_TRAP_DR_NOTICE
;
500 if (hop_cnt
> ARRAY_SIZE(trap
->data
.ntc_256
.dr_rtn_path
)) {
501 trap
->data
.ntc_256
.dr_trunc_hop
|=
502 IB_NOTICE_TRAP_DR_TRUNC
;
503 hop_cnt
= ARRAY_SIZE(trap
->data
.ntc_256
.dr_rtn_path
);
505 trap
->data
.ntc_256
.dr_trunc_hop
|= hop_cnt
;
506 memcpy(trap
->data
.ntc_256
.dr_rtn_path
, return_path
,
510 trap
->len
= sizeof(trap
->data
);
512 send_trap(ibp
, trap
);
516 * Send a Port Capability Mask Changed trap (ch. 14.3.11).
518 void hfi1_cap_mask_chg(struct rvt_dev_info
*rdi
, u8 port_num
)
520 struct trap_node
*trap
;
521 struct hfi1_ibdev
*verbs_dev
= dev_from_rdi(rdi
);
522 struct hfi1_devdata
*dd
= dd_from_dev(verbs_dev
);
523 struct hfi1_ibport
*ibp
= &dd
->pport
[port_num
- 1].ibport_data
;
524 u32 lid
= ppd_from_ibp(ibp
)->lid
;
526 trap
= create_trap_node(IB_NOTICE_TYPE_INFO
,
527 OPA_TRAP_CHANGE_CAPABILITY
,
532 trap
->data
.ntc_144
.lid
= trap
->data
.issuer_lid
;
533 trap
->data
.ntc_144
.new_cap_mask
= cpu_to_be32(ibp
->rvp
.port_cap_flags
);
534 trap
->data
.ntc_144
.cap_mask3
= cpu_to_be16(ibp
->rvp
.port_cap3_flags
);
536 trap
->len
= sizeof(trap
->data
);
537 send_trap(ibp
, trap
);
541 * Send a System Image GUID Changed trap (ch. 14.3.12).
543 void hfi1_sys_guid_chg(struct hfi1_ibport
*ibp
)
545 struct trap_node
*trap
;
546 u32 lid
= ppd_from_ibp(ibp
)->lid
;
548 trap
= create_trap_node(IB_NOTICE_TYPE_INFO
, OPA_TRAP_CHANGE_SYSGUID
,
553 trap
->data
.ntc_145
.new_sys_guid
= ib_hfi1_sys_image_guid
;
554 trap
->data
.ntc_145
.lid
= trap
->data
.issuer_lid
;
556 trap
->len
= sizeof(trap
->data
);
557 send_trap(ibp
, trap
);
561 * Send a Node Description Changed trap (ch. 14.3.13).
563 void hfi1_node_desc_chg(struct hfi1_ibport
*ibp
)
565 struct trap_node
*trap
;
566 u32 lid
= ppd_from_ibp(ibp
)->lid
;
568 trap
= create_trap_node(IB_NOTICE_TYPE_INFO
,
569 OPA_TRAP_CHANGE_CAPABILITY
,
574 trap
->data
.ntc_144
.lid
= trap
->data
.issuer_lid
;
575 trap
->data
.ntc_144
.change_flags
=
576 cpu_to_be16(OPA_NOTICE_TRAP_NODE_DESC_CHG
);
578 trap
->len
= sizeof(trap
->data
);
579 send_trap(ibp
, trap
);
582 static int __subn_get_opa_nodedesc(struct opa_smp
*smp
, u32 am
,
583 u8
*data
, struct ib_device
*ibdev
,
584 u8 port
, u32
*resp_len
, u32 max_len
)
586 struct opa_node_description
*nd
;
588 if (am
|| smp_length_check(sizeof(*nd
), max_len
)) {
589 smp
->status
|= IB_SMP_INVALID_FIELD
;
590 return reply((struct ib_mad_hdr
*)smp
);
593 nd
= (struct opa_node_description
*)data
;
595 memcpy(nd
->data
, ibdev
->node_desc
, sizeof(nd
->data
));
598 *resp_len
+= sizeof(*nd
);
600 return reply((struct ib_mad_hdr
*)smp
);
603 static int __subn_get_opa_nodeinfo(struct opa_smp
*smp
, u32 am
, u8
*data
,
604 struct ib_device
*ibdev
, u8 port
,
605 u32
*resp_len
, u32 max_len
)
607 struct opa_node_info
*ni
;
608 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
609 unsigned pidx
= port
- 1; /* IB number port from 1, hw from 0 */
611 ni
= (struct opa_node_info
*)data
;
613 /* GUID 0 is illegal */
614 if (am
|| pidx
>= dd
->num_pports
|| ibdev
->node_guid
== 0 ||
615 smp_length_check(sizeof(*ni
), max_len
) ||
616 get_sguid(to_iport(ibdev
, port
), HFI1_PORT_GUID_INDEX
) == 0) {
617 smp
->status
|= IB_SMP_INVALID_FIELD
;
618 return reply((struct ib_mad_hdr
*)smp
);
621 ni
->port_guid
= get_sguid(to_iport(ibdev
, port
), HFI1_PORT_GUID_INDEX
);
622 ni
->base_version
= OPA_MGMT_BASE_VERSION
;
623 ni
->class_version
= OPA_SM_CLASS_VERSION
;
624 ni
->node_type
= 1; /* channel adapter */
625 ni
->num_ports
= ibdev
->phys_port_cnt
;
626 /* This is already in network order */
627 ni
->system_image_guid
= ib_hfi1_sys_image_guid
;
628 ni
->node_guid
= ibdev
->node_guid
;
629 ni
->partition_cap
= cpu_to_be16(hfi1_get_npkeys(dd
));
630 ni
->device_id
= cpu_to_be16(dd
->pcidev
->device
);
631 ni
->revision
= cpu_to_be32(dd
->minrev
);
632 ni
->local_port_num
= port
;
633 ni
->vendor_id
[0] = dd
->oui1
;
634 ni
->vendor_id
[1] = dd
->oui2
;
635 ni
->vendor_id
[2] = dd
->oui3
;
638 *resp_len
+= sizeof(*ni
);
640 return reply((struct ib_mad_hdr
*)smp
);
643 static int subn_get_nodeinfo(struct ib_smp
*smp
, struct ib_device
*ibdev
,
646 struct ib_node_info
*nip
= (struct ib_node_info
*)&smp
->data
;
647 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
648 unsigned pidx
= port
- 1; /* IB number port from 1, hw from 0 */
650 /* GUID 0 is illegal */
651 if (smp
->attr_mod
|| pidx
>= dd
->num_pports
||
652 ibdev
->node_guid
== 0 ||
653 get_sguid(to_iport(ibdev
, port
), HFI1_PORT_GUID_INDEX
) == 0) {
654 smp
->status
|= IB_SMP_INVALID_FIELD
;
655 return reply((struct ib_mad_hdr
*)smp
);
658 nip
->port_guid
= get_sguid(to_iport(ibdev
, port
), HFI1_PORT_GUID_INDEX
);
659 nip
->base_version
= OPA_MGMT_BASE_VERSION
;
660 nip
->class_version
= OPA_SM_CLASS_VERSION
;
661 nip
->node_type
= 1; /* channel adapter */
662 nip
->num_ports
= ibdev
->phys_port_cnt
;
663 /* This is already in network order */
664 nip
->sys_guid
= ib_hfi1_sys_image_guid
;
665 nip
->node_guid
= ibdev
->node_guid
;
666 nip
->partition_cap
= cpu_to_be16(hfi1_get_npkeys(dd
));
667 nip
->device_id
= cpu_to_be16(dd
->pcidev
->device
);
668 nip
->revision
= cpu_to_be32(dd
->minrev
);
669 nip
->local_port_num
= port
;
670 nip
->vendor_id
[0] = dd
->oui1
;
671 nip
->vendor_id
[1] = dd
->oui2
;
672 nip
->vendor_id
[2] = dd
->oui3
;
674 return reply((struct ib_mad_hdr
*)smp
);
677 static void set_link_width_enabled(struct hfi1_pportdata
*ppd
, u32 w
)
679 (void)hfi1_set_ib_cfg(ppd
, HFI1_IB_CFG_LWID_ENB
, w
);
682 static void set_link_width_downgrade_enabled(struct hfi1_pportdata
*ppd
, u32 w
)
684 (void)hfi1_set_ib_cfg(ppd
, HFI1_IB_CFG_LWID_DG_ENB
, w
);
687 static void set_link_speed_enabled(struct hfi1_pportdata
*ppd
, u32 s
)
689 (void)hfi1_set_ib_cfg(ppd
, HFI1_IB_CFG_SPD_ENB
, s
);
692 static int check_mkey(struct hfi1_ibport
*ibp
, struct ib_mad_hdr
*mad
,
693 int mad_flags
, __be64 mkey
, __be32 dr_slid
,
694 u8 return_path
[], u8 hop_cnt
)
699 /* Is the mkey in the process of expiring? */
700 if (ibp
->rvp
.mkey_lease_timeout
&&
701 time_after_eq(jiffies
, ibp
->rvp
.mkey_lease_timeout
)) {
702 /* Clear timeout and mkey protection field. */
703 ibp
->rvp
.mkey_lease_timeout
= 0;
704 ibp
->rvp
.mkeyprot
= 0;
707 if ((mad_flags
& IB_MAD_IGNORE_MKEY
) || ibp
->rvp
.mkey
== 0 ||
708 ibp
->rvp
.mkey
== mkey
)
711 /* Unset lease timeout on any valid Get/Set/TrapRepress */
712 if (valid_mkey
&& ibp
->rvp
.mkey_lease_timeout
&&
713 (mad
->method
== IB_MGMT_METHOD_GET
||
714 mad
->method
== IB_MGMT_METHOD_SET
||
715 mad
->method
== IB_MGMT_METHOD_TRAP_REPRESS
))
716 ibp
->rvp
.mkey_lease_timeout
= 0;
719 switch (mad
->method
) {
720 case IB_MGMT_METHOD_GET
:
721 /* Bad mkey not a violation below level 2 */
722 if (ibp
->rvp
.mkeyprot
< 2)
725 case IB_MGMT_METHOD_SET
:
726 case IB_MGMT_METHOD_TRAP_REPRESS
:
727 if (ibp
->rvp
.mkey_violations
!= 0xFFFF)
728 ++ibp
->rvp
.mkey_violations
;
729 if (!ibp
->rvp
.mkey_lease_timeout
&&
730 ibp
->rvp
.mkey_lease_period
)
731 ibp
->rvp
.mkey_lease_timeout
= jiffies
+
732 ibp
->rvp
.mkey_lease_period
* HZ
;
733 /* Generate a trap notice. */
734 bad_mkey(ibp
, mad
, mkey
, dr_slid
, return_path
,
744 * The SMA caches reads from LCB registers in case the LCB is unavailable.
745 * (The LCB is unavailable in certain link states, for example.)
752 static struct lcb_datum lcb_cache
[] = {
753 { DC_LCB_STS_ROUND_TRIP_LTP_CNT
, 0 },
756 static int write_lcb_cache(u32 off
, u64 val
)
760 for (i
= 0; i
< ARRAY_SIZE(lcb_cache
); i
++) {
761 if (lcb_cache
[i
].off
== off
) {
762 lcb_cache
[i
].val
= val
;
767 pr_warn("%s bad offset 0x%x\n", __func__
, off
);
771 static int read_lcb_cache(u32 off
, u64
*val
)
775 for (i
= 0; i
< ARRAY_SIZE(lcb_cache
); i
++) {
776 if (lcb_cache
[i
].off
== off
) {
777 *val
= lcb_cache
[i
].val
;
782 pr_warn("%s bad offset 0x%x\n", __func__
, off
);
786 void read_ltp_rtt(struct hfi1_devdata
*dd
)
790 if (read_lcb_csr(dd
, DC_LCB_STS_ROUND_TRIP_LTP_CNT
, ®
))
791 dd_dev_err(dd
, "%s: unable to read LTP RTT\n", __func__
);
793 write_lcb_cache(DC_LCB_STS_ROUND_TRIP_LTP_CNT
, reg
);
796 static int __subn_get_opa_portinfo(struct opa_smp
*smp
, u32 am
, u8
*data
,
797 struct ib_device
*ibdev
, u8 port
,
798 u32
*resp_len
, u32 max_len
)
801 struct hfi1_devdata
*dd
;
802 struct hfi1_pportdata
*ppd
;
803 struct hfi1_ibport
*ibp
;
804 struct opa_port_info
*pi
= (struct opa_port_info
*)data
;
807 u8 is_beaconing_active
;
809 u32 num_ports
= OPA_AM_NPORT(am
);
810 u32 start_of_sm_config
= OPA_AM_START_SM_CFG(am
);
814 if (num_ports
!= 1 || smp_length_check(sizeof(*pi
), max_len
)) {
815 smp
->status
|= IB_SMP_INVALID_FIELD
;
816 return reply((struct ib_mad_hdr
*)smp
);
819 dd
= dd_from_ibdev(ibdev
);
820 /* IB numbers ports from 1, hw from 0 */
821 ppd
= dd
->pport
+ (port
- 1);
822 ibp
= &ppd
->ibport_data
;
824 if (ppd
->vls_supported
/ 2 > ARRAY_SIZE(pi
->neigh_mtu
.pvlx_to_mtu
) ||
825 ppd
->vls_supported
> ARRAY_SIZE(dd
->vld
)) {
826 smp
->status
|= IB_SMP_INVALID_FIELD
;
827 return reply((struct ib_mad_hdr
*)smp
);
830 pi
->lid
= cpu_to_be32(ppd
->lid
);
832 /* Only return the mkey if the protection field allows it. */
833 if (!(smp
->method
== IB_MGMT_METHOD_GET
&&
834 ibp
->rvp
.mkey
!= smp
->mkey
&&
835 ibp
->rvp
.mkeyprot
== 1))
836 pi
->mkey
= ibp
->rvp
.mkey
;
838 pi
->subnet_prefix
= ibp
->rvp
.gid_prefix
;
839 pi
->sm_lid
= cpu_to_be32(ibp
->rvp
.sm_lid
);
840 pi
->ib_cap_mask
= cpu_to_be32(ibp
->rvp
.port_cap_flags
);
841 pi
->mkey_lease_period
= cpu_to_be16(ibp
->rvp
.mkey_lease_period
);
842 pi
->sm_trap_qp
= cpu_to_be32(ppd
->sm_trap_qp
);
843 pi
->sa_qp
= cpu_to_be32(ppd
->sa_qp
);
845 pi
->link_width
.enabled
= cpu_to_be16(ppd
->link_width_enabled
);
846 pi
->link_width
.supported
= cpu_to_be16(ppd
->link_width_supported
);
847 pi
->link_width
.active
= cpu_to_be16(ppd
->link_width_active
);
849 pi
->link_width_downgrade
.supported
=
850 cpu_to_be16(ppd
->link_width_downgrade_supported
);
851 pi
->link_width_downgrade
.enabled
=
852 cpu_to_be16(ppd
->link_width_downgrade_enabled
);
853 pi
->link_width_downgrade
.tx_active
=
854 cpu_to_be16(ppd
->link_width_downgrade_tx_active
);
855 pi
->link_width_downgrade
.rx_active
=
856 cpu_to_be16(ppd
->link_width_downgrade_rx_active
);
858 pi
->link_speed
.supported
= cpu_to_be16(ppd
->link_speed_supported
);
859 pi
->link_speed
.active
= cpu_to_be16(ppd
->link_speed_active
);
860 pi
->link_speed
.enabled
= cpu_to_be16(ppd
->link_speed_enabled
);
862 state
= driver_lstate(ppd
);
864 if (start_of_sm_config
&& (state
== IB_PORT_INIT
))
865 ppd
->is_sm_config_started
= 1;
867 pi
->port_phys_conf
= (ppd
->port_type
& 0xf);
869 pi
->port_states
.ledenable_offlinereason
= ppd
->neighbor_normal
<< 4;
870 pi
->port_states
.ledenable_offlinereason
|=
871 ppd
->is_sm_config_started
<< 5;
873 * This pairs with the memory barrier in hfi1_start_led_override to
874 * ensure that we read the correct state of LED beaconing represented
875 * by led_override_timer_active
878 is_beaconing_active
= !!atomic_read(&ppd
->led_override_timer_active
);
879 pi
->port_states
.ledenable_offlinereason
|= is_beaconing_active
<< 6;
880 pi
->port_states
.ledenable_offlinereason
|=
881 ppd
->offline_disabled_reason
;
883 pi
->port_states
.portphysstate_portstate
=
884 (driver_pstate(ppd
) << 4) | state
;
886 pi
->mkeyprotect_lmc
= (ibp
->rvp
.mkeyprot
<< 6) | ppd
->lmc
;
888 memset(pi
->neigh_mtu
.pvlx_to_mtu
, 0, sizeof(pi
->neigh_mtu
.pvlx_to_mtu
));
889 for (i
= 0; i
< ppd
->vls_supported
; i
++) {
890 mtu
= mtu_to_enum(dd
->vld
[i
].mtu
, HFI1_DEFAULT_ACTIVE_MTU
);
892 pi
->neigh_mtu
.pvlx_to_mtu
[i
/ 2] |= (mtu
<< 4);
894 pi
->neigh_mtu
.pvlx_to_mtu
[i
/ 2] |= mtu
;
896 /* don't forget VL 15 */
897 mtu
= mtu_to_enum(dd
->vld
[15].mtu
, 2048);
898 pi
->neigh_mtu
.pvlx_to_mtu
[15 / 2] |= mtu
;
899 pi
->smsl
= ibp
->rvp
.sm_sl
& OPA_PI_MASK_SMSL
;
900 pi
->operational_vls
= hfi1_get_ib_cfg(ppd
, HFI1_IB_CFG_OP_VLS
);
901 pi
->partenforce_filterraw
|=
902 (ppd
->linkinit_reason
& OPA_PI_MASK_LINKINIT_REASON
);
903 if (ppd
->part_enforce
& HFI1_PART_ENFORCE_IN
)
904 pi
->partenforce_filterraw
|= OPA_PI_MASK_PARTITION_ENFORCE_IN
;
905 if (ppd
->part_enforce
& HFI1_PART_ENFORCE_OUT
)
906 pi
->partenforce_filterraw
|= OPA_PI_MASK_PARTITION_ENFORCE_OUT
;
907 pi
->mkey_violations
= cpu_to_be16(ibp
->rvp
.mkey_violations
);
908 /* P_KeyViolations are counted by hardware. */
909 pi
->pkey_violations
= cpu_to_be16(ibp
->rvp
.pkey_violations
);
910 pi
->qkey_violations
= cpu_to_be16(ibp
->rvp
.qkey_violations
);
912 pi
->vl
.cap
= ppd
->vls_supported
;
913 pi
->vl
.high_limit
= cpu_to_be16(ibp
->rvp
.vl_high_limit
);
914 pi
->vl
.arb_high_cap
= (u8
)hfi1_get_ib_cfg(ppd
, HFI1_IB_CFG_VL_HIGH_CAP
);
915 pi
->vl
.arb_low_cap
= (u8
)hfi1_get_ib_cfg(ppd
, HFI1_IB_CFG_VL_LOW_CAP
);
917 pi
->clientrereg_subnettimeout
= ibp
->rvp
.subnet_timeout
;
919 pi
->port_link_mode
= cpu_to_be16(OPA_PORT_LINK_MODE_OPA
<< 10 |
920 OPA_PORT_LINK_MODE_OPA
<< 5 |
921 OPA_PORT_LINK_MODE_OPA
);
923 pi
->port_ltp_crc_mode
= cpu_to_be16(ppd
->port_ltp_crc_mode
);
925 pi
->port_mode
= cpu_to_be16(
926 ppd
->is_active_optimize_enabled
?
927 OPA_PI_MASK_PORT_ACTIVE_OPTOMIZE
: 0);
929 pi
->port_packet_format
.supported
=
930 cpu_to_be16(OPA_PORT_PACKET_FORMAT_9B
|
931 OPA_PORT_PACKET_FORMAT_16B
);
932 pi
->port_packet_format
.enabled
=
933 cpu_to_be16(OPA_PORT_PACKET_FORMAT_9B
|
934 OPA_PORT_PACKET_FORMAT_16B
);
936 /* flit_control.interleave is (OPA V1, version .76):
940 * 2 DistanceSupported
942 * 5 MaxNextLevelTxEnabled
943 * 5 MaxNestLevelRxSupported
945 * HFI supports only "distance mode 1" (see OPA V1, version .76,
946 * section 9.6.2), so set DistanceSupported, DistanceEnabled
949 pi
->flit_control
.interleave
= cpu_to_be16(0x1400);
951 pi
->link_down_reason
= ppd
->local_link_down_reason
.sma
;
952 pi
->neigh_link_down_reason
= ppd
->neigh_link_down_reason
.sma
;
953 pi
->port_error_action
= cpu_to_be32(ppd
->port_error_action
);
954 pi
->mtucap
= mtu_to_enum(hfi1_max_mtu
, IB_MTU_4096
);
956 /* 32.768 usec. response time (guessing) */
957 pi
->resptimevalue
= 3;
959 pi
->local_port_num
= port
;
961 /* buffer info for FM */
962 pi
->overall_buffer_space
= cpu_to_be16(dd
->link_credits
);
964 pi
->neigh_node_guid
= cpu_to_be64(ppd
->neighbor_guid
);
965 pi
->neigh_port_num
= ppd
->neighbor_port_number
;
966 pi
->port_neigh_mode
=
967 (ppd
->neighbor_type
& OPA_PI_MASK_NEIGH_NODE_TYPE
) |
968 (ppd
->mgmt_allowed
? OPA_PI_MASK_NEIGH_MGMT_ALLOWED
: 0) |
969 (ppd
->neighbor_fm_security
?
970 OPA_PI_MASK_NEIGH_FW_AUTH_BYPASS
: 0);
972 /* HFIs shall always return VL15 credits to their
973 * neighbor in a timely manner, without any credit return pacing.
976 buffer_units
= (dd
->vau
) & OPA_PI_MASK_BUF_UNIT_BUF_ALLOC
;
977 buffer_units
|= (dd
->vcu
<< 3) & OPA_PI_MASK_BUF_UNIT_CREDIT_ACK
;
978 buffer_units
|= (credit_rate
<< 6) &
979 OPA_PI_MASK_BUF_UNIT_VL15_CREDIT_RATE
;
980 buffer_units
|= (dd
->vl15_init
<< 11) & OPA_PI_MASK_BUF_UNIT_VL15_INIT
;
981 pi
->buffer_units
= cpu_to_be32(buffer_units
);
983 pi
->opa_cap_mask
= cpu_to_be16(ibp
->rvp
.port_cap3_flags
);
984 pi
->collectivemask_multicastmask
= ((OPA_COLLECTIVE_NR
& 0x7)
985 << 3 | (OPA_MCAST_NR
& 0x7));
987 /* HFI supports a replay buffer 128 LTPs in size */
988 pi
->replay_depth
.buffer
= 0x80;
989 /* read the cached value of DC_LCB_STS_ROUND_TRIP_LTP_CNT */
990 read_lcb_cache(DC_LCB_STS_ROUND_TRIP_LTP_CNT
, &tmp
);
993 * this counter is 16 bits wide, but the replay_depth.wire
994 * variable is only 8 bits
998 pi
->replay_depth
.wire
= tmp
;
1001 *resp_len
+= sizeof(struct opa_port_info
);
1003 return reply((struct ib_mad_hdr
*)smp
);
1007 * get_pkeys - return the PKEY table
1008 * @dd: the hfi1_ib device
1009 * @port: the IB port number
1010 * @pkeys: the pkey table is placed here
1012 static int get_pkeys(struct hfi1_devdata
*dd
, u8 port
, u16
*pkeys
)
1014 struct hfi1_pportdata
*ppd
= dd
->pport
+ port
- 1;
1016 memcpy(pkeys
, ppd
->pkeys
, sizeof(ppd
->pkeys
));
1021 static int __subn_get_opa_pkeytable(struct opa_smp
*smp
, u32 am
, u8
*data
,
1022 struct ib_device
*ibdev
, u8 port
,
1023 u32
*resp_len
, u32 max_len
)
1025 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
1026 u32 n_blocks_req
= OPA_AM_NBLK(am
);
1027 u32 start_block
= am
& 0x7ff;
1032 unsigned npkeys
= hfi1_get_npkeys(dd
);
1035 if (n_blocks_req
== 0) {
1036 pr_warn("OPA Get PKey AM Invalid : P = %d; B = 0x%x; N = 0x%x\n",
1037 port
, start_block
, n_blocks_req
);
1038 smp
->status
|= IB_SMP_INVALID_FIELD
;
1039 return reply((struct ib_mad_hdr
*)smp
);
1042 n_blocks_avail
= (u16
)(npkeys
/ OPA_PARTITION_TABLE_BLK_SIZE
) + 1;
1044 size
= (n_blocks_req
* OPA_PARTITION_TABLE_BLK_SIZE
) * sizeof(u16
);
1046 if (smp_length_check(size
, max_len
)) {
1047 smp
->status
|= IB_SMP_INVALID_FIELD
;
1048 return reply((struct ib_mad_hdr
*)smp
);
1051 if (start_block
+ n_blocks_req
> n_blocks_avail
||
1052 n_blocks_req
> OPA_NUM_PKEY_BLOCKS_PER_SMP
) {
1053 pr_warn("OPA Get PKey AM Invalid : s 0x%x; req 0x%x; "
1054 "avail 0x%x; blk/smp 0x%lx\n",
1055 start_block
, n_blocks_req
, n_blocks_avail
,
1056 OPA_NUM_PKEY_BLOCKS_PER_SMP
);
1057 smp
->status
|= IB_SMP_INVALID_FIELD
;
1058 return reply((struct ib_mad_hdr
*)smp
);
1063 /* get the real pkeys if we are requesting the first block */
1064 if (start_block
== 0) {
1065 get_pkeys(dd
, port
, q
);
1066 for (i
= 0; i
< npkeys
; i
++)
1067 p
[i
] = cpu_to_be16(q
[i
]);
1071 smp
->status
|= IB_SMP_INVALID_FIELD
;
1073 return reply((struct ib_mad_hdr
*)smp
);
1077 HFI_TRANSITION_DISALLOWED
,
1078 HFI_TRANSITION_IGNORED
,
1079 HFI_TRANSITION_ALLOWED
,
1080 HFI_TRANSITION_UNDEFINED
,
1084 * Use shortened names to improve readability of
1085 * {logical,physical}_state_transitions
1088 __D
= HFI_TRANSITION_DISALLOWED
,
1089 __I
= HFI_TRANSITION_IGNORED
,
1090 __A
= HFI_TRANSITION_ALLOWED
,
1091 __U
= HFI_TRANSITION_UNDEFINED
,
1095 * IB_PORTPHYSSTATE_POLLING (2) through OPA_PORTPHYSSTATE_MAX (11) are
1096 * represented in physical_state_transitions.
1098 #define __N_PHYSTATES (OPA_PORTPHYSSTATE_MAX - IB_PORTPHYSSTATE_POLLING + 1)
1101 * Within physical_state_transitions, rows represent "old" states,
1102 * columns "new" states, and physical_state_transitions.allowed[old][new]
1103 * indicates if the transition from old state to new state is legal (see
1104 * OPAg1v1, Table 6-4).
1106 static const struct {
1107 u8 allowed
[__N_PHYSTATES
][__N_PHYSTATES
];
1108 } physical_state_transitions
= {
1110 /* 2 3 4 5 6 7 8 9 10 11 */
1111 /* 2 */ { __A
, __A
, __D
, __D
, __D
, __D
, __D
, __D
, __D
, __D
},
1112 /* 3 */ { __A
, __I
, __D
, __D
, __D
, __D
, __D
, __D
, __D
, __A
},
1113 /* 4 */ { __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
},
1114 /* 5 */ { __A
, __A
, __D
, __I
, __D
, __D
, __D
, __D
, __D
, __D
},
1115 /* 6 */ { __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
},
1116 /* 7 */ { __D
, __A
, __D
, __D
, __D
, __I
, __D
, __D
, __D
, __D
},
1117 /* 8 */ { __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
},
1118 /* 9 */ { __I
, __A
, __D
, __D
, __D
, __D
, __D
, __I
, __D
, __D
},
1119 /*10 */ { __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
, __U
},
1120 /*11 */ { __D
, __A
, __D
, __D
, __D
, __D
, __D
, __D
, __D
, __I
},
1125 * IB_PORT_DOWN (1) through IB_PORT_ACTIVE_DEFER (5) are represented
1126 * logical_state_transitions
1129 #define __N_LOGICAL_STATES (IB_PORT_ACTIVE_DEFER - IB_PORT_DOWN + 1)
1132 * Within logical_state_transitions rows represent "old" states,
1133 * columns "new" states, and logical_state_transitions.allowed[old][new]
1134 * indicates if the transition from old state to new state is legal (see
1135 * OPAg1v1, Table 9-12).
1137 static const struct {
1138 u8 allowed
[__N_LOGICAL_STATES
][__N_LOGICAL_STATES
];
1139 } logical_state_transitions
= {
1142 /* 1 */ { __I
, __D
, __D
, __D
, __U
},
1143 /* 2 */ { __D
, __I
, __A
, __D
, __U
},
1144 /* 3 */ { __D
, __D
, __I
, __A
, __U
},
1145 /* 4 */ { __D
, __D
, __I
, __I
, __U
},
1146 /* 5 */ { __U
, __U
, __U
, __U
, __U
},
1150 static int logical_transition_allowed(int old
, int new)
1152 if (old
< IB_PORT_NOP
|| old
> IB_PORT_ACTIVE_DEFER
||
1153 new < IB_PORT_NOP
|| new > IB_PORT_ACTIVE_DEFER
) {
1154 pr_warn("invalid logical state(s) (old %d new %d)\n",
1156 return HFI_TRANSITION_UNDEFINED
;
1159 if (new == IB_PORT_NOP
)
1160 return HFI_TRANSITION_ALLOWED
; /* always allowed */
1162 /* adjust states for indexing into logical_state_transitions */
1163 old
-= IB_PORT_DOWN
;
1164 new -= IB_PORT_DOWN
;
1166 if (old
< 0 || new < 0)
1167 return HFI_TRANSITION_UNDEFINED
;
1168 return logical_state_transitions
.allowed
[old
][new];
1171 static int physical_transition_allowed(int old
, int new)
1173 if (old
< IB_PORTPHYSSTATE_NOP
|| old
> OPA_PORTPHYSSTATE_MAX
||
1174 new < IB_PORTPHYSSTATE_NOP
|| new > OPA_PORTPHYSSTATE_MAX
) {
1175 pr_warn("invalid physical state(s) (old %d new %d)\n",
1177 return HFI_TRANSITION_UNDEFINED
;
1180 if (new == IB_PORTPHYSSTATE_NOP
)
1181 return HFI_TRANSITION_ALLOWED
; /* always allowed */
1183 /* adjust states for indexing into physical_state_transitions */
1184 old
-= IB_PORTPHYSSTATE_POLLING
;
1185 new -= IB_PORTPHYSSTATE_POLLING
;
1187 if (old
< 0 || new < 0)
1188 return HFI_TRANSITION_UNDEFINED
;
1189 return physical_state_transitions
.allowed
[old
][new];
1192 static int port_states_transition_allowed(struct hfi1_pportdata
*ppd
,
1193 u32 logical_new
, u32 physical_new
)
1195 u32 physical_old
= driver_pstate(ppd
);
1196 u32 logical_old
= driver_lstate(ppd
);
1197 int ret
, logical_allowed
, physical_allowed
;
1199 ret
= logical_transition_allowed(logical_old
, logical_new
);
1200 logical_allowed
= ret
;
1202 if (ret
== HFI_TRANSITION_DISALLOWED
||
1203 ret
== HFI_TRANSITION_UNDEFINED
) {
1204 pr_warn("invalid logical state transition %s -> %s\n",
1205 opa_lstate_name(logical_old
),
1206 opa_lstate_name(logical_new
));
1210 ret
= physical_transition_allowed(physical_old
, physical_new
);
1211 physical_allowed
= ret
;
1213 if (ret
== HFI_TRANSITION_DISALLOWED
||
1214 ret
== HFI_TRANSITION_UNDEFINED
) {
1215 pr_warn("invalid physical state transition %s -> %s\n",
1216 opa_pstate_name(physical_old
),
1217 opa_pstate_name(physical_new
));
1221 if (logical_allowed
== HFI_TRANSITION_IGNORED
&&
1222 physical_allowed
== HFI_TRANSITION_IGNORED
)
1223 return HFI_TRANSITION_IGNORED
;
1226 * A change request of Physical Port State from
1227 * 'Offline' to 'Polling' should be ignored.
1229 if ((physical_old
== OPA_PORTPHYSSTATE_OFFLINE
) &&
1230 (physical_new
== IB_PORTPHYSSTATE_POLLING
))
1231 return HFI_TRANSITION_IGNORED
;
1234 * Either physical_allowed or logical_allowed is
1235 * HFI_TRANSITION_ALLOWED.
1237 return HFI_TRANSITION_ALLOWED
;
1240 static int set_port_states(struct hfi1_pportdata
*ppd
, struct opa_smp
*smp
,
1241 u32 logical_state
, u32 phys_state
, int local_mad
)
1243 struct hfi1_devdata
*dd
= ppd
->dd
;
1247 ret
= port_states_transition_allowed(ppd
, logical_state
, phys_state
);
1248 if (ret
== HFI_TRANSITION_DISALLOWED
||
1249 ret
== HFI_TRANSITION_UNDEFINED
) {
1250 /* error message emitted above */
1251 smp
->status
|= IB_SMP_INVALID_FIELD
;
1255 if (ret
== HFI_TRANSITION_IGNORED
)
1258 if ((phys_state
!= IB_PORTPHYSSTATE_NOP
) &&
1259 !(logical_state
== IB_PORT_DOWN
||
1260 logical_state
== IB_PORT_NOP
)){
1261 pr_warn("SubnSet(OPA_PortInfo) port state invalid: logical_state 0x%x physical_state 0x%x\n",
1262 logical_state
, phys_state
);
1263 smp
->status
|= IB_SMP_INVALID_FIELD
;
1267 * Logical state changes are summarized in OPAv1g1 spec.,
1268 * Table 9-12; physical state changes are summarized in
1269 * OPAv1g1 spec., Table 6.4.
1271 switch (logical_state
) {
1273 if (phys_state
== IB_PORTPHYSSTATE_NOP
)
1277 if (phys_state
== IB_PORTPHYSSTATE_NOP
) {
1278 link_state
= HLS_DN_DOWNDEF
;
1279 } else if (phys_state
== IB_PORTPHYSSTATE_POLLING
) {
1280 link_state
= HLS_DN_POLL
;
1281 set_link_down_reason(ppd
, OPA_LINKDOWN_REASON_FM_BOUNCE
,
1282 0, OPA_LINKDOWN_REASON_FM_BOUNCE
);
1283 } else if (phys_state
== IB_PORTPHYSSTATE_DISABLED
) {
1284 link_state
= HLS_DN_DISABLE
;
1286 pr_warn("SubnSet(OPA_PortInfo) invalid physical state 0x%x\n",
1288 smp
->status
|= IB_SMP_INVALID_FIELD
;
1292 if ((link_state
== HLS_DN_POLL
||
1293 link_state
== HLS_DN_DOWNDEF
)) {
1295 * Going to poll. No matter what the current state,
1296 * always move offline first, then tune and start the
1297 * link. This correctly handles a FM link bounce and
1298 * a link enable. Going offline is a no-op if already
1301 set_link_state(ppd
, HLS_DN_OFFLINE
);
1304 set_link_state(ppd
, link_state
);
1306 if (link_state
== HLS_DN_DISABLE
&&
1307 (ppd
->offline_disabled_reason
>
1308 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_SMA_DISABLED
) ||
1309 ppd
->offline_disabled_reason
==
1310 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE
)))
1311 ppd
->offline_disabled_reason
=
1312 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_SMA_DISABLED
);
1314 * Don't send a reply if the response would be sent
1315 * through the disabled port.
1317 if (link_state
== HLS_DN_DISABLE
&& !local_mad
)
1318 return IB_MAD_RESULT_SUCCESS
| IB_MAD_RESULT_CONSUMED
;
1321 ret
= set_link_state(ppd
, HLS_UP_ARMED
);
1323 send_idle_sma(dd
, SMA_IDLE_ARM
);
1325 case IB_PORT_ACTIVE
:
1326 if (ppd
->neighbor_normal
) {
1327 ret
= set_link_state(ppd
, HLS_UP_ACTIVE
);
1329 send_idle_sma(dd
, SMA_IDLE_ACTIVE
);
1331 pr_warn("SubnSet(OPA_PortInfo) Cannot move to Active with NeighborNormal 0\n");
1332 smp
->status
|= IB_SMP_INVALID_FIELD
;
1336 pr_warn("SubnSet(OPA_PortInfo) invalid logical state 0x%x\n",
1338 smp
->status
|= IB_SMP_INVALID_FIELD
;
1345 * subn_set_opa_portinfo - set port information
1346 * @smp: the incoming SM packet
1347 * @ibdev: the infiniband device
1348 * @port: the port on the device
1351 static int __subn_set_opa_portinfo(struct opa_smp
*smp
, u32 am
, u8
*data
,
1352 struct ib_device
*ibdev
, u8 port
,
1353 u32
*resp_len
, u32 max_len
, int local_mad
)
1355 struct opa_port_info
*pi
= (struct opa_port_info
*)data
;
1356 struct ib_event event
;
1357 struct hfi1_devdata
*dd
;
1358 struct hfi1_pportdata
*ppd
;
1359 struct hfi1_ibport
*ibp
;
1361 unsigned long flags
;
1364 u8 ls_old
, ls_new
, ps_new
;
1369 u32 num_ports
= OPA_AM_NPORT(am
);
1370 u32 start_of_sm_config
= OPA_AM_START_SM_CFG(am
);
1371 int ret
, i
, invalid
= 0, call_set_mtu
= 0;
1372 int call_link_downgrade_policy
= 0;
1374 if (num_ports
!= 1 ||
1375 smp_length_check(sizeof(*pi
), max_len
)) {
1376 smp
->status
|= IB_SMP_INVALID_FIELD
;
1377 return reply((struct ib_mad_hdr
*)smp
);
1380 lid
= be32_to_cpu(pi
->lid
);
1381 if (lid
& 0xFF000000) {
1382 pr_warn("OPA_PortInfo lid out of range: %X\n", lid
);
1383 smp
->status
|= IB_SMP_INVALID_FIELD
;
1388 smlid
= be32_to_cpu(pi
->sm_lid
);
1389 if (smlid
& 0xFF000000) {
1390 pr_warn("OPA_PortInfo SM lid out of range: %X\n", smlid
);
1391 smp
->status
|= IB_SMP_INVALID_FIELD
;
1395 clientrereg
= (pi
->clientrereg_subnettimeout
&
1396 OPA_PI_MASK_CLIENT_REREGISTER
);
1398 dd
= dd_from_ibdev(ibdev
);
1399 /* IB numbers ports from 1, hw from 0 */
1400 ppd
= dd
->pport
+ (port
- 1);
1401 ibp
= &ppd
->ibport_data
;
1402 event
.device
= ibdev
;
1403 event
.element
.port_num
= port
;
1405 ls_old
= driver_lstate(ppd
);
1407 ibp
->rvp
.mkey
= pi
->mkey
;
1408 if (ibp
->rvp
.gid_prefix
!= pi
->subnet_prefix
) {
1409 ibp
->rvp
.gid_prefix
= pi
->subnet_prefix
;
1410 event
.event
= IB_EVENT_GID_CHANGE
;
1411 ib_dispatch_event(&event
);
1413 ibp
->rvp
.mkey_lease_period
= be16_to_cpu(pi
->mkey_lease_period
);
1415 /* Must be a valid unicast LID address. */
1416 if ((lid
== 0 && ls_old
> IB_PORT_INIT
) ||
1417 (hfi1_is_16B_mcast(lid
))) {
1418 smp
->status
|= IB_SMP_INVALID_FIELD
;
1419 pr_warn("SubnSet(OPA_PortInfo) lid invalid 0x%x\n",
1421 } else if (ppd
->lid
!= lid
||
1422 ppd
->lmc
!= (pi
->mkeyprotect_lmc
& OPA_PI_MASK_LMC
)) {
1423 if (ppd
->lid
!= lid
)
1424 hfi1_set_uevent_bits(ppd
, _HFI1_EVENT_LID_CHANGE_BIT
);
1425 if (ppd
->lmc
!= (pi
->mkeyprotect_lmc
& OPA_PI_MASK_LMC
))
1426 hfi1_set_uevent_bits(ppd
, _HFI1_EVENT_LMC_CHANGE_BIT
);
1427 hfi1_set_lid(ppd
, lid
, pi
->mkeyprotect_lmc
& OPA_PI_MASK_LMC
);
1428 event
.event
= IB_EVENT_LID_CHANGE
;
1429 ib_dispatch_event(&event
);
1431 if (HFI1_PORT_GUID_INDEX
+ 1 < HFI1_GUIDS_PER_PORT
) {
1432 /* Manufacture GID from LID to support extended
1435 ppd
->guids
[HFI1_PORT_GUID_INDEX
+ 1] =
1436 be64_to_cpu(OPA_MAKE_ID(lid
));
1437 event
.event
= IB_EVENT_GID_CHANGE
;
1438 ib_dispatch_event(&event
);
1442 msl
= pi
->smsl
& OPA_PI_MASK_SMSL
;
1443 if (pi
->partenforce_filterraw
& OPA_PI_MASK_LINKINIT_REASON
)
1444 ppd
->linkinit_reason
=
1445 (pi
->partenforce_filterraw
&
1446 OPA_PI_MASK_LINKINIT_REASON
);
1448 /* Must be a valid unicast LID address. */
1449 if ((smlid
== 0 && ls_old
> IB_PORT_INIT
) ||
1450 (hfi1_is_16B_mcast(smlid
))) {
1451 smp
->status
|= IB_SMP_INVALID_FIELD
;
1452 pr_warn("SubnSet(OPA_PortInfo) smlid invalid 0x%x\n", smlid
);
1453 } else if (smlid
!= ibp
->rvp
.sm_lid
|| msl
!= ibp
->rvp
.sm_sl
) {
1454 pr_warn("SubnSet(OPA_PortInfo) smlid 0x%x\n", smlid
);
1455 spin_lock_irqsave(&ibp
->rvp
.lock
, flags
);
1456 if (ibp
->rvp
.sm_ah
) {
1457 if (smlid
!= ibp
->rvp
.sm_lid
)
1458 hfi1_modify_qp0_ah(ibp
, ibp
->rvp
.sm_ah
, smlid
);
1459 if (msl
!= ibp
->rvp
.sm_sl
)
1460 rdma_ah_set_sl(&ibp
->rvp
.sm_ah
->attr
, msl
);
1462 spin_unlock_irqrestore(&ibp
->rvp
.lock
, flags
);
1463 if (smlid
!= ibp
->rvp
.sm_lid
)
1464 ibp
->rvp
.sm_lid
= smlid
;
1465 if (msl
!= ibp
->rvp
.sm_sl
)
1466 ibp
->rvp
.sm_sl
= msl
;
1467 event
.event
= IB_EVENT_SM_CHANGE
;
1468 ib_dispatch_event(&event
);
1471 if (pi
->link_down_reason
== 0) {
1472 ppd
->local_link_down_reason
.sma
= 0;
1473 ppd
->local_link_down_reason
.latest
= 0;
1476 if (pi
->neigh_link_down_reason
== 0) {
1477 ppd
->neigh_link_down_reason
.sma
= 0;
1478 ppd
->neigh_link_down_reason
.latest
= 0;
1481 ppd
->sm_trap_qp
= be32_to_cpu(pi
->sm_trap_qp
);
1482 ppd
->sa_qp
= be32_to_cpu(pi
->sa_qp
);
1484 ppd
->port_error_action
= be32_to_cpu(pi
->port_error_action
);
1485 lwe
= be16_to_cpu(pi
->link_width
.enabled
);
1487 if (lwe
== OPA_LINK_WIDTH_RESET
||
1488 lwe
== OPA_LINK_WIDTH_RESET_OLD
)
1489 set_link_width_enabled(ppd
, ppd
->link_width_supported
);
1490 else if ((lwe
& ~ppd
->link_width_supported
) == 0)
1491 set_link_width_enabled(ppd
, lwe
);
1493 smp
->status
|= IB_SMP_INVALID_FIELD
;
1495 lwe
= be16_to_cpu(pi
->link_width_downgrade
.enabled
);
1496 /* LWD.E is always applied - 0 means "disabled" */
1497 if (lwe
== OPA_LINK_WIDTH_RESET
||
1498 lwe
== OPA_LINK_WIDTH_RESET_OLD
) {
1499 set_link_width_downgrade_enabled(ppd
,
1501 link_width_downgrade_supported
1503 } else if ((lwe
& ~ppd
->link_width_downgrade_supported
) == 0) {
1504 /* only set and apply if something changed */
1505 if (lwe
!= ppd
->link_width_downgrade_enabled
) {
1506 set_link_width_downgrade_enabled(ppd
, lwe
);
1507 call_link_downgrade_policy
= 1;
1510 smp
->status
|= IB_SMP_INVALID_FIELD
;
1512 lse
= be16_to_cpu(pi
->link_speed
.enabled
);
1514 if (lse
& be16_to_cpu(pi
->link_speed
.supported
))
1515 set_link_speed_enabled(ppd
, lse
);
1517 smp
->status
|= IB_SMP_INVALID_FIELD
;
1521 (pi
->mkeyprotect_lmc
& OPA_PI_MASK_MKEY_PROT_BIT
) >> 6;
1522 ibp
->rvp
.vl_high_limit
= be16_to_cpu(pi
->vl
.high_limit
) & 0xFF;
1523 (void)hfi1_set_ib_cfg(ppd
, HFI1_IB_CFG_VL_HIGH_LIMIT
,
1524 ibp
->rvp
.vl_high_limit
);
1526 if (ppd
->vls_supported
/ 2 > ARRAY_SIZE(pi
->neigh_mtu
.pvlx_to_mtu
) ||
1527 ppd
->vls_supported
> ARRAY_SIZE(dd
->vld
)) {
1528 smp
->status
|= IB_SMP_INVALID_FIELD
;
1529 return reply((struct ib_mad_hdr
*)smp
);
1531 for (i
= 0; i
< ppd
->vls_supported
; i
++) {
1533 mtu
= enum_to_mtu((pi
->neigh_mtu
.pvlx_to_mtu
[i
/ 2] >>
1536 mtu
= enum_to_mtu(pi
->neigh_mtu
.pvlx_to_mtu
[i
/ 2] &
1538 if (mtu
== 0xffff) {
1539 pr_warn("SubnSet(OPA_PortInfo) mtu invalid %d (0x%x)\n",
1541 (pi
->neigh_mtu
.pvlx_to_mtu
[0] >> 4) & 0xF);
1542 smp
->status
|= IB_SMP_INVALID_FIELD
;
1543 mtu
= hfi1_max_mtu
; /* use a valid MTU */
1545 if (dd
->vld
[i
].mtu
!= mtu
) {
1547 "MTU change on vl %d from %d to %d\n",
1548 i
, dd
->vld
[i
].mtu
, mtu
);
1549 dd
->vld
[i
].mtu
= mtu
;
1553 /* As per OPAV1 spec: VL15 must support and be configured
1554 * for operation with a 2048 or larger MTU.
1556 mtu
= enum_to_mtu(pi
->neigh_mtu
.pvlx_to_mtu
[15 / 2] & 0xF);
1557 if (mtu
< 2048 || mtu
== 0xffff)
1559 if (dd
->vld
[15].mtu
!= mtu
) {
1561 "MTU change on vl 15 from %d to %d\n",
1562 dd
->vld
[15].mtu
, mtu
);
1563 dd
->vld
[15].mtu
= mtu
;
1569 /* Set operational VLs */
1570 vls
= pi
->operational_vls
& OPA_PI_MASK_OPERATIONAL_VL
;
1572 if (vls
> ppd
->vls_supported
) {
1573 pr_warn("SubnSet(OPA_PortInfo) VL's supported invalid %d\n",
1574 pi
->operational_vls
);
1575 smp
->status
|= IB_SMP_INVALID_FIELD
;
1577 if (hfi1_set_ib_cfg(ppd
, HFI1_IB_CFG_OP_VLS
,
1579 smp
->status
|= IB_SMP_INVALID_FIELD
;
1583 if (pi
->mkey_violations
== 0)
1584 ibp
->rvp
.mkey_violations
= 0;
1586 if (pi
->pkey_violations
== 0)
1587 ibp
->rvp
.pkey_violations
= 0;
1589 if (pi
->qkey_violations
== 0)
1590 ibp
->rvp
.qkey_violations
= 0;
1592 ibp
->rvp
.subnet_timeout
=
1593 pi
->clientrereg_subnettimeout
& OPA_PI_MASK_SUBNET_TIMEOUT
;
1595 crc_enabled
= be16_to_cpu(pi
->port_ltp_crc_mode
);
1599 if (crc_enabled
!= 0)
1600 ppd
->port_crc_mode_enabled
= port_ltp_to_cap(crc_enabled
);
1602 ppd
->is_active_optimize_enabled
=
1603 !!(be16_to_cpu(pi
->port_mode
)
1604 & OPA_PI_MASK_PORT_ACTIVE_OPTOMIZE
);
1606 ls_new
= pi
->port_states
.portphysstate_portstate
&
1607 OPA_PI_MASK_PORT_STATE
;
1608 ps_new
= (pi
->port_states
.portphysstate_portstate
&
1609 OPA_PI_MASK_PORT_PHYSICAL_STATE
) >> 4;
1611 if (ls_old
== IB_PORT_INIT
) {
1612 if (start_of_sm_config
) {
1613 if (ls_new
== ls_old
|| (ls_new
== IB_PORT_ARMED
))
1614 ppd
->is_sm_config_started
= 1;
1615 } else if (ls_new
== IB_PORT_ARMED
) {
1616 if (ppd
->is_sm_config_started
== 0) {
1618 smp
->status
|= IB_SMP_INVALID_FIELD
;
1623 /* Handle CLIENT_REREGISTER event b/c SM asked us for it */
1625 event
.event
= IB_EVENT_CLIENT_REREGISTER
;
1626 ib_dispatch_event(&event
);
1630 * Do the port state change now that the other link parameters
1632 * Changing the port physical state only makes sense if the link
1633 * is down or is being set to down.
1637 ret
= set_port_states(ppd
, smp
, ls_new
, ps_new
, local_mad
);
1642 ret
= __subn_get_opa_portinfo(smp
, am
, data
, ibdev
, port
, resp_len
,
1645 /* restore re-reg bit per o14-12.2.1 */
1646 pi
->clientrereg_subnettimeout
|= clientrereg
;
1649 * Apply the new link downgrade policy. This may result in a link
1650 * bounce. Do this after everything else so things are settled.
1651 * Possible problem: if setting the port state above fails, then
1652 * the policy change is not applied.
1654 if (call_link_downgrade_policy
)
1655 apply_link_downgrade_policy(ppd
, 0);
1660 return __subn_get_opa_portinfo(smp
, am
, data
, ibdev
, port
, resp_len
,
1665 * set_pkeys - set the PKEY table for ctxt 0
1666 * @dd: the hfi1_ib device
1667 * @port: the IB port number
1668 * @pkeys: the PKEY table
1670 static int set_pkeys(struct hfi1_devdata
*dd
, u8 port
, u16
*pkeys
)
1672 struct hfi1_pportdata
*ppd
;
1675 int update_includes_mgmt_partition
= 0;
1678 * IB port one/two always maps to context zero/one,
1679 * always a kernel context, no locking needed
1680 * If we get here with ppd setup, no need to check
1681 * that rcd is valid.
1683 ppd
= dd
->pport
+ (port
- 1);
1685 * If the update does not include the management pkey, don't do it.
1687 for (i
= 0; i
< ARRAY_SIZE(ppd
->pkeys
); i
++) {
1688 if (pkeys
[i
] == LIM_MGMT_P_KEY
) {
1689 update_includes_mgmt_partition
= 1;
1694 if (!update_includes_mgmt_partition
)
1697 for (i
= 0; i
< ARRAY_SIZE(ppd
->pkeys
); i
++) {
1699 u16 okey
= ppd
->pkeys
[i
];
1704 * The SM gives us the complete PKey table. We have
1705 * to ensure that we put the PKeys in the matching
1708 ppd
->pkeys
[i
] = key
;
1713 (void)hfi1_set_ib_cfg(ppd
, HFI1_IB_CFG_PKEYS
, 0);
1714 hfi1_event_pkey_change(dd
, port
);
1720 static int __subn_set_opa_pkeytable(struct opa_smp
*smp
, u32 am
, u8
*data
,
1721 struct ib_device
*ibdev
, u8 port
,
1722 u32
*resp_len
, u32 max_len
)
1724 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
1725 u32 n_blocks_sent
= OPA_AM_NBLK(am
);
1726 u32 start_block
= am
& 0x7ff;
1727 u16
*p
= (u16
*)data
;
1728 __be16
*q
= (__be16
*)data
;
1731 unsigned npkeys
= hfi1_get_npkeys(dd
);
1734 if (n_blocks_sent
== 0) {
1735 pr_warn("OPA Get PKey AM Invalid : P = %d; B = 0x%x; N = 0x%x\n",
1736 port
, start_block
, n_blocks_sent
);
1737 smp
->status
|= IB_SMP_INVALID_FIELD
;
1738 return reply((struct ib_mad_hdr
*)smp
);
1741 n_blocks_avail
= (u16
)(npkeys
/ OPA_PARTITION_TABLE_BLK_SIZE
) + 1;
1743 size
= sizeof(u16
) * (n_blocks_sent
* OPA_PARTITION_TABLE_BLK_SIZE
);
1745 if (smp_length_check(size
, max_len
)) {
1746 smp
->status
|= IB_SMP_INVALID_FIELD
;
1747 return reply((struct ib_mad_hdr
*)smp
);
1750 if (start_block
+ n_blocks_sent
> n_blocks_avail
||
1751 n_blocks_sent
> OPA_NUM_PKEY_BLOCKS_PER_SMP
) {
1752 pr_warn("OPA Set PKey AM Invalid : s 0x%x; req 0x%x; avail 0x%x; blk/smp 0x%lx\n",
1753 start_block
, n_blocks_sent
, n_blocks_avail
,
1754 OPA_NUM_PKEY_BLOCKS_PER_SMP
);
1755 smp
->status
|= IB_SMP_INVALID_FIELD
;
1756 return reply((struct ib_mad_hdr
*)smp
);
1759 for (i
= 0; i
< n_blocks_sent
* OPA_PARTITION_TABLE_BLK_SIZE
; i
++)
1760 p
[i
] = be16_to_cpu(q
[i
]);
1762 if (start_block
== 0 && set_pkeys(dd
, port
, p
) != 0) {
1763 smp
->status
|= IB_SMP_INVALID_FIELD
;
1764 return reply((struct ib_mad_hdr
*)smp
);
1767 return __subn_get_opa_pkeytable(smp
, am
, data
, ibdev
, port
, resp_len
,
1771 #define ILLEGAL_VL 12
1773 * filter_sc2vlt changes mappings to VL15 to ILLEGAL_VL (except
1774 * for SC15, which must map to VL15). If we don't remap things this
1775 * way it is possible for VL15 counters to increment when we try to
1776 * send on a SC which is mapped to an invalid VL.
1777 * When getting the table convert ILLEGAL_VL back to VL15.
1779 static void filter_sc2vlt(void *data
, bool set
)
1784 for (i
= 0; i
< OPA_MAX_SCS
; i
++) {
1789 if ((pd
[i
] & 0x1f) == 0xf)
1792 if ((pd
[i
] & 0x1f) == ILLEGAL_VL
)
1798 static int set_sc2vlt_tables(struct hfi1_devdata
*dd
, void *data
)
1802 filter_sc2vlt(data
, true);
1804 write_csr(dd
, SEND_SC2VLT0
, *val
++);
1805 write_csr(dd
, SEND_SC2VLT1
, *val
++);
1806 write_csr(dd
, SEND_SC2VLT2
, *val
++);
1807 write_csr(dd
, SEND_SC2VLT3
, *val
++);
1808 write_seqlock_irq(&dd
->sc2vl_lock
);
1809 memcpy(dd
->sc2vl
, data
, sizeof(dd
->sc2vl
));
1810 write_sequnlock_irq(&dd
->sc2vl_lock
);
1814 static int get_sc2vlt_tables(struct hfi1_devdata
*dd
, void *data
)
1816 u64
*val
= (u64
*)data
;
1818 *val
++ = read_csr(dd
, SEND_SC2VLT0
);
1819 *val
++ = read_csr(dd
, SEND_SC2VLT1
);
1820 *val
++ = read_csr(dd
, SEND_SC2VLT2
);
1821 *val
++ = read_csr(dd
, SEND_SC2VLT3
);
1823 filter_sc2vlt((u64
*)data
, false);
1827 static int __subn_get_opa_sl_to_sc(struct opa_smp
*smp
, u32 am
, u8
*data
,
1828 struct ib_device
*ibdev
, u8 port
,
1829 u32
*resp_len
, u32 max_len
)
1831 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
1833 size_t size
= ARRAY_SIZE(ibp
->sl_to_sc
); /* == 32 */
1836 if (am
|| smp_length_check(size
, max_len
)) {
1837 smp
->status
|= IB_SMP_INVALID_FIELD
;
1838 return reply((struct ib_mad_hdr
*)smp
);
1841 for (i
= 0; i
< ARRAY_SIZE(ibp
->sl_to_sc
); i
++)
1842 *p
++ = ibp
->sl_to_sc
[i
];
1847 return reply((struct ib_mad_hdr
*)smp
);
1850 static int __subn_set_opa_sl_to_sc(struct opa_smp
*smp
, u32 am
, u8
*data
,
1851 struct ib_device
*ibdev
, u8 port
,
1852 u32
*resp_len
, u32 max_len
)
1854 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
1856 size_t size
= ARRAY_SIZE(ibp
->sl_to_sc
);
1860 if (am
|| smp_length_check(size
, max_len
)) {
1861 smp
->status
|= IB_SMP_INVALID_FIELD
;
1862 return reply((struct ib_mad_hdr
*)smp
);
1865 for (i
= 0; i
< ARRAY_SIZE(ibp
->sl_to_sc
); i
++) {
1867 if (ibp
->sl_to_sc
[i
] != sc
) {
1868 ibp
->sl_to_sc
[i
] = sc
;
1870 /* Put all stale qps into error state */
1871 hfi1_error_port_qps(ibp
, i
);
1875 return __subn_get_opa_sl_to_sc(smp
, am
, data
, ibdev
, port
, resp_len
,
1879 static int __subn_get_opa_sc_to_sl(struct opa_smp
*smp
, u32 am
, u8
*data
,
1880 struct ib_device
*ibdev
, u8 port
,
1881 u32
*resp_len
, u32 max_len
)
1883 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
1885 size_t size
= ARRAY_SIZE(ibp
->sc_to_sl
); /* == 32 */
1888 if (am
|| smp_length_check(size
, max_len
)) {
1889 smp
->status
|= IB_SMP_INVALID_FIELD
;
1890 return reply((struct ib_mad_hdr
*)smp
);
1893 for (i
= 0; i
< ARRAY_SIZE(ibp
->sc_to_sl
); i
++)
1894 *p
++ = ibp
->sc_to_sl
[i
];
1899 return reply((struct ib_mad_hdr
*)smp
);
1902 static int __subn_set_opa_sc_to_sl(struct opa_smp
*smp
, u32 am
, u8
*data
,
1903 struct ib_device
*ibdev
, u8 port
,
1904 u32
*resp_len
, u32 max_len
)
1906 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
1907 size_t size
= ARRAY_SIZE(ibp
->sc_to_sl
);
1911 if (am
|| smp_length_check(size
, max_len
)) {
1912 smp
->status
|= IB_SMP_INVALID_FIELD
;
1913 return reply((struct ib_mad_hdr
*)smp
);
1916 for (i
= 0; i
< ARRAY_SIZE(ibp
->sc_to_sl
); i
++)
1917 ibp
->sc_to_sl
[i
] = *p
++;
1919 return __subn_get_opa_sc_to_sl(smp
, am
, data
, ibdev
, port
, resp_len
,
1923 static int __subn_get_opa_sc_to_vlt(struct opa_smp
*smp
, u32 am
, u8
*data
,
1924 struct ib_device
*ibdev
, u8 port
,
1925 u32
*resp_len
, u32 max_len
)
1927 u32 n_blocks
= OPA_AM_NBLK(am
);
1928 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
1929 void *vp
= (void *)data
;
1930 size_t size
= 4 * sizeof(u64
);
1932 if (n_blocks
!= 1 || smp_length_check(size
, max_len
)) {
1933 smp
->status
|= IB_SMP_INVALID_FIELD
;
1934 return reply((struct ib_mad_hdr
*)smp
);
1937 get_sc2vlt_tables(dd
, vp
);
1942 return reply((struct ib_mad_hdr
*)smp
);
1945 static int __subn_set_opa_sc_to_vlt(struct opa_smp
*smp
, u32 am
, u8
*data
,
1946 struct ib_device
*ibdev
, u8 port
,
1947 u32
*resp_len
, u32 max_len
)
1949 u32 n_blocks
= OPA_AM_NBLK(am
);
1950 int async_update
= OPA_AM_ASYNC(am
);
1951 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
1952 void *vp
= (void *)data
;
1953 struct hfi1_pportdata
*ppd
;
1956 * set_sc2vlt_tables writes the information contained in *data
1957 * to four 64-bit registers SendSC2VLt[0-3]. We need to make
1958 * sure *max_len is not greater than the total size of the four
1959 * SendSC2VLt[0-3] registers.
1961 size_t size
= 4 * sizeof(u64
);
1963 if (n_blocks
!= 1 || async_update
|| smp_length_check(size
, max_len
)) {
1964 smp
->status
|= IB_SMP_INVALID_FIELD
;
1965 return reply((struct ib_mad_hdr
*)smp
);
1968 /* IB numbers ports from 1, hw from 0 */
1969 ppd
= dd
->pport
+ (port
- 1);
1970 lstate
= driver_lstate(ppd
);
1972 * it's known that async_update is 0 by this point, but include
1973 * the explicit check for clarity
1975 if (!async_update
&&
1976 (lstate
== IB_PORT_ARMED
|| lstate
== IB_PORT_ACTIVE
)) {
1977 smp
->status
|= IB_SMP_INVALID_FIELD
;
1978 return reply((struct ib_mad_hdr
*)smp
);
1981 set_sc2vlt_tables(dd
, vp
);
1983 return __subn_get_opa_sc_to_vlt(smp
, am
, data
, ibdev
, port
, resp_len
,
1987 static int __subn_get_opa_sc_to_vlnt(struct opa_smp
*smp
, u32 am
, u8
*data
,
1988 struct ib_device
*ibdev
, u8 port
,
1989 u32
*resp_len
, u32 max_len
)
1991 u32 n_blocks
= OPA_AM_NPORT(am
);
1992 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
1993 struct hfi1_pportdata
*ppd
;
1994 void *vp
= (void *)data
;
1995 int size
= sizeof(struct sc2vlnt
);
1997 if (n_blocks
!= 1 || smp_length_check(size
, max_len
)) {
1998 smp
->status
|= IB_SMP_INVALID_FIELD
;
1999 return reply((struct ib_mad_hdr
*)smp
);
2002 ppd
= dd
->pport
+ (port
- 1);
2004 fm_get_table(ppd
, FM_TBL_SC2VLNT
, vp
);
2009 return reply((struct ib_mad_hdr
*)smp
);
2012 static int __subn_set_opa_sc_to_vlnt(struct opa_smp
*smp
, u32 am
, u8
*data
,
2013 struct ib_device
*ibdev
, u8 port
,
2014 u32
*resp_len
, u32 max_len
)
2016 u32 n_blocks
= OPA_AM_NPORT(am
);
2017 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
2018 struct hfi1_pportdata
*ppd
;
2019 void *vp
= (void *)data
;
2021 int size
= sizeof(struct sc2vlnt
);
2023 if (n_blocks
!= 1 || smp_length_check(size
, max_len
)) {
2024 smp
->status
|= IB_SMP_INVALID_FIELD
;
2025 return reply((struct ib_mad_hdr
*)smp
);
2028 /* IB numbers ports from 1, hw from 0 */
2029 ppd
= dd
->pport
+ (port
- 1);
2030 lstate
= driver_lstate(ppd
);
2031 if (lstate
== IB_PORT_ARMED
|| lstate
== IB_PORT_ACTIVE
) {
2032 smp
->status
|= IB_SMP_INVALID_FIELD
;
2033 return reply((struct ib_mad_hdr
*)smp
);
2036 ppd
= dd
->pport
+ (port
- 1);
2038 fm_set_table(ppd
, FM_TBL_SC2VLNT
, vp
);
2040 return __subn_get_opa_sc_to_vlnt(smp
, am
, data
, ibdev
, port
,
2044 static int __subn_get_opa_psi(struct opa_smp
*smp
, u32 am
, u8
*data
,
2045 struct ib_device
*ibdev
, u8 port
,
2046 u32
*resp_len
, u32 max_len
)
2048 u32 nports
= OPA_AM_NPORT(am
);
2049 u32 start_of_sm_config
= OPA_AM_START_SM_CFG(am
);
2051 struct hfi1_ibport
*ibp
;
2052 struct hfi1_pportdata
*ppd
;
2053 struct opa_port_state_info
*psi
= (struct opa_port_state_info
*)data
;
2055 if (nports
!= 1 || smp_length_check(sizeof(*psi
), max_len
)) {
2056 smp
->status
|= IB_SMP_INVALID_FIELD
;
2057 return reply((struct ib_mad_hdr
*)smp
);
2060 ibp
= to_iport(ibdev
, port
);
2061 ppd
= ppd_from_ibp(ibp
);
2063 lstate
= driver_lstate(ppd
);
2065 if (start_of_sm_config
&& (lstate
== IB_PORT_INIT
))
2066 ppd
->is_sm_config_started
= 1;
2068 psi
->port_states
.ledenable_offlinereason
= ppd
->neighbor_normal
<< 4;
2069 psi
->port_states
.ledenable_offlinereason
|=
2070 ppd
->is_sm_config_started
<< 5;
2071 psi
->port_states
.ledenable_offlinereason
|=
2072 ppd
->offline_disabled_reason
;
2074 psi
->port_states
.portphysstate_portstate
=
2075 (driver_pstate(ppd
) << 4) | (lstate
& 0xf);
2076 psi
->link_width_downgrade_tx_active
=
2077 cpu_to_be16(ppd
->link_width_downgrade_tx_active
);
2078 psi
->link_width_downgrade_rx_active
=
2079 cpu_to_be16(ppd
->link_width_downgrade_rx_active
);
2081 *resp_len
+= sizeof(struct opa_port_state_info
);
2083 return reply((struct ib_mad_hdr
*)smp
);
2086 static int __subn_set_opa_psi(struct opa_smp
*smp
, u32 am
, u8
*data
,
2087 struct ib_device
*ibdev
, u8 port
,
2088 u32
*resp_len
, u32 max_len
, int local_mad
)
2090 u32 nports
= OPA_AM_NPORT(am
);
2091 u32 start_of_sm_config
= OPA_AM_START_SM_CFG(am
);
2094 struct hfi1_ibport
*ibp
;
2095 struct hfi1_pportdata
*ppd
;
2096 struct opa_port_state_info
*psi
= (struct opa_port_state_info
*)data
;
2097 int ret
, invalid
= 0;
2099 if (nports
!= 1 || smp_length_check(sizeof(*psi
), max_len
)) {
2100 smp
->status
|= IB_SMP_INVALID_FIELD
;
2101 return reply((struct ib_mad_hdr
*)smp
);
2104 ibp
= to_iport(ibdev
, port
);
2105 ppd
= ppd_from_ibp(ibp
);
2107 ls_old
= driver_lstate(ppd
);
2109 ls_new
= port_states_to_logical_state(&psi
->port_states
);
2110 ps_new
= port_states_to_phys_state(&psi
->port_states
);
2112 if (ls_old
== IB_PORT_INIT
) {
2113 if (start_of_sm_config
) {
2114 if (ls_new
== ls_old
|| (ls_new
== IB_PORT_ARMED
))
2115 ppd
->is_sm_config_started
= 1;
2116 } else if (ls_new
== IB_PORT_ARMED
) {
2117 if (ppd
->is_sm_config_started
== 0) {
2119 smp
->status
|= IB_SMP_INVALID_FIELD
;
2125 ret
= set_port_states(ppd
, smp
, ls_new
, ps_new
, local_mad
);
2130 return __subn_get_opa_psi(smp
, am
, data
, ibdev
, port
, resp_len
,
2134 static int __subn_get_opa_cable_info(struct opa_smp
*smp
, u32 am
, u8
*data
,
2135 struct ib_device
*ibdev
, u8 port
,
2136 u32
*resp_len
, u32 max_len
)
2138 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
2139 u32 addr
= OPA_AM_CI_ADDR(am
);
2140 u32 len
= OPA_AM_CI_LEN(am
) + 1;
2143 if (dd
->pport
->port_type
!= PORT_TYPE_QSFP
||
2144 smp_length_check(len
, max_len
)) {
2145 smp
->status
|= IB_SMP_INVALID_FIELD
;
2146 return reply((struct ib_mad_hdr
*)smp
);
2149 #define __CI_PAGE_SIZE BIT(7) /* 128 bytes */
2150 #define __CI_PAGE_MASK ~(__CI_PAGE_SIZE - 1)
2151 #define __CI_PAGE_NUM(a) ((a) & __CI_PAGE_MASK)
2154 * check that addr is within spec, and
2155 * addr and (addr + len - 1) are on the same "page"
2158 (__CI_PAGE_NUM(addr
) != __CI_PAGE_NUM(addr
+ len
- 1))) {
2159 smp
->status
|= IB_SMP_INVALID_FIELD
;
2160 return reply((struct ib_mad_hdr
*)smp
);
2163 ret
= get_cable_info(dd
, port
, addr
, len
, data
);
2165 if (ret
== -ENODEV
) {
2166 smp
->status
|= IB_SMP_UNSUP_METH_ATTR
;
2167 return reply((struct ib_mad_hdr
*)smp
);
2170 /* The address range for the CableInfo SMA query is wider than the
2171 * memory available on the QSFP cable. We want to return a valid
2172 * response, albeit zeroed out, for address ranges beyond available
2173 * memory but that are within the CableInfo query spec
2175 if (ret
< 0 && ret
!= -ERANGE
) {
2176 smp
->status
|= IB_SMP_INVALID_FIELD
;
2177 return reply((struct ib_mad_hdr
*)smp
);
2183 return reply((struct ib_mad_hdr
*)smp
);
2186 static int __subn_get_opa_bct(struct opa_smp
*smp
, u32 am
, u8
*data
,
2187 struct ib_device
*ibdev
, u8 port
, u32
*resp_len
,
2190 u32 num_ports
= OPA_AM_NPORT(am
);
2191 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
2192 struct hfi1_pportdata
*ppd
;
2193 struct buffer_control
*p
= (struct buffer_control
*)data
;
2194 int size
= sizeof(struct buffer_control
);
2196 if (num_ports
!= 1 || smp_length_check(size
, max_len
)) {
2197 smp
->status
|= IB_SMP_INVALID_FIELD
;
2198 return reply((struct ib_mad_hdr
*)smp
);
2201 ppd
= dd
->pport
+ (port
- 1);
2202 fm_get_table(ppd
, FM_TBL_BUFFER_CONTROL
, p
);
2203 trace_bct_get(dd
, p
);
2207 return reply((struct ib_mad_hdr
*)smp
);
2210 static int __subn_set_opa_bct(struct opa_smp
*smp
, u32 am
, u8
*data
,
2211 struct ib_device
*ibdev
, u8 port
, u32
*resp_len
,
2214 u32 num_ports
= OPA_AM_NPORT(am
);
2215 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
2216 struct hfi1_pportdata
*ppd
;
2217 struct buffer_control
*p
= (struct buffer_control
*)data
;
2219 if (num_ports
!= 1 || smp_length_check(sizeof(*p
), max_len
)) {
2220 smp
->status
|= IB_SMP_INVALID_FIELD
;
2221 return reply((struct ib_mad_hdr
*)smp
);
2223 ppd
= dd
->pport
+ (port
- 1);
2224 trace_bct_set(dd
, p
);
2225 if (fm_set_table(ppd
, FM_TBL_BUFFER_CONTROL
, p
) < 0) {
2226 smp
->status
|= IB_SMP_INVALID_FIELD
;
2227 return reply((struct ib_mad_hdr
*)smp
);
2230 return __subn_get_opa_bct(smp
, am
, data
, ibdev
, port
, resp_len
,
2234 static int __subn_get_opa_vl_arb(struct opa_smp
*smp
, u32 am
, u8
*data
,
2235 struct ib_device
*ibdev
, u8 port
,
2236 u32
*resp_len
, u32 max_len
)
2238 struct hfi1_pportdata
*ppd
= ppd_from_ibp(to_iport(ibdev
, port
));
2239 u32 num_ports
= OPA_AM_NPORT(am
);
2240 u8 section
= (am
& 0x00ff0000) >> 16;
2244 if (num_ports
!= 1 || smp_length_check(size
, max_len
)) {
2245 smp
->status
|= IB_SMP_INVALID_FIELD
;
2246 return reply((struct ib_mad_hdr
*)smp
);
2250 case OPA_VLARB_LOW_ELEMENTS
:
2251 fm_get_table(ppd
, FM_TBL_VL_LOW_ARB
, p
);
2253 case OPA_VLARB_HIGH_ELEMENTS
:
2254 fm_get_table(ppd
, FM_TBL_VL_HIGH_ARB
, p
);
2256 case OPA_VLARB_PREEMPT_ELEMENTS
:
2257 fm_get_table(ppd
, FM_TBL_VL_PREEMPT_ELEMS
, p
);
2259 case OPA_VLARB_PREEMPT_MATRIX
:
2260 fm_get_table(ppd
, FM_TBL_VL_PREEMPT_MATRIX
, p
);
2263 pr_warn("OPA SubnGet(VL Arb) AM Invalid : 0x%x\n",
2264 be32_to_cpu(smp
->attr_mod
));
2265 smp
->status
|= IB_SMP_INVALID_FIELD
;
2270 if (size
> 0 && resp_len
)
2273 return reply((struct ib_mad_hdr
*)smp
);
2276 static int __subn_set_opa_vl_arb(struct opa_smp
*smp
, u32 am
, u8
*data
,
2277 struct ib_device
*ibdev
, u8 port
,
2278 u32
*resp_len
, u32 max_len
)
2280 struct hfi1_pportdata
*ppd
= ppd_from_ibp(to_iport(ibdev
, port
));
2281 u32 num_ports
= OPA_AM_NPORT(am
);
2282 u8 section
= (am
& 0x00ff0000) >> 16;
2286 if (num_ports
!= 1 || smp_length_check(size
, max_len
)) {
2287 smp
->status
|= IB_SMP_INVALID_FIELD
;
2288 return reply((struct ib_mad_hdr
*)smp
);
2292 case OPA_VLARB_LOW_ELEMENTS
:
2293 (void)fm_set_table(ppd
, FM_TBL_VL_LOW_ARB
, p
);
2295 case OPA_VLARB_HIGH_ELEMENTS
:
2296 (void)fm_set_table(ppd
, FM_TBL_VL_HIGH_ARB
, p
);
2299 * neither OPA_VLARB_PREEMPT_ELEMENTS, or OPA_VLARB_PREEMPT_MATRIX
2300 * can be changed from the default values
2302 case OPA_VLARB_PREEMPT_ELEMENTS
:
2303 case OPA_VLARB_PREEMPT_MATRIX
:
2304 smp
->status
|= IB_SMP_UNSUP_METH_ATTR
;
2307 pr_warn("OPA SubnSet(VL Arb) AM Invalid : 0x%x\n",
2308 be32_to_cpu(smp
->attr_mod
));
2309 smp
->status
|= IB_SMP_INVALID_FIELD
;
2313 return __subn_get_opa_vl_arb(smp
, am
, data
, ibdev
, port
, resp_len
,
2317 struct opa_pma_mad
{
2318 struct ib_mad_hdr mad_hdr
;
2322 struct opa_port_status_req
{
2325 __be32 vl_select_mask
;
2328 #define VL_MASK_ALL 0x00000000000080ffUL
2330 struct opa_port_status_rsp
{
2333 __be32 vl_select_mask
;
2336 __be64 port_xmit_data
;
2337 __be64 port_rcv_data
;
2338 __be64 port_xmit_pkts
;
2339 __be64 port_rcv_pkts
;
2340 __be64 port_multicast_xmit_pkts
;
2341 __be64 port_multicast_rcv_pkts
;
2342 __be64 port_xmit_wait
;
2343 __be64 sw_port_congestion
;
2344 __be64 port_rcv_fecn
;
2345 __be64 port_rcv_becn
;
2346 __be64 port_xmit_time_cong
;
2347 __be64 port_xmit_wasted_bw
;
2348 __be64 port_xmit_wait_data
;
2349 __be64 port_rcv_bubble
;
2350 __be64 port_mark_fecn
;
2351 /* Error counters */
2352 __be64 port_rcv_constraint_errors
;
2353 __be64 port_rcv_switch_relay_errors
;
2354 __be64 port_xmit_discards
;
2355 __be64 port_xmit_constraint_errors
;
2356 __be64 port_rcv_remote_physical_errors
;
2357 __be64 local_link_integrity_errors
;
2358 __be64 port_rcv_errors
;
2359 __be64 excessive_buffer_overruns
;
2360 __be64 fm_config_errors
;
2361 __be32 link_error_recovery
;
2363 u8 uncorrectable_errors
;
2365 u8 link_quality_indicator
; /* 5res, 3bit */
2368 /* per-VL Data counters */
2369 __be64 port_vl_xmit_data
;
2370 __be64 port_vl_rcv_data
;
2371 __be64 port_vl_xmit_pkts
;
2372 __be64 port_vl_rcv_pkts
;
2373 __be64 port_vl_xmit_wait
;
2374 __be64 sw_port_vl_congestion
;
2375 __be64 port_vl_rcv_fecn
;
2376 __be64 port_vl_rcv_becn
;
2377 __be64 port_xmit_time_cong
;
2378 __be64 port_vl_xmit_wasted_bw
;
2379 __be64 port_vl_xmit_wait_data
;
2380 __be64 port_vl_rcv_bubble
;
2381 __be64 port_vl_mark_fecn
;
2382 __be64 port_vl_xmit_discards
;
2383 } vls
[]; /* real array size defined by # bits set in vl_select_mask */
2386 enum counter_selects
{
2387 CS_PORT_XMIT_DATA
= (1 << 31),
2388 CS_PORT_RCV_DATA
= (1 << 30),
2389 CS_PORT_XMIT_PKTS
= (1 << 29),
2390 CS_PORT_RCV_PKTS
= (1 << 28),
2391 CS_PORT_MCAST_XMIT_PKTS
= (1 << 27),
2392 CS_PORT_MCAST_RCV_PKTS
= (1 << 26),
2393 CS_PORT_XMIT_WAIT
= (1 << 25),
2394 CS_SW_PORT_CONGESTION
= (1 << 24),
2395 CS_PORT_RCV_FECN
= (1 << 23),
2396 CS_PORT_RCV_BECN
= (1 << 22),
2397 CS_PORT_XMIT_TIME_CONG
= (1 << 21),
2398 CS_PORT_XMIT_WASTED_BW
= (1 << 20),
2399 CS_PORT_XMIT_WAIT_DATA
= (1 << 19),
2400 CS_PORT_RCV_BUBBLE
= (1 << 18),
2401 CS_PORT_MARK_FECN
= (1 << 17),
2402 CS_PORT_RCV_CONSTRAINT_ERRORS
= (1 << 16),
2403 CS_PORT_RCV_SWITCH_RELAY_ERRORS
= (1 << 15),
2404 CS_PORT_XMIT_DISCARDS
= (1 << 14),
2405 CS_PORT_XMIT_CONSTRAINT_ERRORS
= (1 << 13),
2406 CS_PORT_RCV_REMOTE_PHYSICAL_ERRORS
= (1 << 12),
2407 CS_LOCAL_LINK_INTEGRITY_ERRORS
= (1 << 11),
2408 CS_PORT_RCV_ERRORS
= (1 << 10),
2409 CS_EXCESSIVE_BUFFER_OVERRUNS
= (1 << 9),
2410 CS_FM_CONFIG_ERRORS
= (1 << 8),
2411 CS_LINK_ERROR_RECOVERY
= (1 << 7),
2412 CS_LINK_DOWNED
= (1 << 6),
2413 CS_UNCORRECTABLE_ERRORS
= (1 << 5),
2416 struct opa_clear_port_status
{
2417 __be64 port_select_mask
[4];
2418 __be32 counter_select_mask
;
2421 struct opa_aggregate
{
2423 __be16 err_reqlength
; /* 1 bit, 8 res, 7 bit */
2428 #define MSK_LLI 0x000000f0
2429 #define MSK_LLI_SFT 4
2430 #define MSK_LER 0x0000000f
2431 #define MSK_LER_SFT 0
2435 /* Request contains first three fields, response contains those plus the rest */
2436 struct opa_port_data_counters_msg
{
2437 __be64 port_select_mask
[4];
2438 __be32 vl_select_mask
;
2441 /* Response fields follow */
2442 struct _port_dctrs
{
2445 __be32 link_quality_indicator
; /* 29res, 3bit */
2448 __be64 port_xmit_data
;
2449 __be64 port_rcv_data
;
2450 __be64 port_xmit_pkts
;
2451 __be64 port_rcv_pkts
;
2452 __be64 port_multicast_xmit_pkts
;
2453 __be64 port_multicast_rcv_pkts
;
2454 __be64 port_xmit_wait
;
2455 __be64 sw_port_congestion
;
2456 __be64 port_rcv_fecn
;
2457 __be64 port_rcv_becn
;
2458 __be64 port_xmit_time_cong
;
2459 __be64 port_xmit_wasted_bw
;
2460 __be64 port_xmit_wait_data
;
2461 __be64 port_rcv_bubble
;
2462 __be64 port_mark_fecn
;
2464 __be64 port_error_counter_summary
;
2465 /* Sum of error counts/port */
2468 /* per-VL Data counters */
2469 __be64 port_vl_xmit_data
;
2470 __be64 port_vl_rcv_data
;
2471 __be64 port_vl_xmit_pkts
;
2472 __be64 port_vl_rcv_pkts
;
2473 __be64 port_vl_xmit_wait
;
2474 __be64 sw_port_vl_congestion
;
2475 __be64 port_vl_rcv_fecn
;
2476 __be64 port_vl_rcv_becn
;
2477 __be64 port_xmit_time_cong
;
2478 __be64 port_vl_xmit_wasted_bw
;
2479 __be64 port_vl_xmit_wait_data
;
2480 __be64 port_vl_rcv_bubble
;
2481 __be64 port_vl_mark_fecn
;
2483 /* array size defined by #bits set in vl_select_mask*/
2484 } port
[1]; /* array size defined by #ports in attribute modifier */
2487 struct opa_port_error_counters64_msg
{
2489 * Request contains first two fields, response contains the
2492 __be64 port_select_mask
[4];
2493 __be32 vl_select_mask
;
2495 /* Response-only fields follow */
2497 struct _port_ectrs
{
2500 __be64 port_rcv_constraint_errors
;
2501 __be64 port_rcv_switch_relay_errors
;
2502 __be64 port_xmit_discards
;
2503 __be64 port_xmit_constraint_errors
;
2504 __be64 port_rcv_remote_physical_errors
;
2505 __be64 local_link_integrity_errors
;
2506 __be64 port_rcv_errors
;
2507 __be64 excessive_buffer_overruns
;
2508 __be64 fm_config_errors
;
2509 __be32 link_error_recovery
;
2511 u8 uncorrectable_errors
;
2514 __be64 port_vl_xmit_discards
;
2516 /* array size defined by #bits set in vl_select_mask */
2517 } port
[1]; /* array size defined by #ports in attribute modifier */
2520 struct opa_port_error_info_msg
{
2521 __be64 port_select_mask
[4];
2522 __be32 error_info_select_mask
;
2528 /* PortRcvErrorInfo */
2534 /* EI1to12 format */
2537 u8 remaining_flit_bits12
;
2541 u8 remaining_flit_bits
;
2545 } __packed port_rcv_ei
;
2547 /* ExcessiveBufferOverrunInfo */
2551 } __packed excessive_buffer_overrun_ei
;
2553 /* PortXmitConstraintErrorInfo */
2559 } __packed port_xmit_constraint_ei
;
2561 /* PortRcvConstraintErrorInfo */
2567 } __packed port_rcv_constraint_ei
;
2569 /* PortRcvSwitchRelayErrorInfo */
2574 } __packed port_rcv_switch_relay_ei
;
2576 /* UncorrectableErrorInfo */
2580 } __packed uncorrectable_ei
;
2582 /* FMConfigErrorInfo */
2586 } __packed fm_config_ei
;
2588 } port
[1]; /* actual array size defined by #ports in attr modifier */
2591 /* opa_port_error_info_msg error_info_select_mask bit definitions */
2592 enum error_info_selects
{
2593 ES_PORT_RCV_ERROR_INFO
= (1 << 31),
2594 ES_EXCESSIVE_BUFFER_OVERRUN_INFO
= (1 << 30),
2595 ES_PORT_XMIT_CONSTRAINT_ERROR_INFO
= (1 << 29),
2596 ES_PORT_RCV_CONSTRAINT_ERROR_INFO
= (1 << 28),
2597 ES_PORT_RCV_SWITCH_RELAY_ERROR_INFO
= (1 << 27),
2598 ES_UNCORRECTABLE_ERROR_INFO
= (1 << 26),
2599 ES_FM_CONFIG_ERROR_INFO
= (1 << 25)
2602 static int pma_get_opa_classportinfo(struct opa_pma_mad
*pmp
,
2603 struct ib_device
*ibdev
, u32
*resp_len
)
2605 struct opa_class_port_info
*p
=
2606 (struct opa_class_port_info
*)pmp
->data
;
2608 memset(pmp
->data
, 0, sizeof(pmp
->data
));
2610 if (pmp
->mad_hdr
.attr_mod
!= 0)
2611 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
2613 p
->base_version
= OPA_MGMT_BASE_VERSION
;
2614 p
->class_version
= OPA_SM_CLASS_VERSION
;
2616 * Expected response time is 4.096 usec. * 2^18 == 1.073741824 sec.
2618 p
->cap_mask2_resp_time
= cpu_to_be32(18);
2621 *resp_len
+= sizeof(*p
);
2623 return reply((struct ib_mad_hdr
*)pmp
);
2626 static void a0_portstatus(struct hfi1_pportdata
*ppd
,
2627 struct opa_port_status_rsp
*rsp
)
2629 if (!is_bx(ppd
->dd
)) {
2631 u64 sum_vl_xmit_wait
= 0;
2632 unsigned long vl_all_mask
= VL_MASK_ALL
;
2634 for_each_set_bit(vl
, &vl_all_mask
, BITS_PER_LONG
) {
2635 u64 tmp
= sum_vl_xmit_wait
+
2636 read_port_cntr(ppd
, C_TX_WAIT_VL
,
2638 if (tmp
< sum_vl_xmit_wait
) {
2640 sum_vl_xmit_wait
= (u64
)~0;
2643 sum_vl_xmit_wait
= tmp
;
2645 if (be64_to_cpu(rsp
->port_xmit_wait
) > sum_vl_xmit_wait
)
2646 rsp
->port_xmit_wait
= cpu_to_be64(sum_vl_xmit_wait
);
2651 * tx_link_width - convert link width bitmask to integer
2652 * value representing actual link width.
2653 * @link_width: width of active link
2654 * @return: return index of the bit set in link_width var
2656 * The function convert and return the index of bit set
2657 * that indicate the current link width.
2659 u16
tx_link_width(u16 link_width
)
2661 int n
= LINK_WIDTH_DEFAULT
;
2664 while (link_width
&& n
) {
2665 if (link_width
& (1 << (n
- 1))) {
2676 * get_xmit_wait_counters - Convert HFI 's SendWaitCnt/SendWaitVlCnt
2677 * counter in unit of TXE cycle times to flit times.
2678 * @ppd: info of physical Hfi port
2679 * @link_width: width of active link
2680 * @link_speed: speed of active link
2681 * @vl: represent VL0-VL7, VL15 for PortVLXmitWait counters request
2682 * and if vl value is C_VL_COUNT, it represent SendWaitCnt
2684 * @return: return SendWaitCnt/SendWaitVlCnt counter value per vl.
2686 * Convert SendWaitCnt/SendWaitVlCnt counter from TXE cycle times to
2687 * flit times. Call this function to samples these counters. This
2688 * function will calculate for previous state transition and update
2689 * current state at end of function using ppd->prev_link_width and
2690 * ppd->port_vl_xmit_wait_last to port_vl_xmit_wait_curr and link_width.
2692 u64
get_xmit_wait_counters(struct hfi1_pportdata
*ppd
,
2693 u16 link_width
, u16 link_speed
, int vl
)
2695 u64 port_vl_xmit_wait_curr
;
2696 u64 delta_vl_xmit_wait
;
2699 if (vl
> C_VL_COUNT
)
2701 if (vl
< C_VL_COUNT
)
2702 port_vl_xmit_wait_curr
=
2703 read_port_cntr(ppd
, C_TX_WAIT_VL
, vl
);
2705 port_vl_xmit_wait_curr
=
2706 read_port_cntr(ppd
, C_TX_WAIT
, CNTR_INVALID_VL
);
2709 port_vl_xmit_wait_curr
-
2710 ppd
->port_vl_xmit_wait_last
[vl
];
2711 delta_vl_xmit_wait
=
2712 convert_xmit_counter(xmit_wait_val
,
2713 ppd
->prev_link_width
,
2716 ppd
->vl_xmit_flit_cnt
[vl
] += delta_vl_xmit_wait
;
2717 ppd
->port_vl_xmit_wait_last
[vl
] = port_vl_xmit_wait_curr
;
2718 ppd
->prev_link_width
= link_width
;
2720 return ppd
->vl_xmit_flit_cnt
[vl
];
2723 static int pma_get_opa_portstatus(struct opa_pma_mad
*pmp
,
2724 struct ib_device
*ibdev
,
2725 u8 port
, u32
*resp_len
)
2727 struct opa_port_status_req
*req
=
2728 (struct opa_port_status_req
*)pmp
->data
;
2729 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
2730 struct opa_port_status_rsp
*rsp
;
2731 unsigned long vl_select_mask
= be32_to_cpu(req
->vl_select_mask
);
2733 size_t response_data_size
;
2734 u32 nports
= be32_to_cpu(pmp
->mad_hdr
.attr_mod
) >> 24;
2735 u8 port_num
= req
->port_num
;
2736 u8 num_vls
= hweight64(vl_select_mask
);
2737 struct _vls_pctrs
*vlinfo
;
2738 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
2739 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
2745 response_data_size
= struct_size(rsp
, vls
, num_vls
);
2746 if (response_data_size
> sizeof(pmp
->data
)) {
2747 pmp
->mad_hdr
.status
|= OPA_PM_STATUS_REQUEST_TOO_LARGE
;
2748 return reply((struct ib_mad_hdr
*)pmp
);
2751 if (nports
!= 1 || (port_num
&& port_num
!= port
) ||
2752 num_vls
> OPA_MAX_VLS
|| (vl_select_mask
& ~VL_MASK_ALL
)) {
2753 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
2754 return reply((struct ib_mad_hdr
*)pmp
);
2757 memset(pmp
->data
, 0, sizeof(pmp
->data
));
2759 rsp
= (struct opa_port_status_rsp
*)pmp
->data
;
2761 rsp
->port_num
= port_num
;
2763 rsp
->port_num
= port
;
2765 rsp
->port_rcv_constraint_errors
=
2766 cpu_to_be64(read_port_cntr(ppd
, C_SW_RCV_CSTR_ERR
,
2769 hfi1_read_link_quality(dd
, &rsp
->link_quality_indicator
);
2771 rsp
->vl_select_mask
= cpu_to_be32((u32
)vl_select_mask
);
2772 rsp
->port_xmit_data
= cpu_to_be64(read_dev_cntr(dd
, C_DC_XMIT_FLITS
,
2774 rsp
->port_rcv_data
= cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_FLITS
,
2776 rsp
->port_xmit_pkts
= cpu_to_be64(read_dev_cntr(dd
, C_DC_XMIT_PKTS
,
2778 rsp
->port_rcv_pkts
= cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_PKTS
,
2780 rsp
->port_multicast_xmit_pkts
=
2781 cpu_to_be64(read_dev_cntr(dd
, C_DC_MC_XMIT_PKTS
,
2783 rsp
->port_multicast_rcv_pkts
=
2784 cpu_to_be64(read_dev_cntr(dd
, C_DC_MC_RCV_PKTS
,
2787 * Convert PortXmitWait counter from TXE cycle times
2791 tx_link_width(ppd
->link_width_downgrade_tx_active
);
2792 link_speed
= get_link_speed(ppd
->link_speed_active
);
2793 rsp
->port_xmit_wait
=
2794 cpu_to_be64(get_xmit_wait_counters(ppd
, link_width
,
2795 link_speed
, C_VL_COUNT
));
2796 rsp
->port_rcv_fecn
=
2797 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_FCN
, CNTR_INVALID_VL
));
2798 rsp
->port_rcv_becn
=
2799 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_BCN
, CNTR_INVALID_VL
));
2800 rsp
->port_xmit_discards
=
2801 cpu_to_be64(read_port_cntr(ppd
, C_SW_XMIT_DSCD
,
2803 rsp
->port_xmit_constraint_errors
=
2804 cpu_to_be64(read_port_cntr(ppd
, C_SW_XMIT_CSTR_ERR
,
2806 rsp
->port_rcv_remote_physical_errors
=
2807 cpu_to_be64(read_dev_cntr(dd
, C_DC_RMT_PHY_ERR
,
2809 rsp
->local_link_integrity_errors
=
2810 cpu_to_be64(read_dev_cntr(dd
, C_DC_RX_REPLAY
,
2812 tmp
= read_dev_cntr(dd
, C_DC_SEQ_CRC_CNT
, CNTR_INVALID_VL
);
2813 tmp2
= tmp
+ read_dev_cntr(dd
, C_DC_REINIT_FROM_PEER_CNT
,
2815 if (tmp2
> (u32
)UINT_MAX
|| tmp2
< tmp
) {
2816 /* overflow/wrapped */
2817 rsp
->link_error_recovery
= cpu_to_be32(~0);
2819 rsp
->link_error_recovery
= cpu_to_be32(tmp2
);
2821 rsp
->port_rcv_errors
=
2822 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_ERR
, CNTR_INVALID_VL
));
2823 rsp
->excessive_buffer_overruns
=
2824 cpu_to_be64(read_dev_cntr(dd
, C_RCV_OVF
, CNTR_INVALID_VL
));
2825 rsp
->fm_config_errors
=
2826 cpu_to_be64(read_dev_cntr(dd
, C_DC_FM_CFG_ERR
,
2828 rsp
->link_downed
= cpu_to_be32(read_port_cntr(ppd
, C_SW_LINK_DOWN
,
2831 /* rsp->uncorrectable_errors is 8 bits wide, and it pegs at 0xff */
2832 tmp
= read_dev_cntr(dd
, C_DC_UNC_ERR
, CNTR_INVALID_VL
);
2833 rsp
->uncorrectable_errors
= tmp
< 0x100 ? (tmp
& 0xff) : 0xff;
2835 vlinfo
= &rsp
->vls
[0];
2837 /* The vl_select_mask has been checked above, and we know
2838 * that it contains only entries which represent valid VLs.
2839 * So in the for_each_set_bit() loop below, we don't need
2840 * any additional checks for vl.
2842 for_each_set_bit(vl
, &vl_select_mask
, BITS_PER_LONG
) {
2843 memset(vlinfo
, 0, sizeof(*vlinfo
));
2845 tmp
= read_dev_cntr(dd
, C_DC_RX_FLIT_VL
, idx_from_vl(vl
));
2846 rsp
->vls
[vfi
].port_vl_rcv_data
= cpu_to_be64(tmp
);
2848 rsp
->vls
[vfi
].port_vl_rcv_pkts
=
2849 cpu_to_be64(read_dev_cntr(dd
, C_DC_RX_PKT_VL
,
2852 rsp
->vls
[vfi
].port_vl_xmit_data
=
2853 cpu_to_be64(read_port_cntr(ppd
, C_TX_FLIT_VL
,
2856 rsp
->vls
[vfi
].port_vl_xmit_pkts
=
2857 cpu_to_be64(read_port_cntr(ppd
, C_TX_PKT_VL
,
2860 * Convert PortVlXmitWait counter from TXE cycle
2861 * times to flit times.
2863 rsp
->vls
[vfi
].port_vl_xmit_wait
=
2864 cpu_to_be64(get_xmit_wait_counters(ppd
, link_width
,
2868 rsp
->vls
[vfi
].port_vl_rcv_fecn
=
2869 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_FCN_VL
,
2872 rsp
->vls
[vfi
].port_vl_rcv_becn
=
2873 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_BCN_VL
,
2876 rsp
->vls
[vfi
].port_vl_xmit_discards
=
2877 cpu_to_be64(read_port_cntr(ppd
, C_SW_XMIT_DSCD_VL
,
2883 a0_portstatus(ppd
, rsp
);
2886 *resp_len
+= response_data_size
;
2888 return reply((struct ib_mad_hdr
*)pmp
);
2891 static u64
get_error_counter_summary(struct ib_device
*ibdev
, u8 port
,
2892 u8 res_lli
, u8 res_ler
)
2894 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
2895 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
2896 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
2897 u64 error_counter_summary
= 0, tmp
;
2899 error_counter_summary
+= read_port_cntr(ppd
, C_SW_RCV_CSTR_ERR
,
2901 /* port_rcv_switch_relay_errors is 0 for HFIs */
2902 error_counter_summary
+= read_port_cntr(ppd
, C_SW_XMIT_DSCD
,
2904 error_counter_summary
+= read_port_cntr(ppd
, C_SW_XMIT_CSTR_ERR
,
2906 error_counter_summary
+= read_dev_cntr(dd
, C_DC_RMT_PHY_ERR
,
2908 /* local link integrity must be right-shifted by the lli resolution */
2909 error_counter_summary
+= (read_dev_cntr(dd
, C_DC_RX_REPLAY
,
2910 CNTR_INVALID_VL
) >> res_lli
);
2911 /* link error recovery must b right-shifted by the ler resolution */
2912 tmp
= read_dev_cntr(dd
, C_DC_SEQ_CRC_CNT
, CNTR_INVALID_VL
);
2913 tmp
+= read_dev_cntr(dd
, C_DC_REINIT_FROM_PEER_CNT
, CNTR_INVALID_VL
);
2914 error_counter_summary
+= (tmp
>> res_ler
);
2915 error_counter_summary
+= read_dev_cntr(dd
, C_DC_RCV_ERR
,
2917 error_counter_summary
+= read_dev_cntr(dd
, C_RCV_OVF
, CNTR_INVALID_VL
);
2918 error_counter_summary
+= read_dev_cntr(dd
, C_DC_FM_CFG_ERR
,
2920 /* ppd->link_downed is a 32-bit value */
2921 error_counter_summary
+= read_port_cntr(ppd
, C_SW_LINK_DOWN
,
2923 tmp
= read_dev_cntr(dd
, C_DC_UNC_ERR
, CNTR_INVALID_VL
);
2924 /* this is an 8-bit quantity */
2925 error_counter_summary
+= tmp
< 0x100 ? (tmp
& 0xff) : 0xff;
2927 return error_counter_summary
;
2930 static void a0_datacounters(struct hfi1_pportdata
*ppd
, struct _port_dctrs
*rsp
)
2932 if (!is_bx(ppd
->dd
)) {
2934 u64 sum_vl_xmit_wait
= 0;
2935 unsigned long vl_all_mask
= VL_MASK_ALL
;
2937 for_each_set_bit(vl
, &vl_all_mask
, BITS_PER_LONG
) {
2938 u64 tmp
= sum_vl_xmit_wait
+
2939 read_port_cntr(ppd
, C_TX_WAIT_VL
,
2941 if (tmp
< sum_vl_xmit_wait
) {
2943 sum_vl_xmit_wait
= (u64
)~0;
2946 sum_vl_xmit_wait
= tmp
;
2948 if (be64_to_cpu(rsp
->port_xmit_wait
) > sum_vl_xmit_wait
)
2949 rsp
->port_xmit_wait
= cpu_to_be64(sum_vl_xmit_wait
);
2953 static void pma_get_opa_port_dctrs(struct ib_device
*ibdev
,
2954 struct _port_dctrs
*rsp
)
2956 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
2958 rsp
->port_xmit_data
= cpu_to_be64(read_dev_cntr(dd
, C_DC_XMIT_FLITS
,
2960 rsp
->port_rcv_data
= cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_FLITS
,
2962 rsp
->port_xmit_pkts
= cpu_to_be64(read_dev_cntr(dd
, C_DC_XMIT_PKTS
,
2964 rsp
->port_rcv_pkts
= cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_PKTS
,
2966 rsp
->port_multicast_xmit_pkts
=
2967 cpu_to_be64(read_dev_cntr(dd
, C_DC_MC_XMIT_PKTS
,
2969 rsp
->port_multicast_rcv_pkts
=
2970 cpu_to_be64(read_dev_cntr(dd
, C_DC_MC_RCV_PKTS
,
2974 static int pma_get_opa_datacounters(struct opa_pma_mad
*pmp
,
2975 struct ib_device
*ibdev
,
2976 u8 port
, u32
*resp_len
)
2978 struct opa_port_data_counters_msg
*req
=
2979 (struct opa_port_data_counters_msg
*)pmp
->data
;
2980 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
2981 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
2982 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
2983 struct _port_dctrs
*rsp
;
2984 struct _vls_dctrs
*vlinfo
;
2985 size_t response_data_size
;
2988 u8 res_lli
, res_ler
;
2992 unsigned long vl_select_mask
;
2997 num_ports
= be32_to_cpu(pmp
->mad_hdr
.attr_mod
) >> 24;
2998 num_vls
= hweight32(be32_to_cpu(req
->vl_select_mask
));
2999 vl_select_mask
= be32_to_cpu(req
->vl_select_mask
);
3000 res_lli
= (u8
)(be32_to_cpu(req
->resolution
) & MSK_LLI
) >> MSK_LLI_SFT
;
3001 res_lli
= res_lli
? res_lli
+ ADD_LLI
: 0;
3002 res_ler
= (u8
)(be32_to_cpu(req
->resolution
) & MSK_LER
) >> MSK_LER_SFT
;
3003 res_ler
= res_ler
? res_ler
+ ADD_LER
: 0;
3005 if (num_ports
!= 1 || (vl_select_mask
& ~VL_MASK_ALL
)) {
3006 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3007 return reply((struct ib_mad_hdr
*)pmp
);
3011 response_data_size
= struct_size(req
, port
[0].vls
, num_vls
);
3013 if (response_data_size
> sizeof(pmp
->data
)) {
3014 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3015 return reply((struct ib_mad_hdr
*)pmp
);
3019 * The bit set in the mask needs to be consistent with the
3020 * port the request came in on.
3022 port_mask
= be64_to_cpu(req
->port_select_mask
[3]);
3023 port_num
= find_first_bit((unsigned long *)&port_mask
,
3024 sizeof(port_mask
) * 8);
3026 if (port_num
!= port
) {
3027 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3028 return reply((struct ib_mad_hdr
*)pmp
);
3031 rsp
= &req
->port
[0];
3032 memset(rsp
, 0, sizeof(*rsp
));
3034 rsp
->port_number
= port
;
3036 * Note that link_quality_indicator is a 32 bit quantity in
3037 * 'datacounters' queries (as opposed to 'portinfo' queries,
3038 * where it's a byte).
3040 hfi1_read_link_quality(dd
, &lq
);
3041 rsp
->link_quality_indicator
= cpu_to_be32((u32
)lq
);
3042 pma_get_opa_port_dctrs(ibdev
, rsp
);
3045 * Convert PortXmitWait counter from TXE
3046 * cycle times to flit times.
3049 tx_link_width(ppd
->link_width_downgrade_tx_active
);
3050 link_speed
= get_link_speed(ppd
->link_speed_active
);
3051 rsp
->port_xmit_wait
=
3052 cpu_to_be64(get_xmit_wait_counters(ppd
, link_width
,
3053 link_speed
, C_VL_COUNT
));
3054 rsp
->port_rcv_fecn
=
3055 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_FCN
, CNTR_INVALID_VL
));
3056 rsp
->port_rcv_becn
=
3057 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_BCN
, CNTR_INVALID_VL
));
3058 rsp
->port_error_counter_summary
=
3059 cpu_to_be64(get_error_counter_summary(ibdev
, port
,
3062 vlinfo
= &rsp
->vls
[0];
3064 /* The vl_select_mask has been checked above, and we know
3065 * that it contains only entries which represent valid VLs.
3066 * So in the for_each_set_bit() loop below, we don't need
3067 * any additional checks for vl.
3069 for_each_set_bit(vl
, &vl_select_mask
, BITS_PER_LONG
) {
3070 memset(vlinfo
, 0, sizeof(*vlinfo
));
3072 rsp
->vls
[vfi
].port_vl_xmit_data
=
3073 cpu_to_be64(read_port_cntr(ppd
, C_TX_FLIT_VL
,
3076 rsp
->vls
[vfi
].port_vl_rcv_data
=
3077 cpu_to_be64(read_dev_cntr(dd
, C_DC_RX_FLIT_VL
,
3080 rsp
->vls
[vfi
].port_vl_xmit_pkts
=
3081 cpu_to_be64(read_port_cntr(ppd
, C_TX_PKT_VL
,
3084 rsp
->vls
[vfi
].port_vl_rcv_pkts
=
3085 cpu_to_be64(read_dev_cntr(dd
, C_DC_RX_PKT_VL
,
3089 * Convert PortVlXmitWait counter from TXE
3090 * cycle times to flit times.
3092 rsp
->vls
[vfi
].port_vl_xmit_wait
=
3093 cpu_to_be64(get_xmit_wait_counters(ppd
, link_width
,
3097 rsp
->vls
[vfi
].port_vl_rcv_fecn
=
3098 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_FCN_VL
,
3100 rsp
->vls
[vfi
].port_vl_rcv_becn
=
3101 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_BCN_VL
,
3104 /* rsp->port_vl_xmit_time_cong is 0 for HFIs */
3105 /* rsp->port_vl_xmit_wasted_bw ??? */
3106 /* port_vl_xmit_wait_data - TXE (table 13-9 HFI spec) ???
3107 * does this differ from rsp->vls[vfi].port_vl_xmit_wait
3109 /*rsp->vls[vfi].port_vl_mark_fecn =
3110 * cpu_to_be64(read_csr(dd, DCC_PRF_PORT_VL_MARK_FECN_CNT
3117 a0_datacounters(ppd
, rsp
);
3120 *resp_len
+= response_data_size
;
3122 return reply((struct ib_mad_hdr
*)pmp
);
3125 static int pma_get_ib_portcounters_ext(struct ib_pma_mad
*pmp
,
3126 struct ib_device
*ibdev
, u8 port
)
3128 struct ib_pma_portcounters_ext
*p
= (struct ib_pma_portcounters_ext
*)
3130 struct _port_dctrs rsp
;
3132 if (pmp
->mad_hdr
.attr_mod
!= 0 || p
->port_select
!= port
) {
3133 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3137 memset(&rsp
, 0, sizeof(rsp
));
3138 pma_get_opa_port_dctrs(ibdev
, &rsp
);
3140 p
->port_xmit_data
= rsp
.port_xmit_data
;
3141 p
->port_rcv_data
= rsp
.port_rcv_data
;
3142 p
->port_xmit_packets
= rsp
.port_xmit_pkts
;
3143 p
->port_rcv_packets
= rsp
.port_rcv_pkts
;
3144 p
->port_unicast_xmit_packets
= 0;
3145 p
->port_unicast_rcv_packets
= 0;
3146 p
->port_multicast_xmit_packets
= rsp
.port_multicast_xmit_pkts
;
3147 p
->port_multicast_rcv_packets
= rsp
.port_multicast_rcv_pkts
;
3150 return reply((struct ib_mad_hdr
*)pmp
);
3153 static void pma_get_opa_port_ectrs(struct ib_device
*ibdev
,
3154 struct _port_ectrs
*rsp
, u8 port
)
3157 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
3158 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
3159 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
3161 tmp
= read_dev_cntr(dd
, C_DC_SEQ_CRC_CNT
, CNTR_INVALID_VL
);
3162 tmp2
= tmp
+ read_dev_cntr(dd
, C_DC_REINIT_FROM_PEER_CNT
,
3164 if (tmp2
> (u32
)UINT_MAX
|| tmp2
< tmp
) {
3165 /* overflow/wrapped */
3166 rsp
->link_error_recovery
= cpu_to_be32(~0);
3168 rsp
->link_error_recovery
= cpu_to_be32(tmp2
);
3171 rsp
->link_downed
= cpu_to_be32(read_port_cntr(ppd
, C_SW_LINK_DOWN
,
3173 rsp
->port_rcv_errors
=
3174 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_ERR
, CNTR_INVALID_VL
));
3175 rsp
->port_rcv_remote_physical_errors
=
3176 cpu_to_be64(read_dev_cntr(dd
, C_DC_RMT_PHY_ERR
,
3178 rsp
->port_rcv_switch_relay_errors
= 0;
3179 rsp
->port_xmit_discards
=
3180 cpu_to_be64(read_port_cntr(ppd
, C_SW_XMIT_DSCD
,
3182 rsp
->port_xmit_constraint_errors
=
3183 cpu_to_be64(read_port_cntr(ppd
, C_SW_XMIT_CSTR_ERR
,
3185 rsp
->port_rcv_constraint_errors
=
3186 cpu_to_be64(read_port_cntr(ppd
, C_SW_RCV_CSTR_ERR
,
3188 rsp
->local_link_integrity_errors
=
3189 cpu_to_be64(read_dev_cntr(dd
, C_DC_RX_REPLAY
,
3191 rsp
->excessive_buffer_overruns
=
3192 cpu_to_be64(read_dev_cntr(dd
, C_RCV_OVF
, CNTR_INVALID_VL
));
3195 static int pma_get_opa_porterrors(struct opa_pma_mad
*pmp
,
3196 struct ib_device
*ibdev
,
3197 u8 port
, u32
*resp_len
)
3199 size_t response_data_size
;
3200 struct _port_ectrs
*rsp
;
3202 struct opa_port_error_counters64_msg
*req
;
3203 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
3207 struct hfi1_ibport
*ibp
;
3208 struct hfi1_pportdata
*ppd
;
3209 struct _vls_ectrs
*vlinfo
;
3212 unsigned long vl_select_mask
;
3215 req
= (struct opa_port_error_counters64_msg
*)pmp
->data
;
3217 num_ports
= be32_to_cpu(pmp
->mad_hdr
.attr_mod
) >> 24;
3219 num_pslm
= hweight64(be64_to_cpu(req
->port_select_mask
[3]));
3220 num_vls
= hweight32(be32_to_cpu(req
->vl_select_mask
));
3222 if (num_ports
!= 1 || num_ports
!= num_pslm
) {
3223 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3224 return reply((struct ib_mad_hdr
*)pmp
);
3227 response_data_size
= struct_size(req
, port
[0].vls
, num_vls
);
3229 if (response_data_size
> sizeof(pmp
->data
)) {
3230 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3231 return reply((struct ib_mad_hdr
*)pmp
);
3234 * The bit set in the mask needs to be consistent with the
3235 * port the request came in on.
3237 port_mask
= be64_to_cpu(req
->port_select_mask
[3]);
3238 port_num
= find_first_bit((unsigned long *)&port_mask
,
3239 sizeof(port_mask
) * 8);
3241 if (port_num
!= port
) {
3242 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3243 return reply((struct ib_mad_hdr
*)pmp
);
3246 rsp
= &req
->port
[0];
3248 ibp
= to_iport(ibdev
, port_num
);
3249 ppd
= ppd_from_ibp(ibp
);
3251 memset(rsp
, 0, sizeof(*rsp
));
3252 rsp
->port_number
= port_num
;
3254 pma_get_opa_port_ectrs(ibdev
, rsp
, port_num
);
3256 rsp
->port_rcv_remote_physical_errors
=
3257 cpu_to_be64(read_dev_cntr(dd
, C_DC_RMT_PHY_ERR
,
3259 rsp
->fm_config_errors
=
3260 cpu_to_be64(read_dev_cntr(dd
, C_DC_FM_CFG_ERR
,
3262 tmp
= read_dev_cntr(dd
, C_DC_UNC_ERR
, CNTR_INVALID_VL
);
3264 rsp
->uncorrectable_errors
= tmp
< 0x100 ? (tmp
& 0xff) : 0xff;
3265 rsp
->port_rcv_errors
=
3266 cpu_to_be64(read_dev_cntr(dd
, C_DC_RCV_ERR
, CNTR_INVALID_VL
));
3267 vlinfo
= &rsp
->vls
[0];
3269 vl_select_mask
= be32_to_cpu(req
->vl_select_mask
);
3270 for_each_set_bit(vl
, &vl_select_mask
, BITS_PER_LONG
) {
3271 memset(vlinfo
, 0, sizeof(*vlinfo
));
3272 rsp
->vls
[vfi
].port_vl_xmit_discards
=
3273 cpu_to_be64(read_port_cntr(ppd
, C_SW_XMIT_DSCD_VL
,
3280 *resp_len
+= response_data_size
;
3282 return reply((struct ib_mad_hdr
*)pmp
);
3285 static int pma_get_ib_portcounters(struct ib_pma_mad
*pmp
,
3286 struct ib_device
*ibdev
, u8 port
)
3288 struct ib_pma_portcounters
*p
= (struct ib_pma_portcounters
*)
3290 struct _port_ectrs rsp
;
3291 u64 temp_link_overrun_errors
;
3295 memset(&rsp
, 0, sizeof(rsp
));
3296 pma_get_opa_port_ectrs(ibdev
, &rsp
, port
);
3298 if (pmp
->mad_hdr
.attr_mod
!= 0 || p
->port_select
!= port
) {
3299 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3303 p
->symbol_error_counter
= 0; /* N/A for OPA */
3305 temp_32
= be32_to_cpu(rsp
.link_error_recovery
);
3306 if (temp_32
> 0xFFUL
)
3307 p
->link_error_recovery_counter
= 0xFF;
3309 p
->link_error_recovery_counter
= (u8
)temp_32
;
3311 temp_32
= be32_to_cpu(rsp
.link_downed
);
3312 if (temp_32
> 0xFFUL
)
3313 p
->link_downed_counter
= 0xFF;
3315 p
->link_downed_counter
= (u8
)temp_32
;
3317 temp_64
= be64_to_cpu(rsp
.port_rcv_errors
);
3318 if (temp_64
> 0xFFFFUL
)
3319 p
->port_rcv_errors
= cpu_to_be16(0xFFFF);
3321 p
->port_rcv_errors
= cpu_to_be16((u16
)temp_64
);
3323 temp_64
= be64_to_cpu(rsp
.port_rcv_remote_physical_errors
);
3324 if (temp_64
> 0xFFFFUL
)
3325 p
->port_rcv_remphys_errors
= cpu_to_be16(0xFFFF);
3327 p
->port_rcv_remphys_errors
= cpu_to_be16((u16
)temp_64
);
3329 temp_64
= be64_to_cpu(rsp
.port_rcv_switch_relay_errors
);
3330 p
->port_rcv_switch_relay_errors
= cpu_to_be16((u16
)temp_64
);
3332 temp_64
= be64_to_cpu(rsp
.port_xmit_discards
);
3333 if (temp_64
> 0xFFFFUL
)
3334 p
->port_xmit_discards
= cpu_to_be16(0xFFFF);
3336 p
->port_xmit_discards
= cpu_to_be16((u16
)temp_64
);
3338 temp_64
= be64_to_cpu(rsp
.port_xmit_constraint_errors
);
3339 if (temp_64
> 0xFFUL
)
3340 p
->port_xmit_constraint_errors
= 0xFF;
3342 p
->port_xmit_constraint_errors
= (u8
)temp_64
;
3344 temp_64
= be64_to_cpu(rsp
.port_rcv_constraint_errors
);
3345 if (temp_64
> 0xFFUL
)
3346 p
->port_rcv_constraint_errors
= 0xFFUL
;
3348 p
->port_rcv_constraint_errors
= (u8
)temp_64
;
3350 /* LocalLink: 7:4, BufferOverrun: 3:0 */
3351 temp_64
= be64_to_cpu(rsp
.local_link_integrity_errors
);
3352 if (temp_64
> 0xFUL
)
3355 temp_link_overrun_errors
= temp_64
<< 4;
3357 temp_64
= be64_to_cpu(rsp
.excessive_buffer_overruns
);
3358 if (temp_64
> 0xFUL
)
3360 temp_link_overrun_errors
|= temp_64
;
3362 p
->link_overrun_errors
= (u8
)temp_link_overrun_errors
;
3364 p
->vl15_dropped
= 0; /* N/A for OPA */
3367 return reply((struct ib_mad_hdr
*)pmp
);
3370 static int pma_get_opa_errorinfo(struct opa_pma_mad
*pmp
,
3371 struct ib_device
*ibdev
,
3372 u8 port
, u32
*resp_len
)
3374 size_t response_data_size
;
3375 struct _port_ei
*rsp
;
3376 struct opa_port_error_info_msg
*req
;
3377 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
3384 req
= (struct opa_port_error_info_msg
*)pmp
->data
;
3385 rsp
= &req
->port
[0];
3387 num_ports
= OPA_AM_NPORT(be32_to_cpu(pmp
->mad_hdr
.attr_mod
));
3388 num_pslm
= hweight64(be64_to_cpu(req
->port_select_mask
[3]));
3390 memset(rsp
, 0, sizeof(*rsp
));
3392 if (num_ports
!= 1 || num_ports
!= num_pslm
) {
3393 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3394 return reply((struct ib_mad_hdr
*)pmp
);
3398 response_data_size
= sizeof(struct opa_port_error_info_msg
);
3400 if (response_data_size
> sizeof(pmp
->data
)) {
3401 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3402 return reply((struct ib_mad_hdr
*)pmp
);
3406 * The bit set in the mask needs to be consistent with the port
3407 * the request came in on.
3409 port_mask
= be64_to_cpu(req
->port_select_mask
[3]);
3410 port_num
= find_first_bit((unsigned long *)&port_mask
,
3411 sizeof(port_mask
) * 8);
3413 if (port_num
!= port
) {
3414 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3415 return reply((struct ib_mad_hdr
*)pmp
);
3417 rsp
->port_number
= port
;
3419 /* PortRcvErrorInfo */
3420 rsp
->port_rcv_ei
.status_and_code
=
3421 dd
->err_info_rcvport
.status_and_code
;
3422 memcpy(&rsp
->port_rcv_ei
.ei
.ei1to12
.packet_flit1
,
3423 &dd
->err_info_rcvport
.packet_flit1
, sizeof(u64
));
3424 memcpy(&rsp
->port_rcv_ei
.ei
.ei1to12
.packet_flit2
,
3425 &dd
->err_info_rcvport
.packet_flit2
, sizeof(u64
));
3427 /* ExcessiverBufferOverrunInfo */
3428 reg
= read_csr(dd
, RCV_ERR_INFO
);
3429 if (reg
& RCV_ERR_INFO_RCV_EXCESS_BUFFER_OVERRUN_SMASK
) {
3431 * if the RcvExcessBufferOverrun bit is set, save SC of
3432 * first pkt that encountered an excess buffer overrun
3436 tmp
&= RCV_ERR_INFO_RCV_EXCESS_BUFFER_OVERRUN_SC_SMASK
;
3438 rsp
->excessive_buffer_overrun_ei
.status_and_sc
= tmp
;
3439 /* set the status bit */
3440 rsp
->excessive_buffer_overrun_ei
.status_and_sc
|= 0x80;
3443 rsp
->port_xmit_constraint_ei
.status
=
3444 dd
->err_info_xmit_constraint
.status
;
3445 rsp
->port_xmit_constraint_ei
.pkey
=
3446 cpu_to_be16(dd
->err_info_xmit_constraint
.pkey
);
3447 rsp
->port_xmit_constraint_ei
.slid
=
3448 cpu_to_be32(dd
->err_info_xmit_constraint
.slid
);
3450 rsp
->port_rcv_constraint_ei
.status
=
3451 dd
->err_info_rcv_constraint
.status
;
3452 rsp
->port_rcv_constraint_ei
.pkey
=
3453 cpu_to_be16(dd
->err_info_rcv_constraint
.pkey
);
3454 rsp
->port_rcv_constraint_ei
.slid
=
3455 cpu_to_be32(dd
->err_info_rcv_constraint
.slid
);
3457 /* UncorrectableErrorInfo */
3458 rsp
->uncorrectable_ei
.status_and_code
= dd
->err_info_uncorrectable
;
3460 /* FMConfigErrorInfo */
3461 rsp
->fm_config_ei
.status_and_code
= dd
->err_info_fmconfig
;
3464 *resp_len
+= response_data_size
;
3466 return reply((struct ib_mad_hdr
*)pmp
);
3469 static int pma_set_opa_portstatus(struct opa_pma_mad
*pmp
,
3470 struct ib_device
*ibdev
,
3471 u8 port
, u32
*resp_len
)
3473 struct opa_clear_port_status
*req
=
3474 (struct opa_clear_port_status
*)pmp
->data
;
3475 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
3476 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
3477 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
3478 u32 nports
= be32_to_cpu(pmp
->mad_hdr
.attr_mod
) >> 24;
3479 u64 portn
= be64_to_cpu(req
->port_select_mask
[3]);
3480 u32 counter_select
= be32_to_cpu(req
->counter_select_mask
);
3481 unsigned long vl_select_mask
= VL_MASK_ALL
; /* clear all per-vl cnts */
3484 if ((nports
!= 1) || (portn
!= 1 << port
)) {
3485 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3486 return reply((struct ib_mad_hdr
*)pmp
);
3489 * only counters returned by pma_get_opa_portstatus() are
3490 * handled, so when pma_get_opa_portstatus() gets a fix,
3491 * the corresponding change should be made here as well.
3494 if (counter_select
& CS_PORT_XMIT_DATA
)
3495 write_dev_cntr(dd
, C_DC_XMIT_FLITS
, CNTR_INVALID_VL
, 0);
3497 if (counter_select
& CS_PORT_RCV_DATA
)
3498 write_dev_cntr(dd
, C_DC_RCV_FLITS
, CNTR_INVALID_VL
, 0);
3500 if (counter_select
& CS_PORT_XMIT_PKTS
)
3501 write_dev_cntr(dd
, C_DC_XMIT_PKTS
, CNTR_INVALID_VL
, 0);
3503 if (counter_select
& CS_PORT_RCV_PKTS
)
3504 write_dev_cntr(dd
, C_DC_RCV_PKTS
, CNTR_INVALID_VL
, 0);
3506 if (counter_select
& CS_PORT_MCAST_XMIT_PKTS
)
3507 write_dev_cntr(dd
, C_DC_MC_XMIT_PKTS
, CNTR_INVALID_VL
, 0);
3509 if (counter_select
& CS_PORT_MCAST_RCV_PKTS
)
3510 write_dev_cntr(dd
, C_DC_MC_RCV_PKTS
, CNTR_INVALID_VL
, 0);
3512 if (counter_select
& CS_PORT_XMIT_WAIT
) {
3513 write_port_cntr(ppd
, C_TX_WAIT
, CNTR_INVALID_VL
, 0);
3514 ppd
->port_vl_xmit_wait_last
[C_VL_COUNT
] = 0;
3515 ppd
->vl_xmit_flit_cnt
[C_VL_COUNT
] = 0;
3517 /* ignore cs_sw_portCongestion for HFIs */
3519 if (counter_select
& CS_PORT_RCV_FECN
)
3520 write_dev_cntr(dd
, C_DC_RCV_FCN
, CNTR_INVALID_VL
, 0);
3522 if (counter_select
& CS_PORT_RCV_BECN
)
3523 write_dev_cntr(dd
, C_DC_RCV_BCN
, CNTR_INVALID_VL
, 0);
3525 /* ignore cs_port_xmit_time_cong for HFIs */
3526 /* ignore cs_port_xmit_wasted_bw for now */
3527 /* ignore cs_port_xmit_wait_data for now */
3528 if (counter_select
& CS_PORT_RCV_BUBBLE
)
3529 write_dev_cntr(dd
, C_DC_RCV_BBL
, CNTR_INVALID_VL
, 0);
3531 /* Only applicable for switch */
3532 /* if (counter_select & CS_PORT_MARK_FECN)
3533 * write_csr(dd, DCC_PRF_PORT_MARK_FECN_CNT, 0);
3536 if (counter_select
& CS_PORT_RCV_CONSTRAINT_ERRORS
)
3537 write_port_cntr(ppd
, C_SW_RCV_CSTR_ERR
, CNTR_INVALID_VL
, 0);
3539 /* ignore cs_port_rcv_switch_relay_errors for HFIs */
3540 if (counter_select
& CS_PORT_XMIT_DISCARDS
)
3541 write_port_cntr(ppd
, C_SW_XMIT_DSCD
, CNTR_INVALID_VL
, 0);
3543 if (counter_select
& CS_PORT_XMIT_CONSTRAINT_ERRORS
)
3544 write_port_cntr(ppd
, C_SW_XMIT_CSTR_ERR
, CNTR_INVALID_VL
, 0);
3546 if (counter_select
& CS_PORT_RCV_REMOTE_PHYSICAL_ERRORS
)
3547 write_dev_cntr(dd
, C_DC_RMT_PHY_ERR
, CNTR_INVALID_VL
, 0);
3549 if (counter_select
& CS_LOCAL_LINK_INTEGRITY_ERRORS
)
3550 write_dev_cntr(dd
, C_DC_RX_REPLAY
, CNTR_INVALID_VL
, 0);
3552 if (counter_select
& CS_LINK_ERROR_RECOVERY
) {
3553 write_dev_cntr(dd
, C_DC_SEQ_CRC_CNT
, CNTR_INVALID_VL
, 0);
3554 write_dev_cntr(dd
, C_DC_REINIT_FROM_PEER_CNT
,
3555 CNTR_INVALID_VL
, 0);
3558 if (counter_select
& CS_PORT_RCV_ERRORS
)
3559 write_dev_cntr(dd
, C_DC_RCV_ERR
, CNTR_INVALID_VL
, 0);
3561 if (counter_select
& CS_EXCESSIVE_BUFFER_OVERRUNS
) {
3562 write_dev_cntr(dd
, C_RCV_OVF
, CNTR_INVALID_VL
, 0);
3563 dd
->rcv_ovfl_cnt
= 0;
3566 if (counter_select
& CS_FM_CONFIG_ERRORS
)
3567 write_dev_cntr(dd
, C_DC_FM_CFG_ERR
, CNTR_INVALID_VL
, 0);
3569 if (counter_select
& CS_LINK_DOWNED
)
3570 write_port_cntr(ppd
, C_SW_LINK_DOWN
, CNTR_INVALID_VL
, 0);
3572 if (counter_select
& CS_UNCORRECTABLE_ERRORS
)
3573 write_dev_cntr(dd
, C_DC_UNC_ERR
, CNTR_INVALID_VL
, 0);
3575 for_each_set_bit(vl
, &vl_select_mask
, BITS_PER_LONG
) {
3576 if (counter_select
& CS_PORT_XMIT_DATA
)
3577 write_port_cntr(ppd
, C_TX_FLIT_VL
, idx_from_vl(vl
), 0);
3579 if (counter_select
& CS_PORT_RCV_DATA
)
3580 write_dev_cntr(dd
, C_DC_RX_FLIT_VL
, idx_from_vl(vl
), 0);
3582 if (counter_select
& CS_PORT_XMIT_PKTS
)
3583 write_port_cntr(ppd
, C_TX_PKT_VL
, idx_from_vl(vl
), 0);
3585 if (counter_select
& CS_PORT_RCV_PKTS
)
3586 write_dev_cntr(dd
, C_DC_RX_PKT_VL
, idx_from_vl(vl
), 0);
3588 if (counter_select
& CS_PORT_XMIT_WAIT
) {
3589 write_port_cntr(ppd
, C_TX_WAIT_VL
, idx_from_vl(vl
), 0);
3590 ppd
->port_vl_xmit_wait_last
[idx_from_vl(vl
)] = 0;
3591 ppd
->vl_xmit_flit_cnt
[idx_from_vl(vl
)] = 0;
3594 /* sw_port_vl_congestion is 0 for HFIs */
3595 if (counter_select
& CS_PORT_RCV_FECN
)
3596 write_dev_cntr(dd
, C_DC_RCV_FCN_VL
, idx_from_vl(vl
), 0);
3598 if (counter_select
& CS_PORT_RCV_BECN
)
3599 write_dev_cntr(dd
, C_DC_RCV_BCN_VL
, idx_from_vl(vl
), 0);
3601 /* port_vl_xmit_time_cong is 0 for HFIs */
3602 /* port_vl_xmit_wasted_bw ??? */
3603 /* port_vl_xmit_wait_data - TXE (table 13-9 HFI spec) ??? */
3604 if (counter_select
& CS_PORT_RCV_BUBBLE
)
3605 write_dev_cntr(dd
, C_DC_RCV_BBL_VL
, idx_from_vl(vl
), 0);
3607 /* if (counter_select & CS_PORT_MARK_FECN)
3608 * write_csr(dd, DCC_PRF_PORT_VL_MARK_FECN_CNT + offset, 0);
3610 if (counter_select
& C_SW_XMIT_DSCD_VL
)
3611 write_port_cntr(ppd
, C_SW_XMIT_DSCD_VL
,
3612 idx_from_vl(vl
), 0);
3616 *resp_len
+= sizeof(*req
);
3618 return reply((struct ib_mad_hdr
*)pmp
);
3621 static int pma_set_opa_errorinfo(struct opa_pma_mad
*pmp
,
3622 struct ib_device
*ibdev
,
3623 u8 port
, u32
*resp_len
)
3625 struct _port_ei
*rsp
;
3626 struct opa_port_error_info_msg
*req
;
3627 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
3632 u32 error_info_select
;
3634 req
= (struct opa_port_error_info_msg
*)pmp
->data
;
3635 rsp
= &req
->port
[0];
3637 num_ports
= OPA_AM_NPORT(be32_to_cpu(pmp
->mad_hdr
.attr_mod
));
3638 num_pslm
= hweight64(be64_to_cpu(req
->port_select_mask
[3]));
3640 memset(rsp
, 0, sizeof(*rsp
));
3642 if (num_ports
!= 1 || num_ports
!= num_pslm
) {
3643 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3644 return reply((struct ib_mad_hdr
*)pmp
);
3648 * The bit set in the mask needs to be consistent with the port
3649 * the request came in on.
3651 port_mask
= be64_to_cpu(req
->port_select_mask
[3]);
3652 port_num
= find_first_bit((unsigned long *)&port_mask
,
3653 sizeof(port_mask
) * 8);
3655 if (port_num
!= port
) {
3656 pmp
->mad_hdr
.status
|= IB_SMP_INVALID_FIELD
;
3657 return reply((struct ib_mad_hdr
*)pmp
);
3660 error_info_select
= be32_to_cpu(req
->error_info_select_mask
);
3662 /* PortRcvErrorInfo */
3663 if (error_info_select
& ES_PORT_RCV_ERROR_INFO
)
3664 /* turn off status bit */
3665 dd
->err_info_rcvport
.status_and_code
&= ~OPA_EI_STATUS_SMASK
;
3667 /* ExcessiverBufferOverrunInfo */
3668 if (error_info_select
& ES_EXCESSIVE_BUFFER_OVERRUN_INFO
)
3670 * status bit is essentially kept in the h/w - bit 5 of
3673 write_csr(dd
, RCV_ERR_INFO
,
3674 RCV_ERR_INFO_RCV_EXCESS_BUFFER_OVERRUN_SMASK
);
3676 if (error_info_select
& ES_PORT_XMIT_CONSTRAINT_ERROR_INFO
)
3677 dd
->err_info_xmit_constraint
.status
&= ~OPA_EI_STATUS_SMASK
;
3679 if (error_info_select
& ES_PORT_RCV_CONSTRAINT_ERROR_INFO
)
3680 dd
->err_info_rcv_constraint
.status
&= ~OPA_EI_STATUS_SMASK
;
3682 /* UncorrectableErrorInfo */
3683 if (error_info_select
& ES_UNCORRECTABLE_ERROR_INFO
)
3684 /* turn off status bit */
3685 dd
->err_info_uncorrectable
&= ~OPA_EI_STATUS_SMASK
;
3687 /* FMConfigErrorInfo */
3688 if (error_info_select
& ES_FM_CONFIG_ERROR_INFO
)
3689 /* turn off status bit */
3690 dd
->err_info_fmconfig
&= ~OPA_EI_STATUS_SMASK
;
3693 *resp_len
+= sizeof(*req
);
3695 return reply((struct ib_mad_hdr
*)pmp
);
3698 struct opa_congestion_info_attr
{
3699 __be16 congestion_info
;
3700 u8 control_table_cap
; /* Multiple of 64 entry unit CCTs */
3701 u8 congestion_log_length
;
3704 static int __subn_get_opa_cong_info(struct opa_smp
*smp
, u32 am
, u8
*data
,
3705 struct ib_device
*ibdev
, u8 port
,
3706 u32
*resp_len
, u32 max_len
)
3708 struct opa_congestion_info_attr
*p
=
3709 (struct opa_congestion_info_attr
*)data
;
3710 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
3711 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
3713 if (smp_length_check(sizeof(*p
), max_len
)) {
3714 smp
->status
|= IB_SMP_INVALID_FIELD
;
3715 return reply((struct ib_mad_hdr
*)smp
);
3718 p
->congestion_info
= 0;
3719 p
->control_table_cap
= ppd
->cc_max_table_entries
;
3720 p
->congestion_log_length
= OPA_CONG_LOG_ELEMS
;
3723 *resp_len
+= sizeof(*p
);
3725 return reply((struct ib_mad_hdr
*)smp
);
3728 static int __subn_get_opa_cong_setting(struct opa_smp
*smp
, u32 am
,
3729 u8
*data
, struct ib_device
*ibdev
,
3730 u8 port
, u32
*resp_len
, u32 max_len
)
3733 struct opa_congestion_setting_attr
*p
=
3734 (struct opa_congestion_setting_attr
*)data
;
3735 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
3736 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
3737 struct opa_congestion_setting_entry_shadow
*entries
;
3738 struct cc_state
*cc_state
;
3740 if (smp_length_check(sizeof(*p
), max_len
)) {
3741 smp
->status
|= IB_SMP_INVALID_FIELD
;
3742 return reply((struct ib_mad_hdr
*)smp
);
3747 cc_state
= get_cc_state(ppd
);
3751 return reply((struct ib_mad_hdr
*)smp
);
3754 entries
= cc_state
->cong_setting
.entries
;
3755 p
->port_control
= cpu_to_be16(cc_state
->cong_setting
.port_control
);
3756 p
->control_map
= cpu_to_be32(cc_state
->cong_setting
.control_map
);
3757 for (i
= 0; i
< OPA_MAX_SLS
; i
++) {
3758 p
->entries
[i
].ccti_increase
= entries
[i
].ccti_increase
;
3759 p
->entries
[i
].ccti_timer
= cpu_to_be16(entries
[i
].ccti_timer
);
3760 p
->entries
[i
].trigger_threshold
=
3761 entries
[i
].trigger_threshold
;
3762 p
->entries
[i
].ccti_min
= entries
[i
].ccti_min
;
3768 *resp_len
+= sizeof(*p
);
3770 return reply((struct ib_mad_hdr
*)smp
);
3774 * Apply congestion control information stored in the ppd to the
3777 static void apply_cc_state(struct hfi1_pportdata
*ppd
)
3779 struct cc_state
*old_cc_state
, *new_cc_state
;
3781 new_cc_state
= kzalloc(sizeof(*new_cc_state
), GFP_KERNEL
);
3786 * Hold the lock for updating *and* to prevent ppd information
3787 * from changing during the update.
3789 spin_lock(&ppd
->cc_state_lock
);
3791 old_cc_state
= get_cc_state_protected(ppd
);
3792 if (!old_cc_state
) {
3793 /* never active, or shutting down */
3794 spin_unlock(&ppd
->cc_state_lock
);
3795 kfree(new_cc_state
);
3799 *new_cc_state
= *old_cc_state
;
3801 if (ppd
->total_cct_entry
)
3802 new_cc_state
->cct
.ccti_limit
= ppd
->total_cct_entry
- 1;
3804 new_cc_state
->cct
.ccti_limit
= 0;
3806 memcpy(new_cc_state
->cct
.entries
, ppd
->ccti_entries
,
3807 ppd
->total_cct_entry
* sizeof(struct ib_cc_table_entry
));
3809 new_cc_state
->cong_setting
.port_control
= IB_CC_CCS_PC_SL_BASED
;
3810 new_cc_state
->cong_setting
.control_map
= ppd
->cc_sl_control_map
;
3811 memcpy(new_cc_state
->cong_setting
.entries
, ppd
->congestion_entries
,
3812 OPA_MAX_SLS
* sizeof(struct opa_congestion_setting_entry
));
3814 rcu_assign_pointer(ppd
->cc_state
, new_cc_state
);
3816 spin_unlock(&ppd
->cc_state_lock
);
3818 kfree_rcu(old_cc_state
, rcu
);
3821 static int __subn_set_opa_cong_setting(struct opa_smp
*smp
, u32 am
, u8
*data
,
3822 struct ib_device
*ibdev
, u8 port
,
3823 u32
*resp_len
, u32 max_len
)
3825 struct opa_congestion_setting_attr
*p
=
3826 (struct opa_congestion_setting_attr
*)data
;
3827 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
3828 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
3829 struct opa_congestion_setting_entry_shadow
*entries
;
3832 if (smp_length_check(sizeof(*p
), max_len
)) {
3833 smp
->status
|= IB_SMP_INVALID_FIELD
;
3834 return reply((struct ib_mad_hdr
*)smp
);
3838 * Save details from packet into the ppd. Hold the cc_state_lock so
3839 * our information is consistent with anyone trying to apply the state.
3841 spin_lock(&ppd
->cc_state_lock
);
3842 ppd
->cc_sl_control_map
= be32_to_cpu(p
->control_map
);
3844 entries
= ppd
->congestion_entries
;
3845 for (i
= 0; i
< OPA_MAX_SLS
; i
++) {
3846 entries
[i
].ccti_increase
= p
->entries
[i
].ccti_increase
;
3847 entries
[i
].ccti_timer
= be16_to_cpu(p
->entries
[i
].ccti_timer
);
3848 entries
[i
].trigger_threshold
=
3849 p
->entries
[i
].trigger_threshold
;
3850 entries
[i
].ccti_min
= p
->entries
[i
].ccti_min
;
3852 spin_unlock(&ppd
->cc_state_lock
);
3854 /* now apply the information */
3855 apply_cc_state(ppd
);
3857 return __subn_get_opa_cong_setting(smp
, am
, data
, ibdev
, port
,
3861 static int __subn_get_opa_hfi1_cong_log(struct opa_smp
*smp
, u32 am
,
3862 u8
*data
, struct ib_device
*ibdev
,
3863 u8 port
, u32
*resp_len
, u32 max_len
)
3865 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
3866 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
3867 struct opa_hfi1_cong_log
*cong_log
= (struct opa_hfi1_cong_log
*)data
;
3871 if (am
|| smp_length_check(sizeof(*cong_log
), max_len
)) {
3872 smp
->status
|= IB_SMP_INVALID_FIELD
;
3873 return reply((struct ib_mad_hdr
*)smp
);
3876 spin_lock_irq(&ppd
->cc_log_lock
);
3878 cong_log
->log_type
= OPA_CC_LOG_TYPE_HFI
;
3879 cong_log
->congestion_flags
= 0;
3880 cong_log
->threshold_event_counter
=
3881 cpu_to_be16(ppd
->threshold_event_counter
);
3882 memcpy(cong_log
->threshold_cong_event_map
,
3883 ppd
->threshold_cong_event_map
,
3884 sizeof(cong_log
->threshold_cong_event_map
));
3885 /* keep timestamp in units of 1.024 usec */
3886 ts
= ktime_get_ns() / 1024;
3887 cong_log
->current_time_stamp
= cpu_to_be32(ts
);
3888 for (i
= 0; i
< OPA_CONG_LOG_ELEMS
; i
++) {
3889 struct opa_hfi1_cong_log_event_internal
*cce
=
3890 &ppd
->cc_events
[ppd
->cc_mad_idx
++];
3891 if (ppd
->cc_mad_idx
== OPA_CONG_LOG_ELEMS
)
3892 ppd
->cc_mad_idx
= 0;
3894 * Entries which are older than twice the time
3895 * required to wrap the counter are supposed to
3896 * be zeroed (CA10-49 IBTA, release 1.2.1, V1).
3898 if ((ts
- cce
->timestamp
) / 2 > U32_MAX
)
3900 memcpy(cong_log
->events
[i
].local_qp_cn_entry
, &cce
->lqpn
, 3);
3901 memcpy(cong_log
->events
[i
].remote_qp_number_cn_entry
,
3903 cong_log
->events
[i
].sl_svc_type_cn_entry
=
3904 ((cce
->sl
& 0x1f) << 3) | (cce
->svc_type
& 0x7);
3905 cong_log
->events
[i
].remote_lid_cn_entry
=
3906 cpu_to_be32(cce
->rlid
);
3907 cong_log
->events
[i
].timestamp_cn_entry
=
3908 cpu_to_be32(cce
->timestamp
);
3912 * Reset threshold_cong_event_map, and threshold_event_counter
3913 * to 0 when log is read.
3915 memset(ppd
->threshold_cong_event_map
, 0x0,
3916 sizeof(ppd
->threshold_cong_event_map
));
3917 ppd
->threshold_event_counter
= 0;
3919 spin_unlock_irq(&ppd
->cc_log_lock
);
3922 *resp_len
+= sizeof(struct opa_hfi1_cong_log
);
3924 return reply((struct ib_mad_hdr
*)smp
);
3927 static int __subn_get_opa_cc_table(struct opa_smp
*smp
, u32 am
, u8
*data
,
3928 struct ib_device
*ibdev
, u8 port
,
3929 u32
*resp_len
, u32 max_len
)
3931 struct ib_cc_table_attr
*cc_table_attr
=
3932 (struct ib_cc_table_attr
*)data
;
3933 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
3934 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
3935 u32 start_block
= OPA_AM_START_BLK(am
);
3936 u32 n_blocks
= OPA_AM_NBLK(am
);
3937 struct ib_cc_table_entry_shadow
*entries
;
3940 struct cc_state
*cc_state
;
3941 u32 size
= sizeof(u16
) * (IB_CCT_ENTRIES
* n_blocks
+ 1);
3943 /* sanity check n_blocks, start_block */
3944 if (n_blocks
== 0 || smp_length_check(size
, max_len
) ||
3945 start_block
+ n_blocks
> ppd
->cc_max_table_entries
) {
3946 smp
->status
|= IB_SMP_INVALID_FIELD
;
3947 return reply((struct ib_mad_hdr
*)smp
);
3952 cc_state
= get_cc_state(ppd
);
3956 return reply((struct ib_mad_hdr
*)smp
);
3959 sentry
= start_block
* IB_CCT_ENTRIES
;
3960 eentry
= sentry
+ (IB_CCT_ENTRIES
* n_blocks
);
3962 cc_table_attr
->ccti_limit
= cpu_to_be16(cc_state
->cct
.ccti_limit
);
3964 entries
= cc_state
->cct
.entries
;
3966 /* return n_blocks, though the last block may not be full */
3967 for (j
= 0, i
= sentry
; i
< eentry
; j
++, i
++)
3968 cc_table_attr
->ccti_entries
[j
].entry
=
3969 cpu_to_be16(entries
[i
].entry
);
3976 return reply((struct ib_mad_hdr
*)smp
);
3979 static int __subn_set_opa_cc_table(struct opa_smp
*smp
, u32 am
, u8
*data
,
3980 struct ib_device
*ibdev
, u8 port
,
3981 u32
*resp_len
, u32 max_len
)
3983 struct ib_cc_table_attr
*p
= (struct ib_cc_table_attr
*)data
;
3984 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
3985 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
3986 u32 start_block
= OPA_AM_START_BLK(am
);
3987 u32 n_blocks
= OPA_AM_NBLK(am
);
3988 struct ib_cc_table_entry_shadow
*entries
;
3992 u32 size
= sizeof(u16
) * (IB_CCT_ENTRIES
* n_blocks
+ 1);
3994 /* sanity check n_blocks, start_block */
3995 if (n_blocks
== 0 || smp_length_check(size
, max_len
) ||
3996 start_block
+ n_blocks
> ppd
->cc_max_table_entries
) {
3997 smp
->status
|= IB_SMP_INVALID_FIELD
;
3998 return reply((struct ib_mad_hdr
*)smp
);
4001 sentry
= start_block
* IB_CCT_ENTRIES
;
4002 eentry
= sentry
+ ((n_blocks
- 1) * IB_CCT_ENTRIES
) +
4003 (be16_to_cpu(p
->ccti_limit
)) % IB_CCT_ENTRIES
+ 1;
4005 /* sanity check ccti_limit */
4006 ccti_limit
= be16_to_cpu(p
->ccti_limit
);
4007 if (ccti_limit
+ 1 > eentry
) {
4008 smp
->status
|= IB_SMP_INVALID_FIELD
;
4009 return reply((struct ib_mad_hdr
*)smp
);
4013 * Save details from packet into the ppd. Hold the cc_state_lock so
4014 * our information is consistent with anyone trying to apply the state.
4016 spin_lock(&ppd
->cc_state_lock
);
4017 ppd
->total_cct_entry
= ccti_limit
+ 1;
4018 entries
= ppd
->ccti_entries
;
4019 for (j
= 0, i
= sentry
; i
< eentry
; j
++, i
++)
4020 entries
[i
].entry
= be16_to_cpu(p
->ccti_entries
[j
].entry
);
4021 spin_unlock(&ppd
->cc_state_lock
);
4023 /* now apply the information */
4024 apply_cc_state(ppd
);
4026 return __subn_get_opa_cc_table(smp
, am
, data
, ibdev
, port
, resp_len
,
4030 struct opa_led_info
{
4031 __be32 rsvd_led_mask
;
4035 #define OPA_LED_SHIFT 31
4036 #define OPA_LED_MASK BIT(OPA_LED_SHIFT)
4038 static int __subn_get_opa_led_info(struct opa_smp
*smp
, u32 am
, u8
*data
,
4039 struct ib_device
*ibdev
, u8 port
,
4040 u32
*resp_len
, u32 max_len
)
4042 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
4043 struct hfi1_pportdata
*ppd
= dd
->pport
;
4044 struct opa_led_info
*p
= (struct opa_led_info
*)data
;
4045 u32 nport
= OPA_AM_NPORT(am
);
4046 u32 is_beaconing_active
;
4048 if (nport
!= 1 || smp_length_check(sizeof(*p
), max_len
)) {
4049 smp
->status
|= IB_SMP_INVALID_FIELD
;
4050 return reply((struct ib_mad_hdr
*)smp
);
4054 * This pairs with the memory barrier in hfi1_start_led_override to
4055 * ensure that we read the correct state of LED beaconing represented
4056 * by led_override_timer_active
4059 is_beaconing_active
= !!atomic_read(&ppd
->led_override_timer_active
);
4060 p
->rsvd_led_mask
= cpu_to_be32(is_beaconing_active
<< OPA_LED_SHIFT
);
4063 *resp_len
+= sizeof(struct opa_led_info
);
4065 return reply((struct ib_mad_hdr
*)smp
);
4068 static int __subn_set_opa_led_info(struct opa_smp
*smp
, u32 am
, u8
*data
,
4069 struct ib_device
*ibdev
, u8 port
,
4070 u32
*resp_len
, u32 max_len
)
4072 struct hfi1_devdata
*dd
= dd_from_ibdev(ibdev
);
4073 struct opa_led_info
*p
= (struct opa_led_info
*)data
;
4074 u32 nport
= OPA_AM_NPORT(am
);
4075 int on
= !!(be32_to_cpu(p
->rsvd_led_mask
) & OPA_LED_MASK
);
4077 if (nport
!= 1 || smp_length_check(sizeof(*p
), max_len
)) {
4078 smp
->status
|= IB_SMP_INVALID_FIELD
;
4079 return reply((struct ib_mad_hdr
*)smp
);
4083 hfi1_start_led_override(dd
->pport
, 2000, 1500);
4085 shutdown_led_override(dd
->pport
);
4087 return __subn_get_opa_led_info(smp
, am
, data
, ibdev
, port
, resp_len
,
4091 static int subn_get_opa_sma(__be16 attr_id
, struct opa_smp
*smp
, u32 am
,
4092 u8
*data
, struct ib_device
*ibdev
, u8 port
,
4093 u32
*resp_len
, u32 max_len
)
4096 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
4099 case IB_SMP_ATTR_NODE_DESC
:
4100 ret
= __subn_get_opa_nodedesc(smp
, am
, data
, ibdev
, port
,
4103 case IB_SMP_ATTR_NODE_INFO
:
4104 ret
= __subn_get_opa_nodeinfo(smp
, am
, data
, ibdev
, port
,
4107 case IB_SMP_ATTR_PORT_INFO
:
4108 ret
= __subn_get_opa_portinfo(smp
, am
, data
, ibdev
, port
,
4111 case IB_SMP_ATTR_PKEY_TABLE
:
4112 ret
= __subn_get_opa_pkeytable(smp
, am
, data
, ibdev
, port
,
4115 case OPA_ATTRIB_ID_SL_TO_SC_MAP
:
4116 ret
= __subn_get_opa_sl_to_sc(smp
, am
, data
, ibdev
, port
,
4119 case OPA_ATTRIB_ID_SC_TO_SL_MAP
:
4120 ret
= __subn_get_opa_sc_to_sl(smp
, am
, data
, ibdev
, port
,
4123 case OPA_ATTRIB_ID_SC_TO_VLT_MAP
:
4124 ret
= __subn_get_opa_sc_to_vlt(smp
, am
, data
, ibdev
, port
,
4127 case OPA_ATTRIB_ID_SC_TO_VLNT_MAP
:
4128 ret
= __subn_get_opa_sc_to_vlnt(smp
, am
, data
, ibdev
, port
,
4131 case OPA_ATTRIB_ID_PORT_STATE_INFO
:
4132 ret
= __subn_get_opa_psi(smp
, am
, data
, ibdev
, port
,
4135 case OPA_ATTRIB_ID_BUFFER_CONTROL_TABLE
:
4136 ret
= __subn_get_opa_bct(smp
, am
, data
, ibdev
, port
,
4139 case OPA_ATTRIB_ID_CABLE_INFO
:
4140 ret
= __subn_get_opa_cable_info(smp
, am
, data
, ibdev
, port
,
4143 case IB_SMP_ATTR_VL_ARB_TABLE
:
4144 ret
= __subn_get_opa_vl_arb(smp
, am
, data
, ibdev
, port
,
4147 case OPA_ATTRIB_ID_CONGESTION_INFO
:
4148 ret
= __subn_get_opa_cong_info(smp
, am
, data
, ibdev
, port
,
4151 case OPA_ATTRIB_ID_HFI_CONGESTION_SETTING
:
4152 ret
= __subn_get_opa_cong_setting(smp
, am
, data
, ibdev
,
4153 port
, resp_len
, max_len
);
4155 case OPA_ATTRIB_ID_HFI_CONGESTION_LOG
:
4156 ret
= __subn_get_opa_hfi1_cong_log(smp
, am
, data
, ibdev
,
4157 port
, resp_len
, max_len
);
4159 case OPA_ATTRIB_ID_CONGESTION_CONTROL_TABLE
:
4160 ret
= __subn_get_opa_cc_table(smp
, am
, data
, ibdev
, port
,
4163 case IB_SMP_ATTR_LED_INFO
:
4164 ret
= __subn_get_opa_led_info(smp
, am
, data
, ibdev
, port
,
4167 case IB_SMP_ATTR_SM_INFO
:
4168 if (ibp
->rvp
.port_cap_flags
& IB_PORT_SM_DISABLED
)
4169 return IB_MAD_RESULT_SUCCESS
| IB_MAD_RESULT_CONSUMED
;
4170 if (ibp
->rvp
.port_cap_flags
& IB_PORT_SM
)
4171 return IB_MAD_RESULT_SUCCESS
;
4174 smp
->status
|= IB_SMP_UNSUP_METH_ATTR
;
4175 ret
= reply((struct ib_mad_hdr
*)smp
);
4181 static int subn_set_opa_sma(__be16 attr_id
, struct opa_smp
*smp
, u32 am
,
4182 u8
*data
, struct ib_device
*ibdev
, u8 port
,
4183 u32
*resp_len
, u32 max_len
, int local_mad
)
4186 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
4189 case IB_SMP_ATTR_PORT_INFO
:
4190 ret
= __subn_set_opa_portinfo(smp
, am
, data
, ibdev
, port
,
4191 resp_len
, max_len
, local_mad
);
4193 case IB_SMP_ATTR_PKEY_TABLE
:
4194 ret
= __subn_set_opa_pkeytable(smp
, am
, data
, ibdev
, port
,
4197 case OPA_ATTRIB_ID_SL_TO_SC_MAP
:
4198 ret
= __subn_set_opa_sl_to_sc(smp
, am
, data
, ibdev
, port
,
4201 case OPA_ATTRIB_ID_SC_TO_SL_MAP
:
4202 ret
= __subn_set_opa_sc_to_sl(smp
, am
, data
, ibdev
, port
,
4205 case OPA_ATTRIB_ID_SC_TO_VLT_MAP
:
4206 ret
= __subn_set_opa_sc_to_vlt(smp
, am
, data
, ibdev
, port
,
4209 case OPA_ATTRIB_ID_SC_TO_VLNT_MAP
:
4210 ret
= __subn_set_opa_sc_to_vlnt(smp
, am
, data
, ibdev
, port
,
4213 case OPA_ATTRIB_ID_PORT_STATE_INFO
:
4214 ret
= __subn_set_opa_psi(smp
, am
, data
, ibdev
, port
,
4215 resp_len
, max_len
, local_mad
);
4217 case OPA_ATTRIB_ID_BUFFER_CONTROL_TABLE
:
4218 ret
= __subn_set_opa_bct(smp
, am
, data
, ibdev
, port
,
4221 case IB_SMP_ATTR_VL_ARB_TABLE
:
4222 ret
= __subn_set_opa_vl_arb(smp
, am
, data
, ibdev
, port
,
4225 case OPA_ATTRIB_ID_HFI_CONGESTION_SETTING
:
4226 ret
= __subn_set_opa_cong_setting(smp
, am
, data
, ibdev
,
4227 port
, resp_len
, max_len
);
4229 case OPA_ATTRIB_ID_CONGESTION_CONTROL_TABLE
:
4230 ret
= __subn_set_opa_cc_table(smp
, am
, data
, ibdev
, port
,
4233 case IB_SMP_ATTR_LED_INFO
:
4234 ret
= __subn_set_opa_led_info(smp
, am
, data
, ibdev
, port
,
4237 case IB_SMP_ATTR_SM_INFO
:
4238 if (ibp
->rvp
.port_cap_flags
& IB_PORT_SM_DISABLED
)
4239 return IB_MAD_RESULT_SUCCESS
| IB_MAD_RESULT_CONSUMED
;
4240 if (ibp
->rvp
.port_cap_flags
& IB_PORT_SM
)
4241 return IB_MAD_RESULT_SUCCESS
;
4244 smp
->status
|= IB_SMP_UNSUP_METH_ATTR
;
4245 ret
= reply((struct ib_mad_hdr
*)smp
);
4251 static inline void set_aggr_error(struct opa_aggregate
*ag
)
4253 ag
->err_reqlength
|= cpu_to_be16(0x8000);
4256 static int subn_get_opa_aggregate(struct opa_smp
*smp
,
4257 struct ib_device
*ibdev
, u8 port
,
4261 u32 num_attr
= be32_to_cpu(smp
->attr_mod
) & 0x000000ff;
4262 u8
*next_smp
= opa_get_smp_data(smp
);
4264 if (num_attr
< 1 || num_attr
> 117) {
4265 smp
->status
|= IB_SMP_INVALID_FIELD
;
4266 return reply((struct ib_mad_hdr
*)smp
);
4269 for (i
= 0; i
< num_attr
; i
++) {
4270 struct opa_aggregate
*agg
;
4271 size_t agg_data_len
;
4275 agg
= (struct opa_aggregate
*)next_smp
;
4276 agg_data_len
= (be16_to_cpu(agg
->err_reqlength
) & 0x007f) * 8;
4277 agg_size
= sizeof(*agg
) + agg_data_len
;
4278 am
= be32_to_cpu(agg
->attr_mod
);
4280 *resp_len
+= agg_size
;
4282 if (next_smp
+ agg_size
> ((u8
*)smp
) + sizeof(*smp
)) {
4283 smp
->status
|= IB_SMP_INVALID_FIELD
;
4284 return reply((struct ib_mad_hdr
*)smp
);
4287 /* zero the payload for this segment */
4288 memset(next_smp
+ sizeof(*agg
), 0, agg_data_len
);
4290 (void)subn_get_opa_sma(agg
->attr_id
, smp
, am
, agg
->data
,
4291 ibdev
, port
, NULL
, (u32
)agg_data_len
);
4293 if (smp
->status
& IB_SMP_INVALID_FIELD
)
4295 if (smp
->status
& ~IB_SMP_DIRECTION
) {
4296 set_aggr_error(agg
);
4297 return reply((struct ib_mad_hdr
*)smp
);
4299 next_smp
+= agg_size
;
4302 return reply((struct ib_mad_hdr
*)smp
);
4305 static int subn_set_opa_aggregate(struct opa_smp
*smp
,
4306 struct ib_device
*ibdev
, u8 port
,
4307 u32
*resp_len
, int local_mad
)
4310 u32 num_attr
= be32_to_cpu(smp
->attr_mod
) & 0x000000ff;
4311 u8
*next_smp
= opa_get_smp_data(smp
);
4313 if (num_attr
< 1 || num_attr
> 117) {
4314 smp
->status
|= IB_SMP_INVALID_FIELD
;
4315 return reply((struct ib_mad_hdr
*)smp
);
4318 for (i
= 0; i
< num_attr
; i
++) {
4319 struct opa_aggregate
*agg
;
4320 size_t agg_data_len
;
4324 agg
= (struct opa_aggregate
*)next_smp
;
4325 agg_data_len
= (be16_to_cpu(agg
->err_reqlength
) & 0x007f) * 8;
4326 agg_size
= sizeof(*agg
) + agg_data_len
;
4327 am
= be32_to_cpu(agg
->attr_mod
);
4329 *resp_len
+= agg_size
;
4331 if (next_smp
+ agg_size
> ((u8
*)smp
) + sizeof(*smp
)) {
4332 smp
->status
|= IB_SMP_INVALID_FIELD
;
4333 return reply((struct ib_mad_hdr
*)smp
);
4336 (void)subn_set_opa_sma(agg
->attr_id
, smp
, am
, agg
->data
,
4337 ibdev
, port
, NULL
, (u32
)agg_data_len
,
4340 if (smp
->status
& IB_SMP_INVALID_FIELD
)
4342 if (smp
->status
& ~IB_SMP_DIRECTION
) {
4343 set_aggr_error(agg
);
4344 return reply((struct ib_mad_hdr
*)smp
);
4346 next_smp
+= agg_size
;
4349 return reply((struct ib_mad_hdr
*)smp
);
4353 * OPAv1 specifies that, on the transition to link up, these counters
4357 * LocalLinkIntegrityErrors
4358 * ExcessiveBufferOverruns [*]
4360 * [*] Error info associated with these counters is retained, but the
4361 * error info status is reset to 0.
4363 void clear_linkup_counters(struct hfi1_devdata
*dd
)
4366 write_dev_cntr(dd
, C_DC_RCV_ERR
, CNTR_INVALID_VL
, 0);
4367 dd
->err_info_rcvport
.status_and_code
&= ~OPA_EI_STATUS_SMASK
;
4368 /* LinkErrorRecovery */
4369 write_dev_cntr(dd
, C_DC_SEQ_CRC_CNT
, CNTR_INVALID_VL
, 0);
4370 write_dev_cntr(dd
, C_DC_REINIT_FROM_PEER_CNT
, CNTR_INVALID_VL
, 0);
4371 /* LocalLinkIntegrityErrors */
4372 write_dev_cntr(dd
, C_DC_RX_REPLAY
, CNTR_INVALID_VL
, 0);
4373 /* ExcessiveBufferOverruns */
4374 write_dev_cntr(dd
, C_RCV_OVF
, CNTR_INVALID_VL
, 0);
4375 dd
->rcv_ovfl_cnt
= 0;
4376 dd
->err_info_xmit_constraint
.status
&= ~OPA_EI_STATUS_SMASK
;
4379 static int is_full_mgmt_pkey_in_table(struct hfi1_ibport
*ibp
)
4382 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
4384 for (i
= 0; i
< ARRAY_SIZE(ppd
->pkeys
); ++i
)
4385 if (ppd
->pkeys
[i
] == FULL_MGMT_P_KEY
)
4392 * is_local_mad() returns 1 if 'mad' is sent from, and destined to the
4393 * local node, 0 otherwise.
4395 static int is_local_mad(struct hfi1_ibport
*ibp
, const struct opa_mad
*mad
,
4396 const struct ib_wc
*in_wc
)
4398 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
4399 const struct opa_smp
*smp
= (const struct opa_smp
*)mad
;
4401 if (smp
->mgmt_class
== IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
) {
4402 return (smp
->hop_cnt
== 0 &&
4403 smp
->route
.dr
.dr_slid
== OPA_LID_PERMISSIVE
&&
4404 smp
->route
.dr
.dr_dlid
== OPA_LID_PERMISSIVE
);
4407 return (in_wc
->slid
== ppd
->lid
);
4411 * opa_local_smp_check() should only be called on MADs for which
4412 * is_local_mad() returns true. It applies the SMP checks that are
4413 * specific to SMPs which are sent from, and destined to this node.
4414 * opa_local_smp_check() returns 0 if the SMP passes its checks, 1
4417 * SMPs which arrive from other nodes are instead checked by
4420 static int opa_local_smp_check(struct hfi1_ibport
*ibp
,
4421 const struct ib_wc
*in_wc
)
4423 struct hfi1_pportdata
*ppd
= ppd_from_ibp(ibp
);
4426 if (in_wc
->pkey_index
>= ARRAY_SIZE(ppd
->pkeys
))
4429 pkey
= ppd
->pkeys
[in_wc
->pkey_index
];
4431 * We need to do the "node-local" checks specified in OPAv1,
4432 * rev 0.90, section 9.10.26, which are:
4433 * - pkey is 0x7fff, or 0xffff
4434 * - Source QPN == 0 || Destination QPN == 0
4435 * - the MAD header's management class is either
4436 * IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE or
4437 * IB_MGMT_CLASS_SUBN_LID_ROUTED
4440 * However, we know (and so don't need to check again) that,
4441 * for local SMPs, the MAD stack passes MADs with:
4443 * - MAD mgmt_class is IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
4444 * - SLID is either: OPA_LID_PERMISSIVE (0xFFFFFFFF), or
4445 * our own port's lid
4448 if (pkey
== LIM_MGMT_P_KEY
|| pkey
== FULL_MGMT_P_KEY
)
4450 ingress_pkey_table_fail(ppd
, pkey
, in_wc
->slid
);
4455 * hfi1_pkey_validation_pma - It validates PKEYs for incoming PMA MAD packets.
4456 * @ibp: IB port data
4457 * @in_mad: MAD packet with header and data
4458 * @in_wc: Work completion data such as source LID, port number, etc.
4460 * These are all the possible logic rules for validating a pkey:
4462 * a) If pkey neither FULL_MGMT_P_KEY nor LIM_MGMT_P_KEY,
4463 * and NOT self-originated packet:
4464 * Drop MAD packet as it should always be part of the
4465 * management partition unless it's a self-originated packet.
4467 * b) If pkey_index -> FULL_MGMT_P_KEY, and LIM_MGMT_P_KEY in pkey table:
4468 * The packet is coming from a management node and the receiving node
4469 * is also a management node, so it is safe for the packet to go through.
4471 * c) If pkey_index -> FULL_MGMT_P_KEY, and LIM_MGMT_P_KEY is NOT in pkey table:
4472 * Drop the packet as LIM_MGMT_P_KEY should always be in the pkey table.
4473 * It could be an FM misconfiguration.
4475 * d) If pkey_index -> LIM_MGMT_P_KEY and FULL_MGMT_P_KEY is NOT in pkey table:
4476 * It is safe for the packet to go through since a non-management node is
4477 * talking to another non-management node.
4479 * e) If pkey_index -> LIM_MGMT_P_KEY and FULL_MGMT_P_KEY in pkey table:
4480 * Drop the packet because a non-management node is talking to a
4481 * management node, and it could be an attack.
4483 * For the implementation, these rules can be simplied to only checking
4484 * for (a) and (e). There's no need to check for rule (b) as
4485 * the packet doesn't need to be dropped. Rule (c) is not possible in
4486 * the driver as LIM_MGMT_P_KEY is always in the pkey table.
4489 * 0 - pkey is okay, -EINVAL it's a bad pkey
4491 static int hfi1_pkey_validation_pma(struct hfi1_ibport
*ibp
,
4492 const struct opa_mad
*in_mad
,
4493 const struct ib_wc
*in_wc
)
4495 u16 pkey_value
= hfi1_lookup_pkey_value(ibp
, in_wc
->pkey_index
);
4497 /* Rule (a) from above */
4498 if (!is_local_mad(ibp
, in_mad
, in_wc
) &&
4499 pkey_value
!= LIM_MGMT_P_KEY
&&
4500 pkey_value
!= FULL_MGMT_P_KEY
)
4503 /* Rule (e) from above */
4504 if (pkey_value
== LIM_MGMT_P_KEY
&&
4505 is_full_mgmt_pkey_in_table(ibp
))
4511 static int process_subn_opa(struct ib_device
*ibdev
, int mad_flags
,
4512 u8 port
, const struct opa_mad
*in_mad
,
4513 struct opa_mad
*out_mad
,
4514 u32
*resp_len
, int local_mad
)
4516 struct opa_smp
*smp
= (struct opa_smp
*)out_mad
;
4517 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
4524 data
= opa_get_smp_data(smp
);
4525 data_size
= (u32
)opa_get_smp_data_size(smp
);
4527 am
= be32_to_cpu(smp
->attr_mod
);
4528 attr_id
= smp
->attr_id
;
4529 if (smp
->class_version
!= OPA_SM_CLASS_VERSION
) {
4530 smp
->status
|= IB_SMP_UNSUP_VERSION
;
4531 ret
= reply((struct ib_mad_hdr
*)smp
);
4534 ret
= check_mkey(ibp
, (struct ib_mad_hdr
*)smp
, mad_flags
, smp
->mkey
,
4535 smp
->route
.dr
.dr_slid
, smp
->route
.dr
.return_path
,
4538 u32 port_num
= be32_to_cpu(smp
->attr_mod
);
4541 * If this is a get/set portinfo, we already check the
4542 * M_Key if the MAD is for another port and the M_Key
4543 * is OK on the receiving port. This check is needed
4544 * to increment the error counters when the M_Key
4545 * fails to match on *both* ports.
4547 if (attr_id
== IB_SMP_ATTR_PORT_INFO
&&
4548 (smp
->method
== IB_MGMT_METHOD_GET
||
4549 smp
->method
== IB_MGMT_METHOD_SET
) &&
4550 port_num
&& port_num
<= ibdev
->phys_port_cnt
&&
4552 (void)check_mkey(to_iport(ibdev
, port_num
),
4553 (struct ib_mad_hdr
*)smp
, 0,
4554 smp
->mkey
, smp
->route
.dr
.dr_slid
,
4555 smp
->route
.dr
.return_path
,
4557 ret
= IB_MAD_RESULT_FAILURE
;
4561 *resp_len
= opa_get_smp_header_size(smp
);
4563 switch (smp
->method
) {
4564 case IB_MGMT_METHOD_GET
:
4567 clear_opa_smp_data(smp
);
4568 ret
= subn_get_opa_sma(attr_id
, smp
, am
, data
,
4569 ibdev
, port
, resp_len
,
4572 case OPA_ATTRIB_ID_AGGREGATE
:
4573 ret
= subn_get_opa_aggregate(smp
, ibdev
, port
,
4578 case IB_MGMT_METHOD_SET
:
4581 ret
= subn_set_opa_sma(attr_id
, smp
, am
, data
,
4582 ibdev
, port
, resp_len
,
4583 data_size
, local_mad
);
4585 case OPA_ATTRIB_ID_AGGREGATE
:
4586 ret
= subn_set_opa_aggregate(smp
, ibdev
, port
,
4587 resp_len
, local_mad
);
4591 case IB_MGMT_METHOD_TRAP
:
4592 case IB_MGMT_METHOD_REPORT
:
4593 case IB_MGMT_METHOD_REPORT_RESP
:
4594 case IB_MGMT_METHOD_GET_RESP
:
4596 * The ib_mad module will call us to process responses
4597 * before checking for other consumers.
4598 * Just tell the caller to process it normally.
4600 ret
= IB_MAD_RESULT_SUCCESS
;
4602 case IB_MGMT_METHOD_TRAP_REPRESS
:
4603 subn_handle_opa_trap_repress(ibp
, smp
);
4604 /* Always successful */
4605 ret
= IB_MAD_RESULT_SUCCESS
;
4608 smp
->status
|= IB_SMP_UNSUP_METHOD
;
4609 ret
= reply((struct ib_mad_hdr
*)smp
);
4616 static int process_subn(struct ib_device
*ibdev
, int mad_flags
,
4617 u8 port
, const struct ib_mad
*in_mad
,
4618 struct ib_mad
*out_mad
)
4620 struct ib_smp
*smp
= (struct ib_smp
*)out_mad
;
4621 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
4625 if (smp
->class_version
!= 1) {
4626 smp
->status
|= IB_SMP_UNSUP_VERSION
;
4627 ret
= reply((struct ib_mad_hdr
*)smp
);
4631 ret
= check_mkey(ibp
, (struct ib_mad_hdr
*)smp
, mad_flags
,
4632 smp
->mkey
, (__force __be32
)smp
->dr_slid
,
4633 smp
->return_path
, smp
->hop_cnt
);
4635 u32 port_num
= be32_to_cpu(smp
->attr_mod
);
4638 * If this is a get/set portinfo, we already check the
4639 * M_Key if the MAD is for another port and the M_Key
4640 * is OK on the receiving port. This check is needed
4641 * to increment the error counters when the M_Key
4642 * fails to match on *both* ports.
4644 if (in_mad
->mad_hdr
.attr_id
== IB_SMP_ATTR_PORT_INFO
&&
4645 (smp
->method
== IB_MGMT_METHOD_GET
||
4646 smp
->method
== IB_MGMT_METHOD_SET
) &&
4647 port_num
&& port_num
<= ibdev
->phys_port_cnt
&&
4649 (void)check_mkey(to_iport(ibdev
, port_num
),
4650 (struct ib_mad_hdr
*)smp
, 0,
4652 (__force __be32
)smp
->dr_slid
,
4653 smp
->return_path
, smp
->hop_cnt
);
4654 ret
= IB_MAD_RESULT_FAILURE
;
4658 switch (smp
->method
) {
4659 case IB_MGMT_METHOD_GET
:
4660 switch (smp
->attr_id
) {
4661 case IB_SMP_ATTR_NODE_INFO
:
4662 ret
= subn_get_nodeinfo(smp
, ibdev
, port
);
4665 smp
->status
|= IB_SMP_UNSUP_METH_ATTR
;
4666 ret
= reply((struct ib_mad_hdr
*)smp
);
4675 static int process_perf(struct ib_device
*ibdev
, u8 port
,
4676 const struct ib_mad
*in_mad
,
4677 struct ib_mad
*out_mad
)
4679 struct ib_pma_mad
*pmp
= (struct ib_pma_mad
*)out_mad
;
4680 struct ib_class_port_info
*cpi
= (struct ib_class_port_info
*)
4682 int ret
= IB_MAD_RESULT_FAILURE
;
4685 if (pmp
->mad_hdr
.class_version
!= 1) {
4686 pmp
->mad_hdr
.status
|= IB_SMP_UNSUP_VERSION
;
4687 ret
= reply((struct ib_mad_hdr
*)pmp
);
4691 switch (pmp
->mad_hdr
.method
) {
4692 case IB_MGMT_METHOD_GET
:
4693 switch (pmp
->mad_hdr
.attr_id
) {
4694 case IB_PMA_PORT_COUNTERS
:
4695 ret
= pma_get_ib_portcounters(pmp
, ibdev
, port
);
4697 case IB_PMA_PORT_COUNTERS_EXT
:
4698 ret
= pma_get_ib_portcounters_ext(pmp
, ibdev
, port
);
4700 case IB_PMA_CLASS_PORT_INFO
:
4701 cpi
->capability_mask
= IB_PMA_CLASS_CAP_EXT_WIDTH
;
4702 ret
= reply((struct ib_mad_hdr
*)pmp
);
4705 pmp
->mad_hdr
.status
|= IB_SMP_UNSUP_METH_ATTR
;
4706 ret
= reply((struct ib_mad_hdr
*)pmp
);
4711 case IB_MGMT_METHOD_SET
:
4712 if (pmp
->mad_hdr
.attr_id
) {
4713 pmp
->mad_hdr
.status
|= IB_SMP_UNSUP_METH_ATTR
;
4714 ret
= reply((struct ib_mad_hdr
*)pmp
);
4718 case IB_MGMT_METHOD_TRAP
:
4719 case IB_MGMT_METHOD_GET_RESP
:
4721 * The ib_mad module will call us to process responses
4722 * before checking for other consumers.
4723 * Just tell the caller to process it normally.
4725 ret
= IB_MAD_RESULT_SUCCESS
;
4729 pmp
->mad_hdr
.status
|= IB_SMP_UNSUP_METHOD
;
4730 ret
= reply((struct ib_mad_hdr
*)pmp
);
4737 static int process_perf_opa(struct ib_device
*ibdev
, u8 port
,
4738 const struct opa_mad
*in_mad
,
4739 struct opa_mad
*out_mad
, u32
*resp_len
)
4741 struct opa_pma_mad
*pmp
= (struct opa_pma_mad
*)out_mad
;
4746 if (pmp
->mad_hdr
.class_version
!= OPA_SM_CLASS_VERSION
) {
4747 pmp
->mad_hdr
.status
|= IB_SMP_UNSUP_VERSION
;
4748 return reply((struct ib_mad_hdr
*)pmp
);
4751 *resp_len
= sizeof(pmp
->mad_hdr
);
4753 switch (pmp
->mad_hdr
.method
) {
4754 case IB_MGMT_METHOD_GET
:
4755 switch (pmp
->mad_hdr
.attr_id
) {
4756 case IB_PMA_CLASS_PORT_INFO
:
4757 ret
= pma_get_opa_classportinfo(pmp
, ibdev
, resp_len
);
4759 case OPA_PM_ATTRIB_ID_PORT_STATUS
:
4760 ret
= pma_get_opa_portstatus(pmp
, ibdev
, port
,
4763 case OPA_PM_ATTRIB_ID_DATA_PORT_COUNTERS
:
4764 ret
= pma_get_opa_datacounters(pmp
, ibdev
, port
,
4767 case OPA_PM_ATTRIB_ID_ERROR_PORT_COUNTERS
:
4768 ret
= pma_get_opa_porterrors(pmp
, ibdev
, port
,
4771 case OPA_PM_ATTRIB_ID_ERROR_INFO
:
4772 ret
= pma_get_opa_errorinfo(pmp
, ibdev
, port
,
4776 pmp
->mad_hdr
.status
|= IB_SMP_UNSUP_METH_ATTR
;
4777 ret
= reply((struct ib_mad_hdr
*)pmp
);
4782 case IB_MGMT_METHOD_SET
:
4783 switch (pmp
->mad_hdr
.attr_id
) {
4784 case OPA_PM_ATTRIB_ID_CLEAR_PORT_STATUS
:
4785 ret
= pma_set_opa_portstatus(pmp
, ibdev
, port
,
4788 case OPA_PM_ATTRIB_ID_ERROR_INFO
:
4789 ret
= pma_set_opa_errorinfo(pmp
, ibdev
, port
,
4793 pmp
->mad_hdr
.status
|= IB_SMP_UNSUP_METH_ATTR
;
4794 ret
= reply((struct ib_mad_hdr
*)pmp
);
4799 case IB_MGMT_METHOD_TRAP
:
4800 case IB_MGMT_METHOD_GET_RESP
:
4802 * The ib_mad module will call us to process responses
4803 * before checking for other consumers.
4804 * Just tell the caller to process it normally.
4806 ret
= IB_MAD_RESULT_SUCCESS
;
4810 pmp
->mad_hdr
.status
|= IB_SMP_UNSUP_METHOD
;
4811 ret
= reply((struct ib_mad_hdr
*)pmp
);
4818 static int hfi1_process_opa_mad(struct ib_device
*ibdev
, int mad_flags
,
4819 u8 port
, const struct ib_wc
*in_wc
,
4820 const struct ib_grh
*in_grh
,
4821 const struct opa_mad
*in_mad
,
4822 struct opa_mad
*out_mad
, size_t *out_mad_size
,
4823 u16
*out_mad_pkey_index
)
4828 u32 resp_len
= in_wc
->byte_len
- sizeof(*in_grh
);
4829 struct hfi1_ibport
*ibp
= to_iport(ibdev
, port
);
4831 pkey_idx
= hfi1_lookup_pkey_idx(ibp
, LIM_MGMT_P_KEY
);
4833 pr_warn("failed to find limited mgmt pkey, defaulting 0x%x\n",
4834 hfi1_get_pkey(ibp
, 1));
4837 *out_mad_pkey_index
= (u16
)pkey_idx
;
4839 switch (in_mad
->mad_hdr
.mgmt_class
) {
4840 case IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
:
4841 case IB_MGMT_CLASS_SUBN_LID_ROUTED
:
4842 local_mad
= is_local_mad(ibp
, in_mad
, in_wc
);
4844 ret
= opa_local_smp_check(ibp
, in_wc
);
4846 return IB_MAD_RESULT_FAILURE
;
4848 ret
= process_subn_opa(ibdev
, mad_flags
, port
, in_mad
,
4849 out_mad
, &resp_len
, local_mad
);
4851 case IB_MGMT_CLASS_PERF_MGMT
:
4852 ret
= hfi1_pkey_validation_pma(ibp
, in_mad
, in_wc
);
4854 return IB_MAD_RESULT_FAILURE
;
4856 ret
= process_perf_opa(ibdev
, port
, in_mad
, out_mad
, &resp_len
);
4860 ret
= IB_MAD_RESULT_SUCCESS
;
4864 if (ret
& IB_MAD_RESULT_REPLY
)
4865 *out_mad_size
= round_up(resp_len
, 8);
4866 else if (ret
& IB_MAD_RESULT_SUCCESS
)
4867 *out_mad_size
= in_wc
->byte_len
- sizeof(struct ib_grh
);
4872 static int hfi1_process_ib_mad(struct ib_device
*ibdev
, int mad_flags
, u8 port
,
4873 const struct ib_wc
*in_wc
,
4874 const struct ib_grh
*in_grh
,
4875 const struct ib_mad
*in_mad
,
4876 struct ib_mad
*out_mad
)
4880 switch (in_mad
->mad_hdr
.mgmt_class
) {
4881 case IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
:
4882 case IB_MGMT_CLASS_SUBN_LID_ROUTED
:
4883 ret
= process_subn(ibdev
, mad_flags
, port
, in_mad
, out_mad
);
4885 case IB_MGMT_CLASS_PERF_MGMT
:
4886 ret
= process_perf(ibdev
, port
, in_mad
, out_mad
);
4889 ret
= IB_MAD_RESULT_SUCCESS
;
4897 * hfi1_process_mad - process an incoming MAD packet
4898 * @ibdev: the infiniband device this packet came in on
4899 * @mad_flags: MAD flags
4900 * @port: the port number this packet came in on
4901 * @in_wc: the work completion entry for this packet
4902 * @in_grh: the global route header for this packet
4903 * @in_mad: the incoming MAD
4904 * @out_mad: any outgoing MAD reply
4906 * Returns IB_MAD_RESULT_SUCCESS if this is a MAD that we are not
4907 * interested in processing.
4909 * Note that the verbs framework has already done the MAD sanity checks,
4910 * and hop count/pointer updating for IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
4913 * This is called by the ib_mad module.
4915 int hfi1_process_mad(struct ib_device
*ibdev
, int mad_flags
, u8 port
,
4916 const struct ib_wc
*in_wc
, const struct ib_grh
*in_grh
,
4917 const struct ib_mad
*in_mad
, struct ib_mad
*out_mad
,
4918 size_t *out_mad_size
, u16
*out_mad_pkey_index
)
4920 switch (in_mad
->mad_hdr
.base_version
) {
4921 case OPA_MGMT_BASE_VERSION
:
4922 return hfi1_process_opa_mad(ibdev
, mad_flags
, port
,
4924 (struct opa_mad
*)in_mad
,
4925 (struct opa_mad
*)out_mad
,
4927 out_mad_pkey_index
);
4928 case IB_MGMT_BASE_VERSION
:
4929 return hfi1_process_ib_mad(ibdev
, mad_flags
, port
, in_wc
,
4930 in_grh
, in_mad
, out_mad
);
4935 return IB_MAD_RESULT_FAILURE
;